pub struct InstanceNetworkInterfaceAssociation {
pub ip_owner_id: Option<String>,
pub public_dns_name: Option<String>,
pub public_ip: Option<String>,
}Expand description
Describes association information for an Elastic IP address (IPv4).
Fields§
§ip_owner_id: Option<String>The ID of the owner of the Elastic IP address.
public_dns_name: Option<String>The public DNS name.
public_ip: Option<String>The public IP address or Elastic IP address bound to the network interface.
Trait Implementations§
Source§impl Clone for InstanceNetworkInterfaceAssociation
impl Clone for InstanceNetworkInterfaceAssociation
Source§fn clone(&self) -> InstanceNetworkInterfaceAssociation
fn clone(&self) -> InstanceNetworkInterfaceAssociation
Returns a duplicate 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 Default for InstanceNetworkInterfaceAssociation
impl Default for InstanceNetworkInterfaceAssociation
Source§fn default() -> InstanceNetworkInterfaceAssociation
fn default() -> InstanceNetworkInterfaceAssociation
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstanceNetworkInterfaceAssociation
impl PartialEq for InstanceNetworkInterfaceAssociation
Source§fn eq(&self, other: &InstanceNetworkInterfaceAssociation) -> bool
fn eq(&self, other: &InstanceNetworkInterfaceAssociation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InstanceNetworkInterfaceAssociation
Auto Trait Implementations§
impl Freeze for InstanceNetworkInterfaceAssociation
impl RefUnwindSafe for InstanceNetworkInterfaceAssociation
impl Send for InstanceNetworkInterfaceAssociation
impl Sync for InstanceNetworkInterfaceAssociation
impl Unpin for InstanceNetworkInterfaceAssociation
impl UnwindSafe for InstanceNetworkInterfaceAssociation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more