[][src]Struct rusoto_dynamodb::ReplicationGroupUpdate

pub struct ReplicationGroupUpdate {
    pub create: Option<CreateReplicationGroupMemberAction>,
    pub delete: Option<DeleteReplicationGroupMemberAction>,
    pub update: Option<UpdateReplicationGroupMemberAction>,
}

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

impl Clone for ReplicationGroupUpdate[src]

impl Debug for ReplicationGroupUpdate[src]

impl Default for ReplicationGroupUpdate[src]

impl PartialEq<ReplicationGroupUpdate> for ReplicationGroupUpdate[src]

impl Serialize for ReplicationGroupUpdate[src]

impl StructuralPartialEq for ReplicationGroupUpdate[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> From<T> 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.