Struct aws_sdk_ec2::model::IpamPoolCidr
source · #[non_exhaustive]pub struct IpamPoolCidr { /* private fields */ }
Expand description
A CIDR provisioned to an IPAM pool.
Implementations§
source§impl IpamPoolCidr
impl IpamPoolCidr
sourcepub fn cidr(&self) -> Option<&str>
pub fn cidr(&self) -> Option<&str>
The CIDR provisioned to the IPAM pool. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23
. An IPv6 CIDR example is 2001:DB8::/32
.
sourcepub fn state(&self) -> Option<&IpamPoolCidrState>
pub fn state(&self) -> Option<&IpamPoolCidrState>
The state of the CIDR.
sourcepub fn failure_reason(&self) -> Option<&IpamPoolCidrFailureReason>
pub fn failure_reason(&self) -> Option<&IpamPoolCidrFailureReason>
Details related to why an IPAM pool CIDR failed to be provisioned.
source§impl IpamPoolCidr
impl IpamPoolCidr
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture IpamPoolCidr
.
Trait Implementations§
source§impl Clone for IpamPoolCidr
impl Clone for IpamPoolCidr
source§fn clone(&self) -> IpamPoolCidr
fn clone(&self) -> IpamPoolCidr
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 IpamPoolCidr
impl Debug for IpamPoolCidr
source§impl PartialEq<IpamPoolCidr> for IpamPoolCidr
impl PartialEq<IpamPoolCidr> for IpamPoolCidr
source§fn eq(&self, other: &IpamPoolCidr) -> bool
fn eq(&self, other: &IpamPoolCidr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.