Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_reference_data_source::builders::DeleteApplicationReferenceDataSourceFluentBuilder
source · pub struct DeleteApplicationReferenceDataSourceFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteApplicationReferenceDataSource.
Deletes a reference data source configuration from the specified SQL-based Kinesis Data Analytics application's configuration.
If the application is running, Kinesis Data Analytics immediately removes the in-application table that you created using the AddApplicationReferenceDataSource operation.
Implementations§
source§impl DeleteApplicationReferenceDataSourceFluentBuilder
impl DeleteApplicationReferenceDataSourceFluentBuilder
sourcepub fn as_input(&self) -> &DeleteApplicationReferenceDataSourceInputBuilder
pub fn as_input(&self) -> &DeleteApplicationReferenceDataSourceInputBuilder
Access the DeleteApplicationReferenceDataSource as a reference.
sourcepub async fn send(
self
) -> Result<DeleteApplicationReferenceDataSourceOutput, SdkError<DeleteApplicationReferenceDataSourceError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteApplicationReferenceDataSourceOutput, SdkError<DeleteApplicationReferenceDataSourceError, 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<DeleteApplicationReferenceDataSourceOutput, DeleteApplicationReferenceDataSourceError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteApplicationReferenceDataSourceOutput, DeleteApplicationReferenceDataSourceError, 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 an existing application.
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.
Trait Implementations§
source§impl Clone for DeleteApplicationReferenceDataSourceFluentBuilder
impl Clone for DeleteApplicationReferenceDataSourceFluentBuilder
source§fn clone(&self) -> DeleteApplicationReferenceDataSourceFluentBuilder
fn clone(&self) -> DeleteApplicationReferenceDataSourceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more