aws_sdk_cloudwatchlogs/client/disassociate_source_from_s3_table_integration.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DisassociateSourceFromS3TableIntegration`](crate::operation::disassociate_source_from_s3_table_integration::builders::DisassociateSourceFromS3TableIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identifier(impl Into<String>)`](crate::operation::disassociate_source_from_s3_table_integration::builders::DisassociateSourceFromS3TableIntegrationFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::disassociate_source_from_s3_table_integration::builders::DisassociateSourceFromS3TableIntegrationFluentBuilder::set_identifier):<br>required: **true**<br><p>The unique identifier of the association to remove between the data source and S3 Table Integration.</p><br>
7 /// - On success, responds with [`DisassociateSourceFromS3TableIntegrationOutput`](crate::operation::disassociate_source_from_s3_table_integration::DisassociateSourceFromS3TableIntegrationOutput) with field(s):
8 /// - [`identifier(Option<String>)`](crate::operation::disassociate_source_from_s3_table_integration::DisassociateSourceFromS3TableIntegrationOutput::identifier): <p>The unique identifier of the association that was removed.</p>
9 /// - On failure, responds with [`SdkError<DisassociateSourceFromS3TableIntegrationError>`](crate::operation::disassociate_source_from_s3_table_integration::DisassociateSourceFromS3TableIntegrationError)
10 pub fn disassociate_source_from_s3_table_integration(
11 &self,
12 ) -> crate::operation::disassociate_source_from_s3_table_integration::builders::DisassociateSourceFromS3TableIntegrationFluentBuilder {
13 crate::operation::disassociate_source_from_s3_table_integration::builders::DisassociateSourceFromS3TableIntegrationFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}