We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to makes dynamodb table ondemand billing mode?
aws dynamodb create-table \ --table-name Music \ --attribute-definitions \ AttributeName=Artist,AttributeType=S \ AttributeName=SongTitle,AttributeType=S \ --key-schema \ AttributeName=Artist,KeyType=HASH \ AttributeName=SongTitle,KeyType=RANGE \ --billing-mode=PAY_PER_REQUEST
ref. https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.CreateTable
The text was updated successfully, but these errors were encountered:
Hello, at the moment this is not supported (you can use the official client to do it), but I'll add it very soon!
Sorry, something went wrong.
1a59fd6
Sorry for the wait. I've added this in v1.2.0! Just use OnDemand(true) when creating a table.
OnDemand(true)
No branches or pull requests
how to makes dynamodb table ondemand billing mode?
ref. https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.CreateTable
The text was updated successfully, but these errors were encountered: