#[non_exhaustive]pub struct CreateNetworkInterfaceInput {Show 17 fields
pub description: Option<String>,
pub dry_run: Option<bool>,
pub groups: Option<Vec<String>>,
pub ipv6_address_count: Option<i32>,
pub ipv6_addresses: Option<Vec<InstanceIpv6Address>>,
pub private_ip_address: Option<String>,
pub private_ip_addresses: Option<Vec<PrivateIpAddressSpecification>>,
pub secondary_private_ip_address_count: Option<i32>,
pub ipv4_prefixes: Option<Vec<Ipv4PrefixSpecificationRequest>>,
pub ipv4_prefix_count: Option<i32>,
pub ipv6_prefixes: Option<Vec<Ipv6PrefixSpecificationRequest>>,
pub ipv6_prefix_count: Option<i32>,
pub interface_type: Option<NetworkInterfaceCreationType>,
pub subnet_id: Option<String>,
pub tag_specifications: Option<Vec<TagSpecification>>,
pub client_token: Option<String>,
pub enable_primary_ipv6: Option<bool>,
}
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.description: Option<String>
A description for the network interface.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
groups: Option<Vec<String>>
The IDs of one or more security groups.
ipv6_address_count: Option<i32>
The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range.
You can't specify a count of IPv6 addresses using this parameter if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
If your subnet has the AssignIpv6AddressOnCreation
attribute set, you can override that setting by specifying 0 as the IPv6 address count.
ipv6_addresses: Option<Vec<InstanceIpv6Address>>
The IPv6 addresses from the IPv6 CIDR block range of your subnet.
You can't specify IPv6 addresses using this parameter if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
private_ip_address: Option<String>
The primary private IPv4 address of the network interface. If you don't specify an IPv4 address, Amazon EC2 selects one for you from the subnet's IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses
as primary (only one IP address can be designated as primary).
private_ip_addresses: Option<Vec<PrivateIpAddressSpecification>>
The private IPv4 addresses.
You can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
secondary_private_ip_address_count: Option<i32>
The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses
.
You can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
ipv4_prefixes: Option<Vec<Ipv4PrefixSpecificationRequest>>
The IPv4 prefixes assigned to the network interface.
You can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
ipv4_prefix_count: Option<i32>
The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface.
You can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
ipv6_prefixes: Option<Vec<Ipv6PrefixSpecificationRequest>>
The IPv6 prefixes assigned to the network interface.
You can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
ipv6_prefix_count: Option<i32>
The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface.
You can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
interface_type: Option<NetworkInterfaceCreationType>
The type of network interface. The default is interface
.
The only supported values are interface
, efa
, and trunk
.
subnet_id: Option<String>
The ID of the subnet to associate with the network interface.
tag_specifications: Option<Vec<TagSpecification>>
The tags to apply to the new network interface.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
enable_primary_ipv6: Option<bool>
If you’re creating a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
Implementations§
source§impl CreateNetworkInterfaceInput
impl CreateNetworkInterfaceInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the network interface.
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn groups(&self) -> &[String]
pub fn groups(&self) -> &[String]
The IDs of one or more security groups.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .groups.is_none()
.
sourcepub fn ipv6_address_count(&self) -> Option<i32>
pub fn ipv6_address_count(&self) -> Option<i32>
The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range.
You can't specify a count of IPv6 addresses using this parameter if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
If your subnet has the AssignIpv6AddressOnCreation
attribute set, you can override that setting by specifying 0 as the IPv6 address count.
sourcepub fn ipv6_addresses(&self) -> &[InstanceIpv6Address]
pub fn ipv6_addresses(&self) -> &[InstanceIpv6Address]
The IPv6 addresses from the IPv6 CIDR block range of your subnet.
You can't specify IPv6 addresses using this parameter if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ipv6_addresses.is_none()
.
sourcepub fn private_ip_address(&self) -> Option<&str>
pub fn private_ip_address(&self) -> Option<&str>
The primary private IPv4 address of the network interface. If you don't specify an IPv4 address, Amazon EC2 selects one for you from the subnet's IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses
as primary (only one IP address can be designated as primary).
sourcepub fn private_ip_addresses(&self) -> &[PrivateIpAddressSpecification]
pub fn private_ip_addresses(&self) -> &[PrivateIpAddressSpecification]
The private IPv4 addresses.
You can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .private_ip_addresses.is_none()
.
sourcepub fn secondary_private_ip_address_count(&self) -> Option<i32>
pub fn secondary_private_ip_address_count(&self) -> Option<i32>
The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses
.
You can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
sourcepub fn ipv4_prefixes(&self) -> &[Ipv4PrefixSpecificationRequest]
pub fn ipv4_prefixes(&self) -> &[Ipv4PrefixSpecificationRequest]
The IPv4 prefixes assigned to the network interface.
You can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ipv4_prefixes.is_none()
.
sourcepub fn ipv4_prefix_count(&self) -> Option<i32>
pub fn ipv4_prefix_count(&self) -> Option<i32>
The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface.
You can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
sourcepub fn ipv6_prefixes(&self) -> &[Ipv6PrefixSpecificationRequest]
pub fn ipv6_prefixes(&self) -> &[Ipv6PrefixSpecificationRequest]
The IPv6 prefixes assigned to the network interface.
You can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ipv6_prefixes.is_none()
.
sourcepub fn ipv6_prefix_count(&self) -> Option<i32>
pub fn ipv6_prefix_count(&self) -> Option<i32>
The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface.
You can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
sourcepub fn interface_type(&self) -> Option<&NetworkInterfaceCreationType>
pub fn interface_type(&self) -> Option<&NetworkInterfaceCreationType>
The type of network interface. The default is interface
.
The only supported values are interface
, efa
, and trunk
.
sourcepub fn subnet_id(&self) -> Option<&str>
pub fn subnet_id(&self) -> Option<&str>
The ID of the subnet to associate with the network interface.
sourcepub fn tag_specifications(&self) -> &[TagSpecification]
pub fn tag_specifications(&self) -> &[TagSpecification]
The tags to apply to the new network interface.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tag_specifications.is_none()
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
sourcepub fn enable_primary_ipv6(&self) -> Option<bool>
pub fn enable_primary_ipv6(&self) -> Option<bool>
If you’re creating a network interface in a dual-stack or IPv6-only subnet, you have the option to assign a primary IPv6 IP address. A primary IPv6 address is an IPv6 GUA address associated with an ENI that you have enabled to use a primary IPv6 address. Use this option if the instance that this ENI will be attached to relies on its IPv6 address not changing. Amazon Web Services will automatically assign an IPv6 address associated with the ENI attached to your instance to be the primary IPv6 address. Once you enable an IPv6 GUA address to be a primary IPv6, you cannot disable it. When you enable an IPv6 GUA address to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the instance is terminated or the network interface is detached. If you have multiple IPv6 addresses associated with an ENI attached to your instance and you enable a primary IPv6 address, the first IPv6 GUA address associated with the ENI becomes the primary IPv6 address.
source§impl CreateNetworkInterfaceInput
impl CreateNetworkInterfaceInput
sourcepub fn builder() -> CreateNetworkInterfaceInputBuilder
pub fn builder() -> CreateNetworkInterfaceInputBuilder
Creates a new builder-style object to manufacture CreateNetworkInterfaceInput
.
Trait Implementations§
source§impl Clone for CreateNetworkInterfaceInput
impl Clone for CreateNetworkInterfaceInput
source§fn clone(&self) -> CreateNetworkInterfaceInput
fn clone(&self) -> CreateNetworkInterfaceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateNetworkInterfaceInput
impl Debug for CreateNetworkInterfaceInput
source§impl PartialEq for CreateNetworkInterfaceInput
impl PartialEq for CreateNetworkInterfaceInput
source§fn eq(&self, other: &CreateNetworkInterfaceInput) -> bool
fn eq(&self, other: &CreateNetworkInterfaceInput) -> bool
self
and other
values to be equal, and is used
by ==
.