CreateNetworkInterfaceRequest
public struct CreateNetworkInterfaceRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A description for the network interface.
Declaration
Swift
public let description: String?
-
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.
Declaration
Swift
public let dryRun: Bool?
-
The IDs of one or more security groups.
Declaration
Swift
public let groups: [String]?
-
Indicates the type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.
Declaration
Swift
public let interfaceType: NetworkInterfaceCreationType?
-
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 use this option if specifying specific IPv6 addresses. If your subnet has the AssignIpv6AddressOnCreation attribute set to true, you can specify 0 to override this setting.
Declaration
Swift
public let ipv6AddressCount: Int?
-
One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can’t use this option if you’re specifying a number of IPv6 addresses.
Declaration
Swift
public let ipv6Addresses: [InstanceIpv6Address]?
-
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).
Declaration
Swift
public let privateIpAddress: String?
-
One or more private IPv4 addresses.
Declaration
Swift
public let privateIpAddresses: [PrivateIpAddressSpecification]?
-
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. The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide.
Declaration
Swift
public let secondaryPrivateIpAddressCount: Int?
-
The ID of the subnet to associate with the network interface.
Declaration
Swift
public let subnetId: String
-
The tags to apply to the new network interface.
Declaration
Swift
public let tagSpecifications: [TagSpecification]?
-
init(description:dryRun:groups:interfaceType:ipv6AddressCount:ipv6Addresses:privateIpAddress:privateIpAddresses:secondaryPrivateIpAddressCount:subnetId:tagSpecifications:)
Undocumented
Declaration
Swift
public init(description: String? = nil, dryRun: Bool? = nil, groups: [String]? = nil, interfaceType: NetworkInterfaceCreationType? = nil, ipv6AddressCount: Int? = nil, ipv6Addresses: [InstanceIpv6Address]? = nil, privateIpAddress: String? = nil, privateIpAddresses: [PrivateIpAddressSpecification]? = nil, secondaryPrivateIpAddressCount: Int? = nil, subnetId: String, tagSpecifications: [TagSpecification]? = nil)