Struct aws_sdk_sesv2::types::DedicatedIp
source · #[non_exhaustive]pub struct DedicatedIp { /* private fields */ }Expand description
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.
Implementations§
source§impl DedicatedIp
impl DedicatedIp
sourcepub fn warmup_status(&self) -> Option<&WarmupStatus>
pub fn warmup_status(&self) -> Option<&WarmupStatus>
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.
sourcepub fn warmup_percentage(&self) -> Option<i32>
pub fn warmup_percentage(&self) -> Option<i32>
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.
source§impl DedicatedIp
impl DedicatedIp
sourcepub fn builder() -> DedicatedIpBuilder
pub fn builder() -> DedicatedIpBuilder
Creates a new builder-style object to manufacture DedicatedIp.
Trait Implementations§
source§impl Clone for DedicatedIp
impl Clone for DedicatedIp
source§fn clone(&self) -> DedicatedIp
fn clone(&self) -> DedicatedIp
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DedicatedIp
impl Debug for DedicatedIp
source§impl PartialEq<DedicatedIp> for DedicatedIp
impl PartialEq<DedicatedIp> for DedicatedIp
source§fn eq(&self, other: &DedicatedIp) -> bool
fn eq(&self, other: &DedicatedIp) -> bool
This method tests for
self and other values to be equal, and is used
by ==.