aws_sdk_cloudwatchlogs/client/associate_source_to_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 [`AssociateSourceToS3TableIntegration`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`integration_arn(impl Into<String>)`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::integration_arn) / [`set_integration_arn(Option<String>)`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::set_integration_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the S3 Table Integration to associate the data source with.</p><br>
7 /// - [`data_source(DataSource)`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::data_source) / [`set_data_source(Option<DataSource>)`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::set_data_source):<br>required: **true**<br><p>The data source to associate with the S3 Table Integration. Contains the name and type of the data source.</p><br>
8 /// - On success, responds with [`AssociateSourceToS3TableIntegrationOutput`](crate::operation::associate_source_to_s3_table_integration::AssociateSourceToS3TableIntegrationOutput) with field(s):
9 /// - [`identifier(Option<String>)`](crate::operation::associate_source_to_s3_table_integration::AssociateSourceToS3TableIntegrationOutput::identifier): <p>The unique identifier for the association between the data source and S3 Table Integration.</p>
10 /// - On failure, responds with [`SdkError<AssociateSourceToS3TableIntegrationError>`](crate::operation::associate_source_to_s3_table_integration::AssociateSourceToS3TableIntegrationError)
11 pub fn associate_source_to_s3_table_integration(
12 &self,
13 ) -> crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder {
14 crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::new(
15 self.handle.clone(),
16 )
17 }
18}