[][src]Struct rusoto_sesv2::PutDedicatedIpInPoolRequest

pub struct PutDedicatedIpInPoolRequest {
    pub destination_pool_name: String,
    pub ip: String,
}

A request to move a dedicated IP address to a dedicated IP pool.

Fields

destination_pool_name: String

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.

ip: String

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 AWS account.

Trait Implementations

impl Clone for PutDedicatedIpInPoolRequest[src]

impl Debug for PutDedicatedIpInPoolRequest[src]

impl Default for PutDedicatedIpInPoolRequest[src]

impl PartialEq<PutDedicatedIpInPoolRequest> for PutDedicatedIpInPoolRequest[src]

impl Serialize for PutDedicatedIpInPoolRequest[src]

impl StructuralPartialEq for PutDedicatedIpInPoolRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.