Struct aws_sdk_keyspaces::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput
source · #[non_exhaustive]pub struct GetTableAutoScalingSettingsOutput {
pub keyspace_name: String,
pub table_name: String,
pub resource_arn: String,
pub auto_scaling_specification: Option<AutoScalingSpecification>,
pub replica_specifications: Option<Vec<ReplicaAutoScalingSpecification>>,
/* private fields */
}
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.keyspace_name: String
The name of the keyspace.
table_name: String
The name of the table.
resource_arn: String
The Amazon Resource Name (ARN) of the table.
auto_scaling_specification: Option<AutoScalingSpecification>
The auto scaling settings of the table.
replica_specifications: Option<Vec<ReplicaAutoScalingSpecification>>
The Amazon Web Services Region specific settings of a multi-Region table. Returns the settings for all Regions the table is replicated in.
Implementations§
source§impl GetTableAutoScalingSettingsOutput
impl GetTableAutoScalingSettingsOutput
sourcepub fn keyspace_name(&self) -> &str
pub fn keyspace_name(&self) -> &str
The name of the keyspace.
sourcepub fn table_name(&self) -> &str
pub fn table_name(&self) -> &str
The name of the table.
sourcepub fn resource_arn(&self) -> &str
pub fn resource_arn(&self) -> &str
The Amazon Resource Name (ARN) of the table.
sourcepub fn auto_scaling_specification(&self) -> Option<&AutoScalingSpecification>
pub fn auto_scaling_specification(&self) -> Option<&AutoScalingSpecification>
The auto scaling settings of the table.
sourcepub fn replica_specifications(&self) -> &[ReplicaAutoScalingSpecification]
pub fn replica_specifications(&self) -> &[ReplicaAutoScalingSpecification]
The Amazon Web Services Region specific settings of a multi-Region table. Returns the settings for all Regions the table is replicated in.
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_specifications.is_none()
.
source§impl GetTableAutoScalingSettingsOutput
impl GetTableAutoScalingSettingsOutput
sourcepub fn builder() -> GetTableAutoScalingSettingsOutputBuilder
pub fn builder() -> GetTableAutoScalingSettingsOutputBuilder
Creates a new builder-style object to manufacture GetTableAutoScalingSettingsOutput
.
Trait Implementations§
source§impl Clone for GetTableAutoScalingSettingsOutput
impl Clone for GetTableAutoScalingSettingsOutput
source§fn clone(&self) -> GetTableAutoScalingSettingsOutput
fn clone(&self) -> GetTableAutoScalingSettingsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetTableAutoScalingSettingsOutput
impl PartialEq for GetTableAutoScalingSettingsOutput
source§fn eq(&self, other: &GetTableAutoScalingSettingsOutput) -> bool
fn eq(&self, other: &GetTableAutoScalingSettingsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTableAutoScalingSettingsOutput
impl RequestId for GetTableAutoScalingSettingsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetTableAutoScalingSettingsOutput
Auto Trait Implementations§
impl Freeze for GetTableAutoScalingSettingsOutput
impl RefUnwindSafe for GetTableAutoScalingSettingsOutput
impl Send for GetTableAutoScalingSettingsOutput
impl Sync for GetTableAutoScalingSettingsOutput
impl Unpin for GetTableAutoScalingSettingsOutput
impl UnwindSafe for GetTableAutoScalingSettingsOutput
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> 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