aws_sdk_observabilityadmin/client/get_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 [`GetS3TableIntegration`](crate::operation::get_s3_table_integration::builders::GetS3TableIntegrationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::get_s3_table_integration::builders::GetS3TableIntegrationFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_s3_table_integration::builders::GetS3TableIntegrationFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the S3 Table integration to retrieve.</p><br>
7 /// - On success, responds with [`GetS3TableIntegrationOutput`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput) with field(s):
8 /// - [`arn(Option<String>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::arn): <p>The Amazon Resource Name (ARN) of the S3 Table integration.</p>
9 /// - [`role_arn(Option<String>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role used by the S3 Table integration.</p>
10 /// - [`status(Option<IntegrationStatus>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::status): <p>The current status of the S3 Table integration.</p>
11 /// - [`encryption(Option<Encryption>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::encryption): <p>The encryption configuration for the S3 Table integration.</p>
12 /// - [`destination_table_bucket_arn(Option<String>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::destination_table_bucket_arn): <p>The Amazon Resource Name (ARN) of the S3 bucket used as the destination for the table data.</p>
13 /// - [`created_time_stamp(Option<i64>)`](crate::operation::get_s3_table_integration::GetS3TableIntegrationOutput::created_time_stamp): <p>The timestamp when the S3 Table integration was created.</p>
14 /// - On failure, responds with [`SdkError<GetS3TableIntegrationError>`](crate::operation::get_s3_table_integration::GetS3TableIntegrationError)
15 pub fn get_s3_table_integration(&self) -> crate::operation::get_s3_table_integration::builders::GetS3TableIntegrationFluentBuilder {
16 crate::operation::get_s3_table_integration::builders::GetS3TableIntegrationFluentBuilder::new(self.handle.clone())
17 }
18}