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.