Struct aws_sdk_ec2::model::NetworkInterface [−][src]
#[non_exhaustive]pub struct NetworkInterface {Show 24 fields
pub association: Option<NetworkInterfaceAssociation>,
pub attachment: Option<NetworkInterfaceAttachment>,
pub availability_zone: Option<String>,
pub description: Option<String>,
pub groups: Option<Vec<GroupIdentifier>>,
pub interface_type: Option<NetworkInterfaceType>,
pub ipv6_addresses: Option<Vec<NetworkInterfaceIpv6Address>>,
pub mac_address: Option<String>,
pub network_interface_id: Option<String>,
pub outpost_arn: 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<NetworkInterfacePrivateIpAddress>>,
pub ipv4_prefixes: Option<Vec<Ipv4PrefixSpecification>>,
pub ipv6_prefixes: Option<Vec<Ipv6PrefixSpecification>>,
pub requester_id: Option<String>,
pub requester_managed: Option<bool>,
pub source_dest_check: Option<bool>,
pub status: Option<NetworkInterfaceStatus>,
pub subnet_id: Option<String>,
pub tag_set: Option<Vec<Tag>>,
pub vpc_id: Option<String>,
pub deny_all_igw_traffic: Option<bool>,
}
Expand description
Describes a network interface.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.association: Option<NetworkInterfaceAssociation>
The association information for an Elastic IP address (IPv4) associated with the network interface.
attachment: Option<NetworkInterfaceAttachment>
The network interface attachment.
availability_zone: Option<String>
The Availability Zone.
description: Option<String>
A description.
groups: Option<Vec<GroupIdentifier>>
Any security groups for the network interface.
interface_type: Option<NetworkInterfaceType>
The type of network interface.
ipv6_addresses: Option<Vec<NetworkInterfaceIpv6Address>>
The 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.
outpost_arn: Option<String>
The Amazon Resource Name (ARN) of the Outpost.
owner_id: Option<String>
The Amazon Web Services account ID of the owner of 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<NetworkInterfacePrivateIpAddress>>
The private IPv4 addresses associated with the network interface.
ipv4_prefixes: Option<Vec<Ipv4PrefixSpecification>>
The IPv4 prefixes that are assigned to the network interface.
ipv6_prefixes: Option<Vec<Ipv6PrefixSpecification>>
The IPv6 prefixes that are assigned to the network interface.
requester_id: Option<String>
The alias or Amazon Web Services account ID of the principal or service that created the network interface.
requester_managed: Option<bool>
Indicates whether the network interface is being managed by Amazon Web Services.
source_dest_check: Option<bool>
Indicates whether source/destination checking is enabled.
status: Option<NetworkInterfaceStatus>
The status of the network interface.
subnet_id: Option<String>
The ID of the subnet.
tag_set: Option<Vec<Tag>>
Any tags assigned to the network interface.
vpc_id: Option<String>
The ID of the VPC.
deny_all_igw_traffic: Option<bool>
Indicates whether a network interface with an IPv6 address is unreachable from the
public internet. If the value is true
, inbound traffic from the internet
is dropped and you cannot assign an elastic IP address to the network interface. The
network interface is reachable from peered VPCs and resources connected through a
transit gateway, including on-premises networks.
Implementations
The association information for an Elastic IP address (IPv4) associated with the network interface.
The network interface attachment.
The Availability Zone.
A description.
Any security groups for the network interface.
The type of network interface.
The IPv6 addresses associated with the network interface.
The MAC address.
The ID of the network interface.
The Amazon Resource Name (ARN) of the Outpost.
The Amazon Web Services account ID of the owner of the network interface.
The private DNS name.
The IPv4 address of the network interface within the subnet.
The private IPv4 addresses associated with the network interface.
The IPv4 prefixes that are assigned to the network interface.
The IPv6 prefixes that are assigned to the network interface.
The alias or Amazon Web Services account ID of the principal or service that created the network interface.
Indicates whether the network interface is being managed by Amazon Web Services.
Indicates whether source/destination checking is enabled.
The status of the network interface.
Indicates whether a network interface with an IPv6 address is unreachable from the
public internet. If the value is true
, inbound traffic from the internet
is dropped and you cannot assign an elastic IP address to the network interface. The
network interface is reachable from peered VPCs and resources connected through a
transit gateway, including on-premises networks.
Creates a new builder-style object to manufacture NetworkInterface
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for NetworkInterface
impl Send for NetworkInterface
impl Sync for NetworkInterface
impl Unpin for NetworkInterface
impl UnwindSafe for NetworkInterface
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more