[][src]Struct rusoto_dynamodb::UpdateTableReplicaAutoScalingInput

pub struct UpdateTableReplicaAutoScalingInput {
    pub global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>,
    pub provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>,
    pub replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>,
    pub table_name: String,
}

Fields

global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>

Represents the auto scaling settings of the global secondary indexes of the replica to be updated.

provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>

Represents the auto scaling settings of replicas of the table that will be modified.

table_name: String

The name of the global table to be updated.

Trait Implementations

impl Clone for UpdateTableReplicaAutoScalingInput[src]

impl Debug for UpdateTableReplicaAutoScalingInput[src]

impl Default for UpdateTableReplicaAutoScalingInput[src]

impl PartialEq<UpdateTableReplicaAutoScalingInput> for UpdateTableReplicaAutoScalingInput[src]

impl Serialize for UpdateTableReplicaAutoScalingInput[src]

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