Struct aws_sdk_dynamodb::model::ReplicaUpdate
source · #[non_exhaustive]pub struct ReplicaUpdate { /* private fields */ }
Expand description
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.
Implementations§
source§impl ReplicaUpdate
impl ReplicaUpdate
sourcepub fn create(&self) -> Option<&CreateReplicaAction>
pub fn create(&self) -> Option<&CreateReplicaAction>
The parameters required for creating a replica on an existing global table.
sourcepub fn delete(&self) -> Option<&DeleteReplicaAction>
pub fn delete(&self) -> Option<&DeleteReplicaAction>
The name of the existing replica to be removed.
source§impl ReplicaUpdate
impl ReplicaUpdate
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReplicaUpdate
.
Trait Implementations§
source§impl Clone for ReplicaUpdate
impl Clone for ReplicaUpdate
source§fn clone(&self) -> ReplicaUpdate
fn clone(&self) -> ReplicaUpdate
Returns a copy 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 more