[][src]Struct rusoto_sesv2::DedicatedIp

pub struct DedicatedIp {
    pub ip: String,
    pub pool_name: Option<String>,
    pub warmup_percentage: i64,
    pub warmup_status: String,
}

Contains information about a dedicated IP address that is associated with your Amazon SES account.

To learn more about requesting dedicated IP addresses, see Requesting and Relinquishing Dedicated IP Addresses in the Amazon SES Developer Guide.

Fields

ip: String

An IPv4 address.

pool_name: Option<String>

The name of the dedicated IP pool that the IP address is associated with.

warmup_percentage: i64

Indicates how complete the dedicated IP warm-up process is. When this value equals 1, the address has completed the warm-up process and is ready for use.

warmup_status: String

The warm-up status of a dedicated IP address. The status can have one of the following values:

  • IN_PROGRESS – The IP address isn't ready to use because the dedicated IP warm-up process is ongoing.

  • DONE – The dedicated IP warm-up process is complete, and the IP address is ready to use.

Trait Implementations

impl Clone for DedicatedIp[src]

impl Debug for DedicatedIp[src]

impl Default for DedicatedIp[src]

impl<'de> Deserialize<'de> for DedicatedIp[src]

impl PartialEq<DedicatedIp> for DedicatedIp[src]

impl StructuralPartialEq for DedicatedIp[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.