aws-sdk-cloudwatchlogs 1.119.0

AWS SDK for Amazon CloudWatch Logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateSourceToS3TableIntegration`](crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`AssociateSourceToS3TableIntegrationOutput`](crate::operation::associate_source_to_s3_table_integration::AssociateSourceToS3TableIntegrationOutput) with field(s):
    ///   - [`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>
    /// - On failure, responds with [`SdkError<AssociateSourceToS3TableIntegrationError>`](crate::operation::associate_source_to_s3_table_integration::AssociateSourceToS3TableIntegrationError)
    pub fn associate_source_to_s3_table_integration(
        &self,
    ) -> crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder {
        crate::operation::associate_source_to_s3_table_integration::builders::AssociateSourceToS3TableIntegrationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}