#[non_exhaustive]pub struct UpdateTableReplicaAutoScalingInput {
pub global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>,
pub table_name: Option<String>,
pub provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>,
pub replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.global_secondary_index_updates: Option<Vec<GlobalSecondaryIndexAutoScalingUpdate>>
Represents the auto scaling settings of the global secondary indexes of the replica to be updated.
table_name: Option<String>
The name of the global table to be updated. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
provisioned_write_capacity_auto_scaling_update: Option<AutoScalingSettingsUpdate>
Represents the auto scaling settings to be modified for a global table or global secondary index.
replica_updates: Option<Vec<ReplicaAutoScalingUpdate>>
Represents the auto scaling settings of replicas of the table that will be modified.
Implementations§
Source§impl UpdateTableReplicaAutoScalingInput
impl UpdateTableReplicaAutoScalingInput
Sourcepub fn global_secondary_index_updates(
&self,
) -> &[GlobalSecondaryIndexAutoScalingUpdate]
pub fn global_secondary_index_updates( &self, ) -> &[GlobalSecondaryIndexAutoScalingUpdate]
Represents the auto scaling settings of the global secondary indexes of the replica to be updated.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .global_secondary_index_updates.is_none()
.
Sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the global table to be updated. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
Sourcepub fn provisioned_write_capacity_auto_scaling_update(
&self,
) -> Option<&AutoScalingSettingsUpdate>
pub fn provisioned_write_capacity_auto_scaling_update( &self, ) -> Option<&AutoScalingSettingsUpdate>
Represents the auto scaling settings to be modified for a global table or global secondary index.
Sourcepub fn replica_updates(&self) -> &[ReplicaAutoScalingUpdate]
pub fn replica_updates(&self) -> &[ReplicaAutoScalingUpdate]
Represents the auto scaling settings of replicas of the table that will be modified.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .replica_updates.is_none()
.
Source§impl UpdateTableReplicaAutoScalingInput
impl UpdateTableReplicaAutoScalingInput
Sourcepub fn builder() -> UpdateTableReplicaAutoScalingInputBuilder
pub fn builder() -> UpdateTableReplicaAutoScalingInputBuilder
Creates a new builder-style object to manufacture UpdateTableReplicaAutoScalingInput
.
Trait Implementations§
Source§impl Clone for UpdateTableReplicaAutoScalingInput
impl Clone for UpdateTableReplicaAutoScalingInput
Source§fn clone(&self) -> UpdateTableReplicaAutoScalingInput
fn clone(&self) -> UpdateTableReplicaAutoScalingInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for UpdateTableReplicaAutoScalingInput
impl PartialEq for UpdateTableReplicaAutoScalingInput
Source§fn eq(&self, other: &UpdateTableReplicaAutoScalingInput) -> bool
fn eq(&self, other: &UpdateTableReplicaAutoScalingInput) -> bool
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more