pub struct ReplicaAutoScalingDescription {
pub global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingDescription>>,
pub region_name: Option<String>,
pub replica_provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
pub replica_provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
pub replica_status: Option<String>,
}
Expand description
Represents the auto scaling settings of the replica.
Fields§
§global_secondary_indexes: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingDescription>>
Replica-specific global secondary index auto scaling settings.
region_name: Option<String>
The Region where the replica exists.
replica_provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>
§replica_provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>
§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.
Trait Implementations§
Source§impl Clone for ReplicaAutoScalingDescription
impl Clone for ReplicaAutoScalingDescription
Source§fn clone(&self) -> ReplicaAutoScalingDescription
fn clone(&self) -> ReplicaAutoScalingDescription
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 Default for ReplicaAutoScalingDescription
impl Default for ReplicaAutoScalingDescription
Source§fn default() -> ReplicaAutoScalingDescription
fn default() -> ReplicaAutoScalingDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplicaAutoScalingDescription
impl<'de> Deserialize<'de> for ReplicaAutoScalingDescription
Source§fn 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
Source§impl PartialEq for ReplicaAutoScalingDescription
impl PartialEq for ReplicaAutoScalingDescription
Source§fn eq(&self, other: &ReplicaAutoScalingDescription) -> bool
fn eq(&self, other: &ReplicaAutoScalingDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReplicaAutoScalingDescription
Auto Trait Implementations§
impl Freeze for ReplicaAutoScalingDescription
impl RefUnwindSafe for ReplicaAutoScalingDescription
impl Send for ReplicaAutoScalingDescription
impl Sync for ReplicaAutoScalingDescription
impl Unpin for ReplicaAutoScalingDescription
impl UnwindSafe for ReplicaAutoScalingDescription
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