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 [`PutDataCatalogEncryptionSettings`](crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`catalog_id(impl Into<String>)`](crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The ID of the Data Catalog to set the security configuration for. If none is provided, the Amazon Web Services account ID is used by default.</p><br>
    ///   - [`data_catalog_encryption_settings(DataCatalogEncryptionSettings)`](crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder::data_catalog_encryption_settings) / [`set_data_catalog_encryption_settings(Option<DataCatalogEncryptionSettings>)`](crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder::set_data_catalog_encryption_settings):<br>required: **true**<br><p>The security configuration to set.</p><br>
    /// - On success, responds with [`PutDataCatalogEncryptionSettingsOutput`](crate::operation::put_data_catalog_encryption_settings::PutDataCatalogEncryptionSettingsOutput)
    /// - On failure, responds with [`SdkError<PutDataCatalogEncryptionSettingsError>`](crate::operation::put_data_catalog_encryption_settings::PutDataCatalogEncryptionSettingsError)
    pub fn put_data_catalog_encryption_settings(
        &self,
    ) -> crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder {
        crate::operation::put_data_catalog_encryption_settings::builders::PutDataCatalogEncryptionSettingsFluentBuilder::new(self.handle.clone())
    }
}