Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_input_processing_configuration::builders::DeleteApplicationInputProcessingConfigurationInputBuilder
source · #[non_exhaustive]pub struct DeleteApplicationInputProcessingConfigurationInputBuilder { /* private fields */ }Expand description
A builder for DeleteApplicationInputProcessingConfigurationInput.
Implementations§
source§impl DeleteApplicationInputProcessingConfigurationInputBuilder
impl DeleteApplicationInputProcessingConfigurationInputBuilder
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.
This field is required.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.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of the application.
sourcepub fn current_application_version_id(self, input: i64) -> Self
pub fn current_application_version_id(self, input: i64) -> Self
The application version. 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 application version. 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 application version. 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 from which to delete the input processing configuration. You can get a list of the input IDs for an application by 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 from which to delete the input processing configuration. You can get a list of the input IDs for an application by 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 from which to delete the input processing configuration. You can get a list of the input IDs for an application by using the DescribeApplication operation.
sourcepub fn build(
self
) -> Result<DeleteApplicationInputProcessingConfigurationInput, BuildError>
pub fn build( self ) -> Result<DeleteApplicationInputProcessingConfigurationInput, BuildError>
Consumes the builder and constructs a DeleteApplicationInputProcessingConfigurationInput.
source§impl DeleteApplicationInputProcessingConfigurationInputBuilder
impl DeleteApplicationInputProcessingConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteApplicationInputProcessingConfigurationOutput, SdkError<DeleteApplicationInputProcessingConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteApplicationInputProcessingConfigurationOutput, SdkError<DeleteApplicationInputProcessingConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteApplicationInputProcessingConfigurationInputBuilder
impl Clone for DeleteApplicationInputProcessingConfigurationInputBuilder
source§fn clone(&self) -> DeleteApplicationInputProcessingConfigurationInputBuilder
fn clone(&self) -> DeleteApplicationInputProcessingConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteApplicationInputProcessingConfigurationInputBuilder
impl Default for DeleteApplicationInputProcessingConfigurationInputBuilder
source§fn default() -> DeleteApplicationInputProcessingConfigurationInputBuilder
fn default() -> DeleteApplicationInputProcessingConfigurationInputBuilder
source§impl PartialEq for DeleteApplicationInputProcessingConfigurationInputBuilder
impl PartialEq for DeleteApplicationInputProcessingConfigurationInputBuilder
source§fn eq(
&self,
other: &DeleteApplicationInputProcessingConfigurationInputBuilder
) -> bool
fn eq( &self, other: &DeleteApplicationInputProcessingConfigurationInputBuilder ) -> bool
self and other values to be equal, and is used
by ==.