[][src]Struct rusoto_dynamodb::ReplicaGlobalSecondaryIndexAutoScalingDescription

pub struct ReplicaGlobalSecondaryIndexAutoScalingDescription {
    pub index_name: Option<String>,
    pub index_status: Option<String>,
    pub provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
    pub provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
}

Represents the auto scaling configuration for a replica global secondary index.

Fields

index_name: Option<String>

The name of the global secondary index.

index_status: Option<String>

The current state of the replica global secondary index:

  • CREATING - The index is being created.

  • UPDATING - The index is being updated.

  • DELETING - The index is being deleted.

  • ACTIVE - The index is ready for use.

provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>

Trait Implementations

impl Clone for ReplicaGlobalSecondaryIndexAutoScalingDescription[src]

impl Debug for ReplicaGlobalSecondaryIndexAutoScalingDescription[src]

impl Default for ReplicaGlobalSecondaryIndexAutoScalingDescription[src]

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

impl PartialEq<ReplicaGlobalSecondaryIndexAutoScalingDescription> for ReplicaGlobalSecondaryIndexAutoScalingDescription[src]

impl StructuralPartialEq for ReplicaGlobalSecondaryIndexAutoScalingDescription[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.