[][src]Struct rusoto_dynamodb::ReplicaDescription

pub struct ReplicaDescription {
    pub global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexDescription>>,
    pub kms_master_key_id: Option<String>,
    pub provisioned_throughput_override: Option<ProvisionedThroughputOverride>,
    pub region_name: Option<String>,
    pub replica_status: Option<String>,
    pub replica_status_description: Option<String>,
    pub replica_status_percent_progress: Option<String>,
}

Contains the details of the replica.

Fields

global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexDescription>>

Replica-specific global secondary index settings.

kms_master_key_id: Option<String>

The AWS KMS customer master key (CMK) of the replica that will be used for AWS KMS encryption.

provisioned_throughput_override: Option<ProvisionedThroughputOverride>

Replica-specific provisioned throughput. If not described, uses the source table's provisioned throughput settings.

region_name: Option<String>

The name of the Region.

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.

replica_status_description: Option<String>

Detailed information about the replica status.

replica_status_percent_progress: Option<String>

Specifies the progress of a Create, Update, or Delete action on the replica as a percentage.

Trait Implementations

impl Clone for ReplicaDescription[src]

impl Debug for ReplicaDescription[src]

impl Default for ReplicaDescription[src]

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

impl PartialEq<ReplicaDescription> for ReplicaDescription[src]

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