Struct rusoto_dynamodb::ReplicaDescription
source · [−]pub struct ReplicaDescription {
pub global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexDescription>>,
pub kms_master_key_id: Option<String>,
pub provisioned_throughput_override: Option<ProvisionedThroughputOverride>,
pub region_name: Option<String>,
pub replica_inaccessible_date_time: Option<f64>,
pub replica_status: Option<String>,
pub replica_status_description: Option<String>,
pub replica_status_percent_progress: Option<String>,
}
Expand description
Contains the details of the replica.
Fields
global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexDescription>>
Replica-specific global secondary index settings.
kms_master_key_id: Option<String>
The AWS KMS customer master key (CMK) of the replica that will be used for AWS KMS encryption.
provisioned_throughput_override: Option<ProvisionedThroughputOverride>
Replica-specific provisioned throughput. If not described, uses the source table's provisioned throughput settings.
region_name: Option<String>
The name of the Region.
replica_inaccessible_date_time: Option<f64>
The time at which the replica was first detected as inaccessible. To determine cause of inaccessibility check the ReplicaStatus
property.
replica_status: Option<String>
The current state of the replica:
-
CREATING
- The replica is being created. -
UPDATING
- The replica is being updated. -
DELETING
- The replica is being deleted. -
ACTIVE
- The replica is ready for use. -
REGIONDISABLED
- The replica is inaccessible because the AWS Region has been disabled.If the AWS Region remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.
-
INACCESSIBLEENCRYPTION_CREDENTIALS
- The AWS KMS key used to encrypt the table is inaccessible.If the AWS KMS key remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.
replica_status_description: Option<String>
Detailed information about the replica status.
replica_status_percent_progress: Option<String>
Specifies the progress of a Create, Update, or Delete action on the replica as a percentage.
Trait Implementations
sourceimpl Clone for ReplicaDescription
impl Clone for ReplicaDescription
sourcefn clone(&self) -> ReplicaDescription
fn clone(&self) -> ReplicaDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReplicaDescription
impl Debug for ReplicaDescription
sourceimpl Default for ReplicaDescription
impl Default for ReplicaDescription
sourcefn default() -> ReplicaDescription
fn default() -> ReplicaDescription
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ReplicaDescription
impl<'de> Deserialize<'de> for ReplicaDescription
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ReplicaDescription> for ReplicaDescription
impl PartialEq<ReplicaDescription> for ReplicaDescription
sourcefn eq(&self, other: &ReplicaDescription) -> bool
fn eq(&self, other: &ReplicaDescription) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReplicaDescription) -> bool
fn ne(&self, other: &ReplicaDescription) -> bool
This method tests for !=
.
impl StructuralPartialEq for ReplicaDescription
Auto Trait Implementations
impl RefUnwindSafe for ReplicaDescription
impl Send for ReplicaDescription
impl Sync for ReplicaDescription
impl Unpin for ReplicaDescription
impl UnwindSafe for ReplicaDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more