Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_reference_data_source::builders::DeleteApplicationReferenceDataSourceInputBuilder
source · #[non_exhaustive]pub struct DeleteApplicationReferenceDataSourceInputBuilder { /* private fields */ }Expand description
A builder for DeleteApplicationReferenceDataSourceInput.
Implementations§
source§impl DeleteApplicationReferenceDataSourceInputBuilder
impl DeleteApplicationReferenceDataSourceInputBuilder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of an existing 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 an existing application.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of an existing application.
sourcepub fn current_application_version_id(self, input: i64) -> Self
pub fn current_application_version_id(self, input: i64) -> Self
The current 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 current 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 current 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 reference_id(self, input: impl Into<String>) -> Self
pub fn reference_id(self, input: impl Into<String>) -> Self
The ID of the reference data source. When you add a reference data source to your application using the AddApplicationReferenceDataSource, Kinesis Data Analytics assigns an ID. You can use the DescribeApplication operation to get the reference ID.
sourcepub fn set_reference_id(self, input: Option<String>) -> Self
pub fn set_reference_id(self, input: Option<String>) -> Self
The ID of the reference data source. When you add a reference data source to your application using the AddApplicationReferenceDataSource, Kinesis Data Analytics assigns an ID. You can use the DescribeApplication operation to get the reference ID.
sourcepub fn get_reference_id(&self) -> &Option<String>
pub fn get_reference_id(&self) -> &Option<String>
The ID of the reference data source. When you add a reference data source to your application using the AddApplicationReferenceDataSource, Kinesis Data Analytics assigns an ID. You can use the DescribeApplication operation to get the reference ID.
sourcepub fn build(
self
) -> Result<DeleteApplicationReferenceDataSourceInput, BuildError>
pub fn build( self ) -> Result<DeleteApplicationReferenceDataSourceInput, BuildError>
Consumes the builder and constructs a DeleteApplicationReferenceDataSourceInput.
source§impl DeleteApplicationReferenceDataSourceInputBuilder
impl DeleteApplicationReferenceDataSourceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteApplicationReferenceDataSourceOutput, SdkError<DeleteApplicationReferenceDataSourceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteApplicationReferenceDataSourceOutput, SdkError<DeleteApplicationReferenceDataSourceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteApplicationReferenceDataSourceInputBuilder
impl Clone for DeleteApplicationReferenceDataSourceInputBuilder
source§fn clone(&self) -> DeleteApplicationReferenceDataSourceInputBuilder
fn clone(&self) -> DeleteApplicationReferenceDataSourceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteApplicationReferenceDataSourceInputBuilder
impl Default for DeleteApplicationReferenceDataSourceInputBuilder
source§fn default() -> DeleteApplicationReferenceDataSourceInputBuilder
fn default() -> DeleteApplicationReferenceDataSourceInputBuilder
source§impl PartialEq for DeleteApplicationReferenceDataSourceInputBuilder
impl PartialEq for DeleteApplicationReferenceDataSourceInputBuilder
source§fn eq(&self, other: &DeleteApplicationReferenceDataSourceInputBuilder) -> bool
fn eq(&self, other: &DeleteApplicationReferenceDataSourceInputBuilder) -> bool
self and other values to be equal, and is used
by ==.