Struct rusoto_dynamodb::UpdateGlobalSecondaryIndexAction[][src]

pub struct UpdateGlobalSecondaryIndexAction {
    pub index_name: String,
    pub provisioned_throughput: ProvisionedThroughput,
}

Represents the new provisioned throughput settings to be applied to a global secondary index.

Fields

The name of the global secondary index to be updated.

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 UpdateGlobalSecondaryIndexAction
[src]

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

impl Debug for UpdateGlobalSecondaryIndexAction
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateGlobalSecondaryIndexAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateGlobalSecondaryIndexAction
[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