aws_sdk_sesv2/client/put_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 [`PutDedicatedIpWarmupAttributes`](crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`ip(impl Into<String>)`](crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder::ip) / [`set_ip(Option<String>)`](crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder::set_ip):<br>required: **true**<br><p>The dedicated IP address that you want to update the warm-up attributes for.</p><br>
7 /// - [`warmup_percentage(i32)`](crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder::warmup_percentage) / [`set_warmup_percentage(Option<i32>)`](crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder::set_warmup_percentage):<br>required: **true**<br><p>The warm-up percentage that you want to associate with the dedicated IP address.</p><br>
8 /// - On success, responds with [`PutDedicatedIpWarmupAttributesOutput`](crate::operation::put_dedicated_ip_warmup_attributes::PutDedicatedIpWarmupAttributesOutput)
9 /// - On failure, responds with [`SdkError<PutDedicatedIpWarmupAttributesError>`](crate::operation::put_dedicated_ip_warmup_attributes::PutDedicatedIpWarmupAttributesError)
10 pub fn put_dedicated_ip_warmup_attributes(
11 &self,
12 ) -> crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder {
13 crate::operation::put_dedicated_ip_warmup_attributes::builders::PutDedicatedIpWarmupAttributesFluentBuilder::new(self.handle.clone())
14 }
15}