CreateTable
Creates a table in DynamoDB.
Input
| Name | Type | Required | Description |
| TableName | String | True | The name of the table to create. A minimum of 3 characters and maximum of 255 characters are allowed. |
| PartitionKeyName | String | True | The name of the partition key for the table. |
| PartitionKeyType | String | True | The type of the partition key for the table.
使用できる値は次のとおりです。S, N, B |
| SortKeyName | String | False | The name of the sort key for the table. |
| SortKeyType | String | False | The type of the sort key for the table.
使用できる値は次のとおりです。S, N, B |
| BillingMode | String | False | Controls how you are charged for read and write throughput and how you manage capacity.
使用できる値は次のとおりです。PROVISIONED, PAY_PER_REQUEST デフォルト値はPROVISIONEDです。 |
| ReadCapacityUnits | String | False | The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.
デフォルト値は5です。 |
| WriteCapacityUnits | String | False | The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.
デフォルト値は5です。 |
Result Set Columns
| Name | Type | Description |
| Success | String | This value shows whether the operation was successful or not. |