aws_sdk_dynamodb/operation/enable_kinesis_streaming_destination/
builders.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub use crate::operation::enable_kinesis_streaming_destination::_enable_kinesis_streaming_destination_output::EnableKinesisStreamingDestinationOutputBuilder;
3
4pub use crate::operation::enable_kinesis_streaming_destination::_enable_kinesis_streaming_destination_input::EnableKinesisStreamingDestinationInputBuilder;
5
6impl crate::operation::enable_kinesis_streaming_destination::builders::EnableKinesisStreamingDestinationInputBuilder {
7                    /// Sends a request with this input using the given client.
8                    pub async fn send_with(self, client: &crate::Client) -> ::std::result::Result<
9                        crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationOutput,
10                        ::aws_smithy_runtime_api::client::result::SdkError<
11                            crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationError,
12                            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse
13                        >
14                    > {
15                        let mut fluent_builder = client.enable_kinesis_streaming_destination();
16                        fluent_builder.inner = self;
17                        fluent_builder.send().await
18                    }
19                }
20/// Fluent builder constructing a request to `EnableKinesisStreamingDestination`.
21/// 
22/// <p>Starts table data replication to the specified Kinesis data stream at a timestamp chosen during the enable workflow. If this operation doesn't return results immediately, use DescribeKinesisStreamingDestination to check if streaming to the Kinesis data stream is ACTIVE.</p>
23#[derive(::std::clone::Clone, ::std::fmt::Debug)]
24pub struct EnableKinesisStreamingDestinationFluentBuilder {
25                handle: ::std::sync::Arc<crate::client::Handle>,
26                inner: crate::operation::enable_kinesis_streaming_destination::builders::EnableKinesisStreamingDestinationInputBuilder,
27config_override: ::std::option::Option<crate::config::Builder>,
28            }
29impl
30                crate::client::customize::internal::CustomizableSend<
31                    crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationOutput,
32                    crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationError,
33                > for EnableKinesisStreamingDestinationFluentBuilder
34            {
35                fn send(
36                    self,
37                    config_override: crate::config::Builder,
38                ) -> crate::client::customize::internal::BoxFuture<
39                    crate::client::customize::internal::SendResult<
40                        crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationOutput,
41                        crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationError,
42                    >,
43                > {
44                    ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
45                }
46            }
47impl EnableKinesisStreamingDestinationFluentBuilder {
48    /// Creates a new `EnableKinesisStreamingDestinationFluentBuilder`.
49                    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
50                        Self {
51                            handle,
52                            inner: ::std::default::Default::default(),
53    config_override: ::std::option::Option::None,
54                        }
55                    }
56    /// Access the EnableKinesisStreamingDestination as a reference.
57                    pub fn as_input(&self) -> &crate::operation::enable_kinesis_streaming_destination::builders::EnableKinesisStreamingDestinationInputBuilder {
58                        &self.inner
59                    }
60    /// Sends the request and returns the response.
61                    ///
62                    /// If an error occurs, an `SdkError` will be returned with additional details that
63                    /// can be matched against.
64                    ///
65                    /// By default, any retryable failures will be retried twice. Retry behavior
66                    /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
67                    /// set when configuring the client.
68                    pub async fn send(self) -> ::std::result::Result<crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationOutput, ::aws_smithy_runtime_api::client::result::SdkError<crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationError, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>> {
69                        let input = self.inner.build().map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
70                        let runtime_plugins = crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestination::operation_runtime_plugins(
71                            self.handle.runtime_plugins.clone(),
72                            &self.handle.conf,
73                            self.config_override,
74                        );
75                        crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestination::orchestrate(&runtime_plugins, input).await
76                    }
77    
78                    /// Consumes this builder, creating a customizable operation that can be modified before being sent.
79                    pub fn customize(
80                        self,
81                    ) -> crate::client::customize::CustomizableOperation<crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationOutput, crate::operation::enable_kinesis_streaming_destination::EnableKinesisStreamingDestinationError, Self> {
82                        crate::client::customize::CustomizableOperation::new(self)
83                    }
84    pub(crate) fn config_override(
85                            mut self,
86                            config_override: impl ::std::convert::Into<crate::config::Builder>,
87                        ) -> Self {
88                            self.set_config_override(::std::option::Option::Some(config_override.into()));
89                            self
90                        }
91    
92                        pub(crate) fn set_config_override(
93                            &mut self,
94                            config_override: ::std::option::Option<crate::config::Builder>,
95                        ) -> &mut Self {
96                            self.config_override = config_override;
97                            self
98                        }
99    /// <p>The name of the DynamoDB table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p>
100    pub fn table_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101                    self.inner = self.inner.table_name(input.into());
102                    self
103                }
104    /// <p>The name of the DynamoDB table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p>
105    pub fn set_table_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
106                    self.inner = self.inner.set_table_name(input);
107                    self
108                }
109    /// <p>The name of the DynamoDB table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.</p>
110    pub fn get_table_name(&self) -> &::std::option::Option<::std::string::String> {
111                    self.inner.get_table_name()
112                }
113    /// <p>The ARN for a Kinesis data stream.</p>
114    pub fn stream_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
115                    self.inner = self.inner.stream_arn(input.into());
116                    self
117                }
118    /// <p>The ARN for a Kinesis data stream.</p>
119    pub fn set_stream_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
120                    self.inner = self.inner.set_stream_arn(input);
121                    self
122                }
123    /// <p>The ARN for a Kinesis data stream.</p>
124    pub fn get_stream_arn(&self) -> &::std::option::Option<::std::string::String> {
125                    self.inner.get_stream_arn()
126                }
127    /// <p>The source for the Kinesis streaming information that is being enabled.</p>
128    pub fn enable_kinesis_streaming_configuration(mut self, input: crate::types::EnableKinesisStreamingConfiguration) -> Self {
129                    self.inner = self.inner.enable_kinesis_streaming_configuration(input);
130                    self
131                }
132    /// <p>The source for the Kinesis streaming information that is being enabled.</p>
133    pub fn set_enable_kinesis_streaming_configuration(mut self, input: ::std::option::Option<crate::types::EnableKinesisStreamingConfiguration>) -> Self {
134                    self.inner = self.inner.set_enable_kinesis_streaming_configuration(input);
135                    self
136                }
137    /// <p>The source for the Kinesis streaming information that is being enabled.</p>
138    pub fn get_enable_kinesis_streaming_configuration(&self) -> &::std::option::Option<crate::types::EnableKinesisStreamingConfiguration> {
139                    self.inner.get_enable_kinesis_streaming_configuration()
140                }
141}
142