[][src]Struct rusoto_ec2::PublicIpv4Pool

pub struct PublicIpv4Pool {
    pub description: Option<String>,
    pub network_border_group: Option<String>,
    pub pool_address_ranges: Option<Vec<PublicIpv4PoolRange>>,
    pub pool_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub total_address_count: Option<i64>,
    pub total_available_address_count: Option<i64>,
}

Describes an IPv4 address pool.

Fields

description: Option<String>

A description of the address pool.

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 AWS advertises public IP addresses.

pool_address_ranges: Option<Vec<PublicIpv4PoolRange>>

The address ranges.

pool_id: Option<String>

The ID of the address pool.

tags: Option<Vec<Tag>>

Any tags for the address pool.

total_address_count: Option<i64>

The total number of addresses.

total_available_address_count: Option<i64>

The total number of available addresses.

Trait Implementations

impl Clone for PublicIpv4Pool[src]

impl Debug for PublicIpv4Pool[src]

impl Default for PublicIpv4Pool[src]

impl PartialEq<PublicIpv4Pool> for PublicIpv4Pool[src]

impl StructuralPartialEq for PublicIpv4Pool[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.