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.
The allowed values are 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.
The allowed values are S, N, B. |
| BillingMode | String | False | Controls how you are charged for read and write throughput and how you manage capacity.
The allowed values are PROVISIONED, PAY_PER_REQUEST. The default value is PROVISIONED. |
| ReadCapacityUnits | String | False | The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.
The default value is 5. |
| WriteCapacityUnits | String | False | The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.
The default value is 5. |
Result Set Columns
| Name | Type | Description |
| Success | String | This value shows whether the operation was successful or not. |