Struct aws_sdk_ec2::types::PublicIpv4Pool
source · #[non_exhaustive]pub struct PublicIpv4Pool { /* private fields */ }
Expand description
Describes an IPv4 address pool.
Implementations§
source§impl PublicIpv4Pool
impl PublicIpv4Pool
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the address pool.
sourcepub fn pool_address_ranges(&self) -> Option<&[PublicIpv4PoolRange]>
pub fn pool_address_ranges(&self) -> Option<&[PublicIpv4PoolRange]>
The address ranges.
sourcepub fn total_address_count(&self) -> Option<i32>
pub fn total_address_count(&self) -> Option<i32>
The total number of addresses.
sourcepub fn total_available_address_count(&self) -> Option<i32>
pub fn total_available_address_count(&self) -> Option<i32>
The total number of available addresses.
sourcepub fn network_border_group(&self) -> Option<&str>
pub fn network_border_group(&self) -> Option<&str>
The name of the location from which the address pool is advertised. A network border group is a unique set of Availability Zones or Local Zones from where Amazon Web Services advertises public IP addresses.
Any tags for the address pool.
source§impl PublicIpv4Pool
impl PublicIpv4Pool
sourcepub fn builder() -> PublicIpv4PoolBuilder
pub fn builder() -> PublicIpv4PoolBuilder
Creates a new builder-style object to manufacture PublicIpv4Pool
.
Trait Implementations§
source§impl Clone for PublicIpv4Pool
impl Clone for PublicIpv4Pool
source§fn clone(&self) -> PublicIpv4Pool
fn clone(&self) -> PublicIpv4Pool
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 PublicIpv4Pool
impl Debug for PublicIpv4Pool
source§impl PartialEq<PublicIpv4Pool> for PublicIpv4Pool
impl PartialEq<PublicIpv4Pool> for PublicIpv4Pool
source§fn eq(&self, other: &PublicIpv4Pool) -> bool
fn eq(&self, other: &PublicIpv4Pool) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PublicIpv4Pool
Auto Trait Implementations§
impl RefUnwindSafe for PublicIpv4Pool
impl Send for PublicIpv4Pool
impl Sync for PublicIpv4Pool
impl Unpin for PublicIpv4Pool
impl UnwindSafe for PublicIpv4Pool
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more