Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_output::builders::DeleteApplicationOutputFluentBuilder
source · pub struct DeleteApplicationOutputFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteApplicationOutput.
Deletes the output destination configuration from your SQL-based Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.
Implementations§
source§impl DeleteApplicationOutputFluentBuilder
impl DeleteApplicationOutputFluentBuilder
sourcepub fn as_input(&self) -> &DeleteApplicationOutputInputBuilder
pub fn as_input(&self) -> &DeleteApplicationOutputInputBuilder
Access the DeleteApplicationOutput as a reference.
sourcepub async fn send(
self
) -> Result<DeleteApplicationOutputOutput, SdkError<DeleteApplicationOutputError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteApplicationOutputOutput, SdkError<DeleteApplicationOutputError, 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<DeleteApplicationOutputOutput, DeleteApplicationOutputError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteApplicationOutputOutput, DeleteApplicationOutputError, 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 application name.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The application name.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The application name.
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 output_id(self, input: impl Into<String>) -> Self
pub fn output_id(self, input: impl Into<String>) -> Self
The ID of the configuration to delete. Each output configuration that is added to the application (either when the application is created or later) using the AddApplicationOutput operation has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the DescribeApplication operation to get the specific OutputId.
sourcepub fn set_output_id(self, input: Option<String>) -> Self
pub fn set_output_id(self, input: Option<String>) -> Self
The ID of the configuration to delete. Each output configuration that is added to the application (either when the application is created or later) using the AddApplicationOutput operation has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the DescribeApplication operation to get the specific OutputId.
sourcepub fn get_output_id(&self) -> &Option<String>
pub fn get_output_id(&self) -> &Option<String>
The ID of the configuration to delete. Each output configuration that is added to the application (either when the application is created or later) using the AddApplicationOutput operation has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the DescribeApplication operation to get the specific OutputId.
Trait Implementations§
source§impl Clone for DeleteApplicationOutputFluentBuilder
impl Clone for DeleteApplicationOutputFluentBuilder
source§fn clone(&self) -> DeleteApplicationOutputFluentBuilder
fn clone(&self) -> DeleteApplicationOutputFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more