aws_sdk_sesv2/client/put_account_dedicated_ip_warmup_attributes.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 [`PutAccountDedicatedIpWarmupAttributes`](crate::operation::put_account_dedicated_ip_warmup_attributes::builders::PutAccountDedicatedIpWarmupAttributesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`auto_warmup_enabled(bool)`](crate::operation::put_account_dedicated_ip_warmup_attributes::builders::PutAccountDedicatedIpWarmupAttributesFluentBuilder::auto_warmup_enabled) / [`set_auto_warmup_enabled(Option<bool>)`](crate::operation::put_account_dedicated_ip_warmup_attributes::builders::PutAccountDedicatedIpWarmupAttributesFluentBuilder::set_auto_warmup_enabled):<br>required: **false**<br><p>Enables or disables the automatic warm-up feature for dedicated IP addresses that are associated with your Amazon SES account in the current Amazon Web Services Region. Set to <code>true</code> to enable the automatic warm-up feature, or set to <code>false</code> to disable it.</p><br>
7 /// - On success, responds with [`PutAccountDedicatedIpWarmupAttributesOutput`](crate::operation::put_account_dedicated_ip_warmup_attributes::PutAccountDedicatedIpWarmupAttributesOutput)
8 /// - On failure, responds with [`SdkError<PutAccountDedicatedIpWarmupAttributesError>`](crate::operation::put_account_dedicated_ip_warmup_attributes::PutAccountDedicatedIpWarmupAttributesError)
9 pub fn put_account_dedicated_ip_warmup_attributes(
10 &self,
11 ) -> crate::operation::put_account_dedicated_ip_warmup_attributes::builders::PutAccountDedicatedIpWarmupAttributesFluentBuilder {
12 crate::operation::put_account_dedicated_ip_warmup_attributes::builders::PutAccountDedicatedIpWarmupAttributesFluentBuilder::new(
13 self.handle.clone(),
14 )
15 }
16}