Struct rusoto_dynamodb::ProvisionedThroughput[][src]

pub struct ProvisionedThroughput {
    pub read_capacity_units: i64,
    pub write_capacity_units: i64,
}

Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

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

Fields

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

Trait Implementations

impl Default for ProvisionedThroughput
[src]

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

impl Debug for ProvisionedThroughput
[src]

Formats the value using the given formatter. Read more

impl Clone for ProvisionedThroughput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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