Struct aws_sdk_ec2::types::PublicIpv4Pool
source · #[non_exhaustive]pub struct PublicIpv4Pool {
pub pool_id: Option<String>,
pub description: Option<String>,
pub pool_address_ranges: Option<Vec<PublicIpv4PoolRange>>,
pub total_address_count: Option<i32>,
pub total_available_address_count: Option<i32>,
pub network_border_group: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes an IPv4 address pool.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pool_id: Option<String>
The ID of the address pool.
description: Option<String>
A description of the address pool.
pool_address_ranges: Option<Vec<PublicIpv4PoolRange>>
The address ranges.
total_address_count: Option<i32>
The total number of addresses.
total_available_address_count: Option<i32>
The total number of available addresses.
network_border_group: Option<String>
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.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.