Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_output::builders::DeleteApplicationOutputInputBuilder
source · #[non_exhaustive]pub struct DeleteApplicationOutputInputBuilder { /* private fields */ }Expand description
A builder for DeleteApplicationOutputInput.
Implementations§
source§impl DeleteApplicationOutputInputBuilder
impl DeleteApplicationOutputInputBuilder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The application name.
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 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.
sourcepub fn build(self) -> Result<DeleteApplicationOutputInput, BuildError>
pub fn build(self) -> Result<DeleteApplicationOutputInput, BuildError>
Consumes the builder and constructs a DeleteApplicationOutputInput.
source§impl DeleteApplicationOutputInputBuilder
impl DeleteApplicationOutputInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteApplicationOutputOutput, SdkError<DeleteApplicationOutputError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteApplicationOutputOutput, SdkError<DeleteApplicationOutputError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteApplicationOutputInputBuilder
impl Clone for DeleteApplicationOutputInputBuilder
source§fn clone(&self) -> DeleteApplicationOutputInputBuilder
fn clone(&self) -> DeleteApplicationOutputInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteApplicationOutputInputBuilder
impl Default for DeleteApplicationOutputInputBuilder
source§fn default() -> DeleteApplicationOutputInputBuilder
fn default() -> DeleteApplicationOutputInputBuilder
source§impl PartialEq for DeleteApplicationOutputInputBuilder
impl PartialEq for DeleteApplicationOutputInputBuilder
source§fn eq(&self, other: &DeleteApplicationOutputInputBuilder) -> bool
fn eq(&self, other: &DeleteApplicationOutputInputBuilder) -> bool
self and other values to be equal, and is used
by ==.