You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`key_schema` can be a simple binary or atom indicating a simple hash key
153
+
`key_schema` can be a simple binary or atom indicating a simple hash key.
154
154
155
-
`billing_mode` may be either `:provisioned` (default) or `:pay_per_request`. If you are creating a `:pay-per-request` table, you will still need to provide values for read and write capacities, although they will be ignored - you may consider providing `nil` in those cases.
155
+
`billing_mode` may be either `:provisioned` (default) or `:pay_per_request`.
156
+
If you are creating a `:pay-per-request` table, you will still need to provide values for read and write capacities,
157
+
although they will be ignored - you may consider providing `nil` in those cases.
156
158
"""
157
159
@speccreate_table(
158
160
table_name::binary,
@@ -214,14 +216,16 @@ defmodule ExAws.Dynamo do
214
216
@doc"""
215
217
Create table with secondary indices
216
218
217
-
Each index should follow the format outlined here: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_CreateTable.html
219
+
Each index should follow the format outlined here: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_CreateTable.html
218
220
219
-
For convenience, the keys in each index map are allowed to be atoms. IE:
221
+
For convenience, the keys in each index map are allowed to be atoms. e.g:
220
222
`"KeySchema"` in the aws docs can be `key_schema:`
221
223
222
224
Note that both the `global_indexes` and `local_indexes` arguments expect a list of such indices.
223
225
224
-
`billing_mode` may be either `:provisioned` (default) or `:pay_per_request`. If you are creating a `:pay-per-request` table, you will still need to provide values for read and write capacities, although they will be ignored - you may consider providing `nil` in those cases.
226
+
`billing_mode` may be either `:provisioned` (default) or `:pay_per_request`.
227
+
If you are creating a `:pay-per-request` table, you will still need to provide values for read and write capacities,
228
+
although they will be ignored - you may consider providing `nil` in those cases.
0 commit comments