#[non_exhaustive]pub struct NetworkInterfacePrivateIpAddress { /* private fields */ }
Expand description
Describes the private IPv4 address of a network interface.
Implementations§
source§impl NetworkInterfacePrivateIpAddress
impl NetworkInterfacePrivateIpAddress
sourcepub fn association(&self) -> Option<&NetworkInterfaceAssociation>
pub fn association(&self) -> Option<&NetworkInterfaceAssociation>
The association information for an Elastic IP address (IPv4) associated with the network interface.
sourcepub fn primary(&self) -> Option<bool>
pub fn primary(&self) -> Option<bool>
Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.
sourcepub fn private_dns_name(&self) -> Option<&str>
pub fn private_dns_name(&self) -> Option<&str>
The private DNS name.
sourcepub fn private_ip_address(&self) -> Option<&str>
pub fn private_ip_address(&self) -> Option<&str>
The private IPv4 address.
source§impl NetworkInterfacePrivateIpAddress
impl NetworkInterfacePrivateIpAddress
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInterfacePrivateIpAddress
.
Trait Implementations§
source§impl Clone for NetworkInterfacePrivateIpAddress
impl Clone for NetworkInterfacePrivateIpAddress
source§fn clone(&self) -> NetworkInterfacePrivateIpAddress
fn clone(&self) -> NetworkInterfacePrivateIpAddress
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 PartialEq<NetworkInterfacePrivateIpAddress> for NetworkInterfacePrivateIpAddress
impl PartialEq<NetworkInterfacePrivateIpAddress> for NetworkInterfacePrivateIpAddress
source§fn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
fn eq(&self, other: &NetworkInterfacePrivateIpAddress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.