[][src]Struct rusoto_dynamodb::ReplicaAutoScalingDescription

pub struct ReplicaAutoScalingDescription {
    pub global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingDescription>>,
    pub region_name: Option<String>,
    pub replica_provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
    pub replica_provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
    pub replica_status: Option<String>,
}

Represents the auto scaling settings of the replica.

Fields

global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingDescription>>

Replica-specific global secondary index auto scaling settings.

region_name: Option<String>

The Region where the replica exists.

replica_provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>replica_provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>replica_status: Option<String>

The current state of the replica:

  • CREATING - The replica is being created.

  • UPDATING - The replica is being updated.

  • DELETING - The replica is being deleted.

  • ACTIVE - The replica is ready for use.

Trait Implementations

impl Clone for ReplicaAutoScalingDescription[src]

impl Debug for ReplicaAutoScalingDescription[src]

impl Default for ReplicaAutoScalingDescription[src]

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

impl PartialEq<ReplicaAutoScalingDescription> for ReplicaAutoScalingDescription[src]

impl StructuralPartialEq for ReplicaAutoScalingDescription[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> 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.