aws_sdk_keyspaces/client/
get_table_auto_scaling_settings.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetTableAutoScalingSettings`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`keyspace_name(impl Into<String>)`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::keyspace_name) / [`set_keyspace_name(Option<String>)`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::set_keyspace_name):<br>required: **true**<br><p>The name of the keyspace.</p><br>
7    ///   - [`table_name(impl Into<String>)`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table.</p><br>
8    /// - On success, responds with [`GetTableAutoScalingSettingsOutput`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput) with field(s):
9    ///   - [`keyspace_name(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::keyspace_name): <p>The name of the keyspace.</p>
10    ///   - [`table_name(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::table_name): <p>The name of the table.</p>
11    ///   - [`resource_arn(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::resource_arn): <p>The Amazon Resource Name (ARN) of the table.</p>
12    ///   - [`auto_scaling_specification(Option<AutoScalingSpecification>)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::auto_scaling_specification): <p>The auto scaling settings of the table.</p>
13    ///   - [`replica_specifications(Option<Vec::<ReplicaAutoScalingSpecification>>)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::replica_specifications): <p>The Amazon Web Services Region specific settings of a multi-Region table. Returns the settings for all Regions the table is replicated in.</p>
14    /// - On failure, responds with [`SdkError<GetTableAutoScalingSettingsError>`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsError)
15    pub fn get_table_auto_scaling_settings(
16        &self,
17    ) -> crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder {
18        crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::new(self.handle.clone())
19    }
20}