aws_sdk_s3tables/client/
get_table_encryption.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 [`GetTableEncryption`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`table_bucket_arn(impl Into<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::table_bucket_arn) / [`set_table_bucket_arn(Option<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::set_table_bucket_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the table bucket containing the table.</p><br>
7    ///   - [`namespace(impl Into<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::set_namespace):<br>required: **true**<br><p>The namespace associated with the table.</p><br>
8    ///   - [`name(impl Into<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::set_name):<br>required: **true**<br><p>The name of the table.</p><br>
9    /// - On success, responds with [`GetTableEncryptionOutput`](crate::operation::get_table_encryption::GetTableEncryptionOutput) with field(s):
10    ///   - [`encryption_configuration(Option<EncryptionConfiguration>)`](crate::operation::get_table_encryption::GetTableEncryptionOutput::encryption_configuration): <p>The encryption configuration for the table.</p>
11    /// - On failure, responds with [`SdkError<GetTableEncryptionError>`](crate::operation::get_table_encryption::GetTableEncryptionError)
12    pub fn get_table_encryption(&self) -> crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder {
13        crate::operation::get_table_encryption::builders::GetTableEncryptionFluentBuilder::new(self.handle.clone())
14    }
15}