Struct aws_sdk_ec2::model::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
sourceimpl 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.
sourceimpl PublicIpv4Pool
impl PublicIpv4Pool
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PublicIpv4Pool
.
Trait Implementations
sourceimpl Clone for PublicIpv4Pool
impl Clone for PublicIpv4Pool
sourcefn clone(&self) -> PublicIpv4Pool
fn clone(&self) -> PublicIpv4Pool
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PublicIpv4Pool
impl Debug for PublicIpv4Pool
sourceimpl PartialEq<PublicIpv4Pool> for PublicIpv4Pool
impl PartialEq<PublicIpv4Pool> for PublicIpv4Pool
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &PublicIpv4Pool) -> bool
fn ne(&self, other: &PublicIpv4Pool) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more