Struct rusoto_dynamodb::ReplicaUpdate[][src]

pub struct ReplicaUpdate {
    pub create: Option<CreateReplicaAction>,
    pub delete: Option<DeleteReplicaAction>,
}

Represents one of the following:

  • A new replica to be added to an existing global table.

  • New parameters for an existing replica.

  • An existing replica to be removed from an existing global table.

Fields

The parameters required for creating a replica on an existing global table.

The name of the existing replica to be removed.

Trait Implementations

impl Default for ReplicaUpdate
[src]

Returns the "default value" for a type. Read more

impl Debug for ReplicaUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicaUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReplicaUpdate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations