[][src]Struct rusoto_securityhub::AwsDynamoDbTableReplica

pub struct AwsDynamoDbTableReplica {
    pub global_secondary_indexes: Option<Vec<AwsDynamoDbTableReplicaGlobalSecondaryIndex>>,
    pub kms_master_key_id: Option<String>,
    pub provisioned_throughput_override: Option<AwsDynamoDbTableProvisionedThroughputOverride>,
    pub region_name: Option<String>,
    pub replica_status: Option<String>,
    pub replica_status_description: Option<String>,
}

Information about a replica of a DynamoDB table.

Fields

global_secondary_indexes: Option<Vec<AwsDynamoDbTableReplicaGlobalSecondaryIndex>>

List of global secondary indexes for the replica.

kms_master_key_id: Option<String>

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

provisioned_throughput_override: Option<AwsDynamoDbTableProvisionedThroughputOverride>

Replica-specific configuration for the provisioned throughput.

region_name: Option<String>

The name of the Region where the replica is located.

replica_status: Option<String>

The current status of the replica.

replica_status_description: Option<String>

Detailed information about the replica status.

Trait Implementations

impl Clone for AwsDynamoDbTableReplica[src]

impl Debug for AwsDynamoDbTableReplica[src]

impl Default for AwsDynamoDbTableReplica[src]

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

impl PartialEq<AwsDynamoDbTableReplica> for AwsDynamoDbTableReplica[src]

impl Serialize for AwsDynamoDbTableReplica[src]

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