#[non_exhaustive]pub struct LoadBalancerAddress { /* private fields */ }
Expand description
Information about a static IP address for a load balancer.
Implementations
sourceimpl 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.
sourceimpl LoadBalancerAddress
impl LoadBalancerAddress
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LoadBalancerAddress
.
Trait Implementations
sourceimpl Clone for LoadBalancerAddress
impl Clone for LoadBalancerAddress
sourcefn clone(&self) -> LoadBalancerAddress
fn clone(&self) -> LoadBalancerAddress
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 moresourceimpl Debug for LoadBalancerAddress
impl Debug for LoadBalancerAddress
sourceimpl PartialEq<LoadBalancerAddress> for LoadBalancerAddress
impl PartialEq<LoadBalancerAddress> for LoadBalancerAddress
sourcefn eq(&self, other: &LoadBalancerAddress) -> bool
fn eq(&self, other: &LoadBalancerAddress) -> bool
impl StructuralPartialEq for LoadBalancerAddress
Auto Trait Implementations
impl RefUnwindSafe for LoadBalancerAddress
impl Send for LoadBalancerAddress
impl Sync for LoadBalancerAddress
impl Unpin for LoadBalancerAddress
impl UnwindSafe for LoadBalancerAddress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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