pub struct UpdateReplicationGroupMemberAction {
pub global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndex>>,
pub kms_master_key_id: Option<String>,
pub provisioned_throughput_override: Option<ProvisionedThroughputOverride>,
pub region_name: String,
}
Expand description
Represents a replica to be modified.
Fields§
§global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndex>>
Replica-specific global secondary index settings.
kms_master_key_id: Option<String>
The AWS KMS customer master key (CMK) of the replica that should be used for AWS KMS encryption. To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB KMS master key alias/aws/dynamodb.
provisioned_throughput_override: Option<ProvisionedThroughputOverride>
Replica-specific provisioned throughput. If not specified, uses the source table's provisioned throughput settings.
region_name: String
The Region where the replica exists.
Trait Implementations§
Source§impl Clone for UpdateReplicationGroupMemberAction
impl Clone for UpdateReplicationGroupMemberAction
Source§fn clone(&self) -> UpdateReplicationGroupMemberAction
fn clone(&self) -> UpdateReplicationGroupMemberAction
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 Default for UpdateReplicationGroupMemberAction
impl Default for UpdateReplicationGroupMemberAction
Source§fn default() -> UpdateReplicationGroupMemberAction
fn default() -> UpdateReplicationGroupMemberAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateReplicationGroupMemberAction
impl PartialEq for UpdateReplicationGroupMemberAction
Source§fn eq(&self, other: &UpdateReplicationGroupMemberAction) -> bool
fn eq(&self, other: &UpdateReplicationGroupMemberAction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateReplicationGroupMemberAction
Auto Trait Implementations§
impl Freeze for UpdateReplicationGroupMemberAction
impl RefUnwindSafe for UpdateReplicationGroupMemberAction
impl Send for UpdateReplicationGroupMemberAction
impl Sync for UpdateReplicationGroupMemberAction
impl Unpin for UpdateReplicationGroupMemberAction
impl UnwindSafe for UpdateReplicationGroupMemberAction
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