aws_sdk_dynamodb/client/
disable_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 [`DisableKinesisStreamingDestination`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder) operation.
4                            ///
5                            /// - The fluent builder is configurable:
6    ///   - [`table_name(impl Into<String>)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::set_table_name):<br>required: **true**<br><p>The name of the DynamoDB table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p><br>
7    ///   - [`stream_arn(impl Into<String>)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::stream_arn) / [`set_stream_arn(Option<String>)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::set_stream_arn):<br>required: **true**<br><p>The ARN for a Kinesis data stream.</p><br>
8    ///   - [`enable_kinesis_streaming_configuration(EnableKinesisStreamingConfiguration)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::enable_kinesis_streaming_configuration) / [`set_enable_kinesis_streaming_configuration(Option<EnableKinesisStreamingConfiguration>)`](crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::set_enable_kinesis_streaming_configuration):<br>required: **false**<br><p>The source for the Kinesis streaming information that is being enabled.</p><br>
9                            /// - On success, responds with [`DisableKinesisStreamingDestinationOutput`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationOutput) with field(s):
10    ///   - [`table_name(Option<String>)`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationOutput::table_name): <p>The name of the table being modified.</p>
11    ///   - [`stream_arn(Option<String>)`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationOutput::stream_arn): <p>The ARN for the specific Kinesis data stream.</p>
12    ///   - [`destination_status(Option<DestinationStatus>)`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationOutput::destination_status): <p>The current status of the replication.</p>
13    ///   - [`enable_kinesis_streaming_configuration(Option<EnableKinesisStreamingConfiguration>)`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationOutput::enable_kinesis_streaming_configuration): <p>The destination for the Kinesis streaming information that is being enabled.</p>
14                            /// - On failure, responds with [`SdkError<DisableKinesisStreamingDestinationError>`](crate::operation::disable_kinesis_streaming_destination::DisableKinesisStreamingDestinationError)
15    pub fn disable_kinesis_streaming_destination(&self) -> crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder {
16                                crate::operation::disable_kinesis_streaming_destination::builders::DisableKinesisStreamingDestinationFluentBuilder::new(self.handle.clone())
17                            }
18}
19