pub struct ReplicaAutoScalingUpdate {
pub region_name: String,
pub replica_global_secondary_index_updates: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingUpdate>>,
pub replica_provisioned_read_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>,
}
Expand description
Represents the auto scaling settings of a replica that will be modified.
Fields§
§region_name: String
The Region where the replica exists.
replica_global_secondary_index_updates: Option<Vec<ReplicaGlobalSecondaryIndexAutoScalingUpdate>>
Represents the auto scaling settings of global secondary indexes that will be modified.
replica_provisioned_read_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>
Trait Implementations§
Source§impl Clone for ReplicaAutoScalingUpdate
impl Clone for ReplicaAutoScalingUpdate
Source§fn clone(&self) -> ReplicaAutoScalingUpdate
fn clone(&self) -> ReplicaAutoScalingUpdate
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 Debug for ReplicaAutoScalingUpdate
impl Debug for ReplicaAutoScalingUpdate
Source§impl Default for ReplicaAutoScalingUpdate
impl Default for ReplicaAutoScalingUpdate
Source§fn default() -> ReplicaAutoScalingUpdate
fn default() -> ReplicaAutoScalingUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplicaAutoScalingUpdate
impl PartialEq for ReplicaAutoScalingUpdate
Source§impl Serialize for ReplicaAutoScalingUpdate
impl Serialize for ReplicaAutoScalingUpdate
impl StructuralPartialEq for ReplicaAutoScalingUpdate
Auto Trait Implementations§
impl Freeze for ReplicaAutoScalingUpdate
impl RefUnwindSafe for ReplicaAutoScalingUpdate
impl Send for ReplicaAutoScalingUpdate
impl Sync for ReplicaAutoScalingUpdate
impl Unpin for ReplicaAutoScalingUpdate
impl UnwindSafe for ReplicaAutoScalingUpdate
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