aws_sdk_glue/client/
get_data_catalog_encryption_settings.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 [`GetDataCatalogEncryptionSettings`](crate::operation::get_data_catalog_encryption_settings::builders::GetDataCatalogEncryptionSettingsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`catalog_id(impl Into<String>)`](crate::operation::get_data_catalog_encryption_settings::builders::GetDataCatalogEncryptionSettingsFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::get_data_catalog_encryption_settings::builders::GetDataCatalogEncryptionSettingsFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The ID of the Data Catalog to retrieve the security configuration for. If none is provided, the Amazon Web Services account ID is used by default.</p><br>
7    /// - On success, responds with [`GetDataCatalogEncryptionSettingsOutput`](crate::operation::get_data_catalog_encryption_settings::GetDataCatalogEncryptionSettingsOutput) with field(s):
8    ///   - [`data_catalog_encryption_settings(Option<DataCatalogEncryptionSettings>)`](crate::operation::get_data_catalog_encryption_settings::GetDataCatalogEncryptionSettingsOutput::data_catalog_encryption_settings): <p>The requested security configuration.</p>
9    /// - On failure, responds with [`SdkError<GetDataCatalogEncryptionSettingsError>`](crate::operation::get_data_catalog_encryption_settings::GetDataCatalogEncryptionSettingsError)
10    pub fn get_data_catalog_encryption_settings(
11        &self,
12    ) -> crate::operation::get_data_catalog_encryption_settings::builders::GetDataCatalogEncryptionSettingsFluentBuilder {
13        crate::operation::get_data_catalog_encryption_settings::builders::GetDataCatalogEncryptionSettingsFluentBuilder::new(self.handle.clone())
14    }
15}