1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`PutDedicatedIpInPool`](crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`PutDedicatedIpInPoolOutput`](crate::operation::put_dedicated_ip_in_pool::PutDedicatedIpInPoolOutput)
    /// - On failure, responds with [`SdkError<PutDedicatedIpInPoolError>`](crate::operation::put_dedicated_ip_in_pool::PutDedicatedIpInPoolError)
    pub fn put_dedicated_ip_in_pool(&self) -> crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder {
        crate::operation::put_dedicated_ip_in_pool::builders::PutDedicatedIpInPoolFluentBuilder::new(self.handle.clone())
    }
}