[][src]Struct rusoto_dynamodb::UpdateGlobalTableSettingsInput

pub struct UpdateGlobalTableSettingsInput {
    pub global_table_billing_mode: Option<String>,
    pub global_table_global_secondary_index_settings_update: Option<Vec<GlobalTableGlobalSecondaryIndexSettingsUpdate>>,
    pub global_table_name: String,
    pub global_table_provisioned_write_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>,
    pub global_table_provisioned_write_capacity_units: Option<i64>,
    pub replica_settings_update: Option<Vec<ReplicaSettingsUpdate>>,
}

Fields

global_table_billing_mode: Option<String>

The billing mode of the global table. If GlobalTableBillingMode is not specified, the global table defaults to PROVISIONED capacity billing mode.

  • PROVISIONED - We recommend using PROVISIONED for predictable workloads. PROVISIONED sets the billing mode to Provisioned Mode.

  • PAYPERREQUEST - We recommend using PAYPERREQUEST for unpredictable workloads. PAYPERREQUEST sets the billing mode to On-Demand Mode.

global_table_global_secondary_index_settings_update: Option<Vec<GlobalTableGlobalSecondaryIndexSettingsUpdate>>

Represents the settings of a global secondary index for a global table that will be modified.

global_table_name: String

The name of the global table

global_table_provisioned_write_capacity_auto_scaling_settings_update: Option<AutoScalingSettingsUpdate>

Auto scaling settings for managing provisioned write capacity for the global table.

global_table_provisioned_write_capacity_units: Option<i64>

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

replica_settings_update: Option<Vec<ReplicaSettingsUpdate>>

Represents the settings for a global table in a Region that will be modified.

Trait Implementations

impl Clone for UpdateGlobalTableSettingsInput[src]

impl Debug for UpdateGlobalTableSettingsInput[src]

impl Default for UpdateGlobalTableSettingsInput[src]

impl PartialEq<UpdateGlobalTableSettingsInput> for UpdateGlobalTableSettingsInput[src]

impl Serialize for UpdateGlobalTableSettingsInput[src]

impl StructuralPartialEq for UpdateGlobalTableSettingsInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.