aws_sdk_observabilityadmin/client/
create_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 [`CreateS3TableIntegration`](crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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>
9    /// - On success, responds with [`CreateS3TableIntegrationOutput`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationOutput) with field(s):
10    ///   - [`arn(Option<String>)`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationOutput::arn): <p>The Amazon Resource Name (ARN) of the created S3 Table integration.</p>
11    /// - On failure, responds with [`SdkError<CreateS3TableIntegrationError>`](crate::operation::create_s3_table_integration::CreateS3TableIntegrationError)
12    pub fn create_s3_table_integration(&self) -> crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder {
13        crate::operation::create_s3_table_integration::builders::CreateS3TableIntegrationFluentBuilder::new(self.handle.clone())
14    }
15}