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>,
}Expand description
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§
Source§impl Clone for AwsDynamoDbTableReplica
impl Clone for AwsDynamoDbTableReplica
Source§fn clone(&self) -> AwsDynamoDbTableReplica
fn clone(&self) -> AwsDynamoDbTableReplica
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsDynamoDbTableReplica
impl Debug for AwsDynamoDbTableReplica
Source§impl Default for AwsDynamoDbTableReplica
impl Default for AwsDynamoDbTableReplica
Source§fn default() -> AwsDynamoDbTableReplica
fn default() -> AwsDynamoDbTableReplica
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsDynamoDbTableReplica
impl<'de> Deserialize<'de> for AwsDynamoDbTableReplica
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsDynamoDbTableReplica
impl PartialEq for AwsDynamoDbTableReplica
Source§impl Serialize for AwsDynamoDbTableReplica
impl Serialize for AwsDynamoDbTableReplica
impl StructuralPartialEq for AwsDynamoDbTableReplica
Auto Trait Implementations§
impl Freeze for AwsDynamoDbTableReplica
impl RefUnwindSafe for AwsDynamoDbTableReplica
impl Send for AwsDynamoDbTableReplica
impl Sync for AwsDynamoDbTableReplica
impl Unpin for AwsDynamoDbTableReplica
impl UnwindSafe for AwsDynamoDbTableReplica
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more