aws_sdk_keyspaces/client/
get_table_auto_scaling_settings.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetTableAutoScalingSettings`](crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`GetTableAutoScalingSettingsOutput`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput) with field(s):
    ///   - [`keyspace_name(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::keyspace_name): <p>The name of the keyspace.</p>
    ///   - [`table_name(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::table_name): <p>The name of the table.</p>
    ///   - [`resource_arn(String)`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsOutput::resource_arn): <p>The Amazon Resource Name (ARN) of the table.</p>
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<GetTableAutoScalingSettingsError>`](crate::operation::get_table_auto_scaling_settings::GetTableAutoScalingSettingsError)
    pub fn get_table_auto_scaling_settings(
        &self,
    ) -> crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder {
        crate::operation::get_table_auto_scaling_settings::builders::GetTableAutoScalingSettingsFluentBuilder::new(self.handle.clone())
    }
}