[][src]Struct rusoto_dynamodb::AutoScalingSettingsDescription

pub struct AutoScalingSettingsDescription {
    pub auto_scaling_disabled: Option<bool>,
    pub auto_scaling_role_arn: Option<String>,
    pub maximum_units: Option<i64>,
    pub minimum_units: Option<i64>,
    pub scaling_policies: Option<Vec<AutoScalingPolicyDescription>>,
}

Represents the auto scaling settings for a global table or global secondary index.

Fields

auto_scaling_disabled: Option<bool>

Disabled auto scaling for this global table or global secondary index.

auto_scaling_role_arn: Option<String>

Role ARN used for configuring the auto scaling policy.

maximum_units: Option<i64>

The maximum capacity units that a global table or global secondary index should be scaled up to.

minimum_units: Option<i64>

The minimum capacity units that a global table or global secondary index should be scaled down to.

scaling_policies: Option<Vec<AutoScalingPolicyDescription>>

Information about the scaling policies.

Trait Implementations

impl Clone for AutoScalingSettingsDescription[src]

impl Debug for AutoScalingSettingsDescription[src]

impl Default for AutoScalingSettingsDescription[src]

impl<'de> Deserialize<'de> for AutoScalingSettingsDescription[src]

impl PartialEq<AutoScalingSettingsDescription> for AutoScalingSettingsDescription[src]

impl StructuralPartialEq for AutoScalingSettingsDescription[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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> 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.