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]

[src]

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

impl Debug for UpdateGlobalSecondaryIndexAction
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateGlobalSecondaryIndexAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations