Struct rusoto_dynamodb::CreateGlobalSecondaryIndexAction[][src]

pub struct CreateGlobalSecondaryIndexAction {
    pub index_name: String,
    pub key_schema: Vec<KeySchemaElement>,
    pub projection: Projection,
    pub provisioned_throughput: ProvisionedThroughput,
}

Represents a new global secondary index to be added to an existing table.

Fields

The name of the global secondary index to be created.

The key schema for the global secondary index.

Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

Represents the provisioned throughput settings for the specified global secondary index.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

Trait Implementations

impl Default for CreateGlobalSecondaryIndexAction
[src]

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

impl Debug for CreateGlobalSecondaryIndexAction
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateGlobalSecondaryIndexAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateGlobalSecondaryIndexAction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations