aws_sdk_sesv2/client/put_dedicated_ip_pool_scaling_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 [`PutDedicatedIpPoolScalingAttributes`](crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`pool_name(impl Into<String>)`](crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder::pool_name) / [`set_pool_name(Option<String>)`](crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder::set_pool_name):<br>required: **true**<br><p>The name of the dedicated IP pool.</p><br>
7 /// - [`scaling_mode(ScalingMode)`](crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder::scaling_mode) / [`set_scaling_mode(Option<ScalingMode>)`](crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder::set_scaling_mode):<br>required: **true**<br><p>The scaling mode to apply to the dedicated IP pool.</p><note> <p>Changing the scaling mode from <code>MANAGED</code> to <code>STANDARD</code> is not supported.</p> </note><br>
8 /// - On success, responds with [`PutDedicatedIpPoolScalingAttributesOutput`](crate::operation::put_dedicated_ip_pool_scaling_attributes::PutDedicatedIpPoolScalingAttributesOutput)
9 /// - On failure, responds with [`SdkError<PutDedicatedIpPoolScalingAttributesError>`](crate::operation::put_dedicated_ip_pool_scaling_attributes::PutDedicatedIpPoolScalingAttributesError)
10 pub fn put_dedicated_ip_pool_scaling_attributes(
11 &self,
12 ) -> crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder {
13 crate::operation::put_dedicated_ip_pool_scaling_attributes::builders::PutDedicatedIpPoolScalingAttributesFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}