UNPKG

@aws-sdk/client-dynamodb

Version:

AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native

42 lines (41 loc) 2.37 kB
import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { UpdateTableInput, UpdateTableOutput } from "../models/models_0"; import { Command as $Command } from "@aws-sdk/smithy-client"; import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types"; export declare type UpdateTableCommandInput = UpdateTableInput; export declare type UpdateTableCommandOutput = UpdateTableOutput & __MetadataBearer; /** * <p>Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table.</p> * <p>You can only perform one of the following operations at once:</p> * <ul> * <li> * <p>Modify the provisioned throughput settings of the table.</p> * </li> * <li> * <p>Enable or disable DynamoDB Streams on the table.</p> * </li> * <li> * <p>Remove a global secondary index from the table.</p> * </li> * <li> * <p>Create a new global secondary index on the table. After the index begins * backfilling, you can use <code>UpdateTable</code> to perform other * operations.</p> * </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> */ export declare class UpdateTableCommand extends $Command<UpdateTableCommandInput, UpdateTableCommandOutput, DynamoDBClientResolvedConfig> { readonly input: UpdateTableCommandInput; constructor(input: UpdateTableCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTableCommandInput, UpdateTableCommandOutput>; private serialize; private deserialize; }