Struct rusoto_dynamodb::DescribeLimitsOutput[][src]

pub struct DescribeLimitsOutput {
    pub account_max_read_capacity_units: Option<i64>,
    pub account_max_write_capacity_units: Option<i64>,
    pub table_max_read_capacity_units: Option<i64>,
    pub table_max_write_capacity_units: Option<i64>,
}

Represents the output of a DescribeLimits operation.

Fields

The maximum total read capacity units that your account allows you to provision across all of your tables in this region.

The maximum total write capacity units that your account allows you to provision across all of your tables in this region.

The maximum read capacity units that your account allows you to provision for a new table that you are creating in this region, including the read capacity units provisioned for its global secondary indexes (GSIs).

The maximum write capacity units that your account allows you to provision for a new table that you are creating in this region, including the write capacity units provisioned for its global secondary indexes (GSIs).

Trait Implementations

impl Default for DescribeLimitsOutput
[src]

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

impl Debug for DescribeLimitsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeLimitsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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