aws-sdk-observabilityadmin 1.52.0

AWS SDK for CloudWatch Observability Admin Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateS3TableIntegration`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`encryption(Encryption)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::encryption) / [`set_encryption(Option<Encryption>)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::set_encryption):<br>required: **true**<br><p>The encryption configuration for the S3 Table integration, including the encryption algorithm and KMS key settings.</p><br>
    ///   - [`role_arn(impl Into<String>)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::set_role_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::set_tags):<br>required: **false**<br><p>The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.</p><br>
    /// - On success, responds with [`CreateS3TableIntegrationOutput`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationOutput::arn): <p>The Amazon Resource Name (ARN) of the created S3 Table integration.</p>
    /// - On failure, responds with [`SdkError<CreateS3TableIntegrationError>`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationError)
    pub fn create_s3_table_integration(&self) -> crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder {
        crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::new(self.handle.clone())
    }
}