aws_sdk_ses/client/update_configuration_set_sending_enabled.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 [`UpdateConfigurationSetSendingEnabled`](crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`UpdateConfigurationSetSendingEnabledOutput`](crate::operation::update_configuration_set_sending_enabled::UpdateConfigurationSetSendingEnabledOutput)
9 /// - On failure, responds with [`SdkError<UpdateConfigurationSetSendingEnabledError>`](crate::operation::update_configuration_set_sending_enabled::UpdateConfigurationSetSendingEnabledError)
10 pub fn update_configuration_set_sending_enabled(
11 &self,
12 ) -> crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder {
13 crate::operation::update_configuration_set_sending_enabled::builders::UpdateConfigurationSetSendingEnabledFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}