Struct rusoto_ec2::InstanceNetworkInterface [] [src]

pub struct InstanceNetworkInterface {
    pub association: Option<InstanceNetworkInterfaceAssociation>,
    pub attachment: Option<InstanceNetworkInterfaceAttachment>,
    pub description: Option<String>,
    pub groups: Option<Vec<GroupIdentifier>>,
    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>,
}

Describes a network interface.

Fields

The association information for an Elastic IPv4 associated with the network interface.

The network interface attachment.

The description.

One or more security groups.

One or more IPv6 addresses associated with the network interface.

The MAC address.

The ID of the network interface.

The ID of the AWS account that created the network interface.

The private DNS name.

The IPv4 address of the network interface within the subnet.

One or more private IPv4 addresses associated with the network interface.

Indicates whether to validate network traffic to or from this network interface.

The status of the network interface.

The ID of the subnet.

The ID of the VPC.

Trait Implementations

impl Default for InstanceNetworkInterface
[src]

Returns the "default value" for a type. Read more

impl Debug for InstanceNetworkInterface
[src]

Formats the value using the given formatter.

impl Clone for InstanceNetworkInterface
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more