Struct aws_sdk_dynamodb::model::ReplicationGroupUpdate [−][src]
#[non_exhaustive]pub struct ReplicationGroupUpdate {
pub create: Option<CreateReplicationGroupMemberAction>,
pub update: Option<UpdateReplicationGroupMemberAction>,
pub delete: Option<DeleteReplicationGroupMemberAction>,
}Expand description
Represents one of the following:
-
A new replica to be added to an existing regional table or global table. This request invokes the
CreateTableReplicaaction in the destination Region. -
New parameters for an existing replica. This request invokes the
UpdateTableaction in the destination Region. -
An existing replica to be deleted. The request invokes the
DeleteTableReplicaaction in the destination Region, deleting the replica and all if its items in the destination Region.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.create: Option<CreateReplicationGroupMemberAction>The parameters required for creating a replica for the table.
update: Option<UpdateReplicationGroupMemberAction>The parameters required for updating a replica for the table.
delete: Option<DeleteReplicationGroupMemberAction>The parameters required for deleting a replica for the table.
Implementations
The parameters required for creating a replica for the table.
The parameters required for updating a replica for the table.
The parameters required for deleting a replica for the table.
Creates a new builder-style object to manufacture ReplicationGroupUpdate
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ReplicationGroupUpdate
impl Send for ReplicationGroupUpdate
impl Sync for ReplicationGroupUpdate
impl Unpin for ReplicationGroupUpdate
impl UnwindSafe for ReplicationGroupUpdate
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more