1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateConfigurationSetSendingEnabled`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`configuration_set_name(impl Into<String>)`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::configuration_set_name) / [`set_configuration_set_name(Option<String>)`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::set_configuration_set_name):<br>required: **true**<br><p>The name of the configuration set to update.</p><br>
    ///   - [`enabled(bool)`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::enabled) / [`set_enabled(Option<bool>)`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::set_enabled):<br>required: **true**<br><p>Describes whether email sending is enabled or disabled for the configuration set.</p><br>
    /// - On success, responds with [`UpdateConfigurationSetSendingEnabledOutput`](crate::operation::update_configuration_set_sending_enabled::UpdateConfigurationSetSendingEnabledOutput)
    /// - On failure, responds with [`SdkError<UpdateConfigurationSetSendingEnabledError>`](crate::operation::update_configuration_set_sending_enabled::UpdateConfigurationSetSendingEnabledError)
    pub fn update_configuration_set_sending_enabled(
        &self,
    ) -> crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder {
        crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::new(
            self.handle.clone(),
        )
    }
}