pub struct InstanceNetworkInterface {Show 16 fields
pub association: Option<InstanceNetworkInterfaceAssociation>,
pub attachment: Option<InstanceNetworkInterfaceAttachment>,
pub description: Option<String>,
pub groups: Option<Vec<GroupIdentifier>>,
pub interface_type: Option<String>,
pub ipv_6_addresses: Option<Vec<InstanceIpv6Address>>,
pub mac_address: Option<String>,
pub network_interface_id: Option<String>,
pub owner_id: Option<String>,
pub private_dns_name: Option<String>,
pub private_ip_address: Option<String>,
pub private_ip_addresses: Option<Vec<InstancePrivateIpAddress>>,
pub source_dest_check: Option<bool>,
pub status: Option<String>,
pub subnet_id: Option<String>,
pub vpc_id: Option<String>,
}
Expand description
Describes a network interface.
Fields§
§association: Option<InstanceNetworkInterfaceAssociation>
The association information for an Elastic IPv4 associated with the network interface.
attachment: Option<InstanceNetworkInterfaceAttachment>
The network interface attachment.
description: Option<String>
The description.
groups: Option<Vec<GroupIdentifier>>
One or more security groups.
interface_type: Option<String>
Describes the type of network interface.
Valid values: interface
| efa
| trunk
ipv_6_addresses: Option<Vec<InstanceIpv6Address>>
One or more IPv6 addresses associated with the network interface.
mac_address: Option<String>
The MAC address.
network_interface_id: Option<String>
The ID of the network interface.
owner_id: Option<String>
The ID of the account that created the network interface.
private_dns_name: Option<String>
The private DNS name.
private_ip_address: Option<String>
The IPv4 address of the network interface within the subnet.
private_ip_addresses: Option<Vec<InstancePrivateIpAddress>>
One or more private IPv4 addresses associated with the network interface.
source_dest_check: Option<bool>
Indicates whether source/destination checking is enabled.
status: Option<String>
The status of the network interface.
subnet_id: Option<String>
The ID of the subnet.
vpc_id: Option<String>
The ID of the VPC.
Trait Implementations§
Source§impl Clone for InstanceNetworkInterface
impl Clone for InstanceNetworkInterface
Source§fn clone(&self) -> InstanceNetworkInterface
fn clone(&self) -> InstanceNetworkInterface
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 Debug for InstanceNetworkInterface
impl Debug for InstanceNetworkInterface
Source§impl Default for InstanceNetworkInterface
impl Default for InstanceNetworkInterface
Source§fn default() -> InstanceNetworkInterface
fn default() -> InstanceNetworkInterface
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstanceNetworkInterface
impl PartialEq for InstanceNetworkInterface
impl StructuralPartialEq for InstanceNetworkInterface
Auto Trait Implementations§
impl Freeze for InstanceNetworkInterface
impl RefUnwindSafe for InstanceNetworkInterface
impl Send for InstanceNetworkInterface
impl Sync for InstanceNetworkInterface
impl Unpin for InstanceNetworkInterface
impl UnwindSafe for InstanceNetworkInterface
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