pub struct ReplicationGroupUpdate {
pub create: Option<CreateReplicationGroupMemberAction>,
pub delete: Option<DeleteReplicationGroupMemberAction>,
pub update: Option<UpdateReplicationGroupMemberAction>,
}
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
CreateTableReplica
action in the destination Region. -
New parameters for an existing replica. This request invokes the
UpdateTable
action in the destination Region. -
An existing replica to be deleted. The request invokes the
DeleteTableReplica
action in the destination Region, deleting the replica and all if its items in the destination Region.
Fields§
§create: Option<CreateReplicationGroupMemberAction>
The parameters required for creating a replica for the table.
delete: Option<DeleteReplicationGroupMemberAction>
The parameters required for deleting a replica for the table.
update: Option<UpdateReplicationGroupMemberAction>
The parameters required for updating a replica for the table.
Trait Implementations§
Source§impl Clone for ReplicationGroupUpdate
impl Clone for ReplicationGroupUpdate
Source§fn clone(&self) -> ReplicationGroupUpdate
fn clone(&self) -> ReplicationGroupUpdate
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 ReplicationGroupUpdate
impl Debug for ReplicationGroupUpdate
Source§impl Default for ReplicationGroupUpdate
impl Default for ReplicationGroupUpdate
Source§fn default() -> ReplicationGroupUpdate
fn default() -> ReplicationGroupUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplicationGroupUpdate
impl PartialEq for ReplicationGroupUpdate
Source§impl Serialize for ReplicationGroupUpdate
impl Serialize for ReplicationGroupUpdate
impl StructuralPartialEq for ReplicationGroupUpdate
Auto Trait Implementations§
impl Freeze for ReplicationGroupUpdate
impl RefUnwindSafe for ReplicationGroupUpdate
impl Send for ReplicationGroupUpdate
impl Sync for ReplicationGroupUpdate
impl Unpin for ReplicationGroupUpdate
impl UnwindSafe for ReplicationGroupUpdate
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