aws_sdk_sesv2/client/
put_dedicated_ip_in_pool.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 [`PutDedicatedIpInPool`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ip(impl Into<String>)`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::ip) / [`set_ip(Option<String>)`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::set_ip):<br>required: **true**<br><p>The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP address that's associated with your Amazon Web Services account.</p><br>
7    ///   - [`destination_pool_name(impl Into<String>)`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::destination_pool_name) / [`set_destination_pool_name(Option<String>)`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::set_destination_pool_name):<br>required: **true**<br><p>The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that already exists.</p><br>
8    /// - On success, responds with [`PutDedicatedIpInPoolOutput`](crate::operation::put_dedicated_ip_in_pool::PutDedicatedIpInPoolOutput)
9    /// - On failure, responds with [`SdkError<PutDedicatedIpInPoolError>`](crate::operation::put_dedicated_ip_in_pool::PutDedicatedIpInPoolError)
10    pub fn put_dedicated_ip_in_pool(&self) -> crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder {
11        crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::new(self.handle.clone())
12    }
13}