1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateTableStorageOptimizer`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`catalog_id(impl Into<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::catalog_id) / [`set_catalog_id(Option<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::set_catalog_id):<br>required: **false**<br><p>The Catalog ID of the table.</p><br>
    ///   - [`database_name(impl Into<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::database_name) / [`set_database_name(Option<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::set_database_name):<br>required: **true**<br><p>Name of the database where the table is present.</p><br>
    ///   - [`table_name(impl Into<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::table_name) / [`set_table_name(Option<String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::set_table_name):<br>required: **true**<br><p>Name of the table for which to enable the storage optimizer.</p><br>
    ///   - [`storage_optimizer_config(OptimizerType, HashMap::<String, String>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::storage_optimizer_config) / [`set_storage_optimizer_config(Option<HashMap::<OptimizerType, HashMap::<String, String>>>)`](crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::set_storage_optimizer_config):<br>required: **true**<br><p>Name of the table for which to enable the storage optimizer.</p><br>
    /// - On success, responds with [`UpdateTableStorageOptimizerOutput`](crate::operation::update_table_storage_optimizer::UpdateTableStorageOptimizerOutput) with field(s):
    ///   - [`result(Option<String>)`](crate::operation::update_table_storage_optimizer::UpdateTableStorageOptimizerOutput::result): <p>A response indicating the success of failure of the operation.</p>
    /// - On failure, responds with [`SdkError<UpdateTableStorageOptimizerError>`](crate::operation::update_table_storage_optimizer::UpdateTableStorageOptimizerError)
    pub fn update_table_storage_optimizer(
        &self,
    ) -> crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder {
        crate::operation::update_table_storage_optimizer::builders::UpdateTableStorageOptimizerFluentBuilder::new(self.handle.clone())
    }
}