Struct rusoto_dynamodb::UpdateTableInput [] [src]

pub struct UpdateTableInput {
    pub attribute_definitions: Option<AttributeDefinitions>,
    pub global_secondary_index_updates: Option<GlobalSecondaryIndexUpdateList>,
    pub provisioned_throughput: Option<ProvisionedThroughput>,
    pub stream_specification: Option<StreamSpecification>,
    pub table_name: TableName,
}

Represents the input of an UpdateTable operation.

Fields

An array of attributes that describe the key schema for the table and indexes. If you are adding a new global secondary index to the table, AttributeDefinitions must include the key element(s) of the new index.

An array of one or more global secondary indexes for the table. For each index in the array, you can request one action:

  • Create - add a new global secondary index to the table.

  • Update - modify the provisioned throughput settings of an existing global secondary index.

  • Delete - remove a global secondary index from the table.

For more information, see Managing Global Secondary Indexes in the Amazon DynamoDB Developer Guide.

The new provisioned throughput settings for the specified table or index.

Represents the DynamoDB Streams configuration for the table.

You will receive a ResourceInUseException if you attempt to enable a stream on a table that already has a stream, or if you attempt to disable a stream on a table which does not have a stream.

The name of the table to be updated.

Trait Implementations

impl Default for UpdateTableInput
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateTableInput
[src]

Formats the value using the given formatter.

impl Clone for UpdateTableInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more