aws_sdk_dynamodb/client/
describe_kinesis_streaming_destination.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 [`DescribeKinesisStreamingDestination`](crate::operation::describe_kinesis_streaming_destination::builders::DescribeKinesisStreamingDestinationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_name(impl Into<String>)`](crate::operation::describe_kinesis_streaming_destination::builders::DescribeKinesisStreamingDestinationFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::describe_kinesis_streaming_destination::builders::DescribeKinesisStreamingDestinationFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the table being described. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p><br>
7    /// - On success, responds with [`DescribeKinesisStreamingDestinationOutput`](crate::operation::describe_kinesis_streaming_destination::DescribeKinesisStreamingDestinationOutput) with field(s):
8    ///   - [`table_name(Option<String>)`](crate::operation::describe_kinesis_streaming_destination::DescribeKinesisStreamingDestinationOutput::table_name): <p>The name of the table being described.</p>
9    ///   - [`kinesis_data_stream_destinations(Option<Vec::<KinesisDataStreamDestination>>)`](crate::operation::describe_kinesis_streaming_destination::DescribeKinesisStreamingDestinationOutput::kinesis_data_stream_destinations): <p>The list of replica structures for the table being described.</p>
10    /// - On failure, responds with [`SdkError<DescribeKinesisStreamingDestinationError>`](crate::operation::describe_kinesis_streaming_destination::DescribeKinesisStreamingDestinationError)
11    pub fn describe_kinesis_streaming_destination(
12        &self,
13    ) -> crate::operation::describe_kinesis_streaming_destination::builders::DescribeKinesisStreamingDestinationFluentBuilder {
14        crate::operation::describe_kinesis_streaming_destination::builders::DescribeKinesisStreamingDestinationFluentBuilder::new(self.handle.clone())
15    }
16}