Struct aws_sdk_kinesisanalyticsv2::operation::add_application_input_processing_configuration::builders::AddApplicationInputProcessingConfigurationFluentBuilder
source · pub struct AddApplicationInputProcessingConfigurationFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to AddApplicationInputProcessingConfiguration.
Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is Amazon Lambda.
Implementations§
source§impl AddApplicationInputProcessingConfigurationFluentBuilder
impl AddApplicationInputProcessingConfigurationFluentBuilder
sourcepub fn as_input(
&self
) -> &AddApplicationInputProcessingConfigurationInputBuilder
pub fn as_input( &self ) -> &AddApplicationInputProcessingConfigurationInputBuilder
Access the AddApplicationInputProcessingConfiguration as a reference.
sourcepub async fn send(
self
) -> Result<AddApplicationInputProcessingConfigurationOutput, SdkError<AddApplicationInputProcessingConfigurationError, HttpResponse>>
pub async fn send( self ) -> Result<AddApplicationInputProcessingConfigurationOutput, SdkError<AddApplicationInputProcessingConfigurationError, 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<AddApplicationInputProcessingConfigurationOutput, AddApplicationInputProcessingConfigurationError, Self>
pub fn customize( self ) -> CustomizableOperation<AddApplicationInputProcessingConfigurationOutput, AddApplicationInputProcessingConfigurationError, 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 the application to which you want to add the input processing configuration.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of the application to which you want to add the input processing configuration.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of the application to which you want to add the input processing configuration.
sourcepub fn current_application_version_id(self, input: i64) -> Self
pub fn current_application_version_id(self, input: i64) -> Self
The version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
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 version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
sourcepub fn get_current_application_version_id(&self) -> &Option<i64>
pub fn get_current_application_version_id(&self) -> &Option<i64>
The version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
sourcepub fn input_id(self, input: impl Into<String>) -> Self
pub fn input_id(self, input: impl Into<String>) -> Self
The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation.
sourcepub fn set_input_id(self, input: Option<String>) -> Self
pub fn set_input_id(self, input: Option<String>) -> Self
The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation.
sourcepub fn get_input_id(&self) -> &Option<String>
pub fn get_input_id(&self) -> &Option<String>
The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation.
sourcepub fn input_processing_configuration(
self,
input: InputProcessingConfiguration
) -> Self
pub fn input_processing_configuration( self, input: InputProcessingConfiguration ) -> Self
The InputProcessingConfiguration to add to the application.
sourcepub fn set_input_processing_configuration(
self,
input: Option<InputProcessingConfiguration>
) -> Self
pub fn set_input_processing_configuration( self, input: Option<InputProcessingConfiguration> ) -> Self
The InputProcessingConfiguration to add to the application.
sourcepub fn get_input_processing_configuration(
&self
) -> &Option<InputProcessingConfiguration>
pub fn get_input_processing_configuration( &self ) -> &Option<InputProcessingConfiguration>
The InputProcessingConfiguration to add to the application.
Trait Implementations§
source§impl Clone for AddApplicationInputProcessingConfigurationFluentBuilder
impl Clone for AddApplicationInputProcessingConfigurationFluentBuilder
source§fn clone(&self) -> AddApplicationInputProcessingConfigurationFluentBuilder
fn clone(&self) -> AddApplicationInputProcessingConfigurationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more