aws_sdk_dynamodb/client/
describe_table_replica_auto_scaling.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 [`DescribeTableReplicaAutoScaling`](crate::operation::describe_table_replica_auto_scaling::builders::DescribeTableReplicaAutoScalingFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_name(impl Into<String>)`](crate::operation::describe_table_replica_auto_scaling::builders::DescribeTableReplicaAutoScalingFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::describe_table_replica_auto_scaling::builders::DescribeTableReplicaAutoScalingFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p><br>
7    /// - On success, responds with [`DescribeTableReplicaAutoScalingOutput`](crate::operation::describe_table_replica_auto_scaling::DescribeTableReplicaAutoScalingOutput) with field(s):
8    ///   - [`table_auto_scaling_description(Option<TableAutoScalingDescription>)`](crate::operation::describe_table_replica_auto_scaling::DescribeTableReplicaAutoScalingOutput::table_auto_scaling_description): <p>Represents the auto scaling properties of the table.</p>
9    /// - On failure, responds with [`SdkError<DescribeTableReplicaAutoScalingError>`](crate::operation::describe_table_replica_auto_scaling::DescribeTableReplicaAutoScalingError)
10    pub fn describe_table_replica_auto_scaling(
11        &self,
12    ) -> crate::operation::describe_table_replica_auto_scaling::builders::DescribeTableReplicaAutoScalingFluentBuilder {
13        crate::operation::describe_table_replica_auto_scaling::builders::DescribeTableReplicaAutoScalingFluentBuilder::new(self.handle.clone())
14    }
15}