Skip to content

Commit

Permalink
docs(client-dynamodb): Publishing quick fix for doc only update.
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 20, 2024
1 parent 17fd869 commit 3bfee9d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
13 changes: 8 additions & 5 deletions clients/client-dynamodb/src/commands/UpdateTableCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,14 @@ export interface UpdateTableCommandOutput extends UpdateTableOutput, __MetadataB
* </li>
* </ul>
* <p>
* <code>UpdateTable</code> is an asynchronous operation; while it is executing, the table
* status changes from <code>ACTIVE</code> to <code>UPDATING</code>. While it is
* <code>UPDATING</code>, you cannot issue another <code>UpdateTable</code> request.
* When the table returns to the <code>ACTIVE</code> state, the <code>UpdateTable</code>
* operation is complete.</p>
* <code>UpdateTable</code> is an asynchronous operation; while
* it's
* executing, the table status changes from <code>ACTIVE</code> to <code>UPDATING</code>.
* While it's <code>UPDATING</code>, you can't issue another <code>UpdateTable</code>
* request on the
* base table nor any replicas. When the table returns to the
* <code>ACTIVE</code> state, the <code>UpdateTable</code> operation is
* complete.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
3 changes: 2 additions & 1 deletion codegen/sdk-codegen/aws-models/dynamodb.json
Original file line number Diff line number Diff line change
Expand Up @@ -3732,6 +3732,7 @@
},
"aws.protocols#awsJson1_0": {},
"smithy.api#documentation": "<fullname>Amazon DynamoDB</fullname>\n <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast\n and predictable performance with seamless scalability. DynamoDB lets you\n offload the administrative burdens of operating and scaling a distributed database, so\n that you don't have to worry about hardware provisioning, setup and configuration,\n replication, software patching, or cluster scaling.</p>\n <p>With DynamoDB, you can create database tables that can store and retrieve\n any amount of data, and serve any level of request traffic. You can scale up or scale\n down your tables' throughput capacity without downtime or performance degradation, and\n use the Amazon Web Services Management Console to monitor resource utilization and performance\n metrics.</p>\n <p>DynamoDB automatically spreads the data and traffic for your tables over\n a sufficient number of servers to handle your throughput and storage requirements, while\n maintaining consistent and fast performance. All of your data is stored on solid state\n disks (SSDs) and automatically replicated across multiple Availability Zones in an\n Amazon Web Services Region, providing built-in high availability and data\n durability.</p>",
"smithy.api#suppress": ["RuleSetAwsBuiltIn.AWS::Auth::AccountId"],
"smithy.api#title": "Amazon DynamoDB",
"smithy.api#xmlNamespace": {
"uri": "http://dynamodb.amazonaws.com/doc/2012-08-10/"
Expand Down Expand Up @@ -11966,7 +11967,7 @@
"aws.api#clientDiscoveredEndpoint": {
"required": false
},
"smithy.api#documentation": "<p>Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB\n Streams settings for a given table.</p>\n <important>\n <p>This operation only applies to <a href=\"https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html\">Version 2019.11.21 (Current)</a> \n of global tables.\n </p>\n </important>\n <p>You can only perform one of the following operations at once:</p>\n <ul>\n <li>\n <p>Modify the provisioned throughput settings of the table.</p>\n </li>\n <li>\n <p>Remove a global secondary index from the table.</p>\n </li>\n <li>\n <p>Create a new global secondary index on the table. After the index begins\n backfilling, you can use <code>UpdateTable</code> to perform other\n operations.</p>\n </li>\n </ul>\n <p>\n <code>UpdateTable</code> is an asynchronous operation; while it is executing, the table\n status changes from <code>ACTIVE</code> to <code>UPDATING</code>. While it is\n <code>UPDATING</code>, you cannot issue another <code>UpdateTable</code> request.\n When the table returns to the <code>ACTIVE</code> state, the <code>UpdateTable</code>\n operation is complete.</p>"
"smithy.api#documentation": "<p>Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB\n Streams settings for a given table.</p>\n <important>\n <p>This operation only applies to <a href=\"https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html\">Version 2019.11.21 (Current)</a> \n of global tables.\n </p>\n </important>\n <p>You can only perform one of the following operations at once:</p>\n <ul>\n <li>\n <p>Modify the provisioned throughput settings of the table.</p>\n </li>\n <li>\n <p>Remove a global secondary index from the table.</p>\n </li>\n <li>\n <p>Create a new global secondary index on the table. After the index begins\n backfilling, you can use <code>UpdateTable</code> to perform other\n operations.</p>\n </li>\n </ul>\n <p>\n <code>UpdateTable</code> is an asynchronous operation; while\n it's\n executing, the table status changes from <code>ACTIVE</code> to <code>UPDATING</code>.\n While it's <code>UPDATING</code>, you can't issue another <code>UpdateTable</code>\n request on the\n base table nor any replicas. When the table returns to the\n <code>ACTIVE</code> state, the <code>UpdateTable</code> operation is\n complete.</p>"
}
},
"com.amazonaws.dynamodb#UpdateTableInput": {
Expand Down

0 comments on commit 3bfee9d

Please sign in to comment.