pub struct UpdateTableReplicaAutoScalingInput {
pub global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>,
pub provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>,
pub replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>,
pub table_name: String,
}
Fields§
§global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>
Represents the auto scaling settings of the global secondary indexes of the replica to be updated.
provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>
§replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>
Represents the auto scaling settings of replicas of the table that will be modified.
table_name: String
The name of the global table to be updated.
Trait Implementations§
Source§impl Clone for UpdateTableReplicaAutoScalingInput
impl Clone for UpdateTableReplicaAutoScalingInput
Source§fn clone(&self) -> UpdateTableReplicaAutoScalingInput
fn clone(&self) -> UpdateTableReplicaAutoScalingInput
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 UpdateTableReplicaAutoScalingInput
impl Default for UpdateTableReplicaAutoScalingInput
Source§fn default() -> UpdateTableReplicaAutoScalingInput
fn default() -> UpdateTableReplicaAutoScalingInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateTableReplicaAutoScalingInput
impl PartialEq for UpdateTableReplicaAutoScalingInput
Source§fn eq(&self, other: &UpdateTableReplicaAutoScalingInput) -> bool
fn eq(&self, other: &UpdateTableReplicaAutoScalingInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateTableReplicaAutoScalingInput
Auto Trait Implementations§
impl Freeze for UpdateTableReplicaAutoScalingInput
impl RefUnwindSafe for UpdateTableReplicaAutoScalingInput
impl Send for UpdateTableReplicaAutoScalingInput
impl Sync for UpdateTableReplicaAutoScalingInput
impl Unpin for UpdateTableReplicaAutoScalingInput
impl UnwindSafe for UpdateTableReplicaAutoScalingInput
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