#[non_exhaustive]pub struct LoadBalancerAddress { /* private fields */ }
Expand description
Information about a static IP address for a load balancer.
Implementations§
source§impl LoadBalancerAddress
impl LoadBalancerAddress
sourcepub fn ip_address(&self) -> Option<&str>
pub fn ip_address(&self) -> Option<&str>
The static IP address.
sourcepub fn allocation_id(&self) -> Option<&str>
pub fn allocation_id(&self) -> Option<&str>
[Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer.
sourcepub fn private_i_pv4_address(&self) -> Option<&str>
pub fn private_i_pv4_address(&self) -> Option<&str>
[Network Load Balancers] The private IPv4 address for an internal load balancer.
sourcepub fn i_pv6_address(&self) -> Option<&str>
pub fn i_pv6_address(&self) -> Option<&str>
[Network Load Balancers] The IPv6 address.
source§impl LoadBalancerAddress
impl LoadBalancerAddress
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LoadBalancerAddress
.
Trait Implementations§
source§impl Clone for LoadBalancerAddress
impl Clone for LoadBalancerAddress
source§fn clone(&self) -> LoadBalancerAddress
fn clone(&self) -> LoadBalancerAddress
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 LoadBalancerAddress
impl Debug for LoadBalancerAddress
source§impl PartialEq<LoadBalancerAddress> for LoadBalancerAddress
impl PartialEq<LoadBalancerAddress> for LoadBalancerAddress
source§fn eq(&self, other: &LoadBalancerAddress) -> bool
fn eq(&self, other: &LoadBalancerAddress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.