Struct aws_sdk_kinesisanalyticsv2::operation::add_application_input::builders::AddApplicationInputFluentBuilder
source · pub struct AddApplicationInputFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to AddApplicationInput.
Adds a streaming source to your SQL-based Kinesis Data Analytics application.
You can add a streaming source when you create an application, or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication.
Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
Implementations§
source§impl AddApplicationInputFluentBuilder
impl AddApplicationInputFluentBuilder
sourcepub fn as_input(&self) -> &AddApplicationInputInputBuilder
pub fn as_input(&self) -> &AddApplicationInputInputBuilder
Access the AddApplicationInput as a reference.
sourcepub async fn send(
self
) -> Result<AddApplicationInputOutput, SdkError<AddApplicationInputError, HttpResponse>>
pub async fn send( self ) -> Result<AddApplicationInputOutput, SdkError<AddApplicationInputError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<AddApplicationInputOutput, AddApplicationInputError, Self>
pub fn customize( self ) -> CustomizableOperation<AddApplicationInputOutput, AddApplicationInputError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of your existing application to which you want to add the streaming source.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of your existing application to which you want to add the streaming source.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of your existing application to which you want to add the streaming source.
sourcepub fn current_application_version_id(self, input: i64) -> Self
pub fn current_application_version_id(self, input: i64) -> Self
The current version of your application. You must provide the ApplicationVersionID or the ConditionalToken.You can use the DescribeApplication operation to find the current application version.
sourcepub fn set_current_application_version_id(self, input: Option<i64>) -> Self
pub fn set_current_application_version_id(self, input: Option<i64>) -> Self
The current version of your application. You must provide the ApplicationVersionID or the ConditionalToken.You can use the DescribeApplication operation to find the current application version.
sourcepub fn get_current_application_version_id(&self) -> &Option<i64>
pub fn get_current_application_version_id(&self) -> &Option<i64>
The current version of your application. You must provide the ApplicationVersionID or the ConditionalToken.You can use the DescribeApplication operation to find the current application version.
Trait Implementations§
source§impl Clone for AddApplicationInputFluentBuilder
impl Clone for AddApplicationInputFluentBuilder
source§fn clone(&self) -> AddApplicationInputFluentBuilder
fn clone(&self) -> AddApplicationInputFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more