AWSEC2CreateNetworkInterfaceRequest
Objective-C
@interface AWSEC2CreateNetworkInterfaceRequest
Swift
class AWSEC2CreateNetworkInterfaceRequest
Contains the parameters for CreateNetworkInterface.
Required parameters: [SubnetId]
-
A description for the network interface.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
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 isUnauthorizedOperation
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable dryRun;
Swift
var dryRun: NSNumber? { get set }
-
The IDs of one or more security groups.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable groups;
Swift
var groups: [String]? { get set }
-
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
Objective-C
@property (nonatomic) AWSEC2NetworkInterfaceCreationType interfaceType;
Swift
var interfaceType: AWSEC2NetworkInterfaceCreationType { get set }
-
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 totrue
, you can specify0
to override this setting.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable ipv6AddressCount;
Swift
var ipv6AddressCount: NSNumber? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2InstanceIpv6Address *> *_Nullable ipv6Addresses;
Swift
var ipv6Addresses: [AWSEC2InstanceIpv6Address]? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSString *_Nullable privateIpAddress;
Swift
var privateIpAddress: String? { get set }
-
One or more private IPv4 addresses.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2PrivateIpAddressSpecification *> *_Nullable privateIpAddresses;
Swift
var privateIpAddresses: [AWSEC2PrivateIpAddressSpecification]? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable secondaryPrivateIpAddressCount;
Swift
var secondaryPrivateIpAddressCount: NSNumber? { get set }
-
The ID of the subnet to associate with the network interface.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable subnetId;
Swift
var subnetId: String? { get set }
-
The tags to apply to the new network interface.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2TagSpecification *> *_Nullable tagSpecifications;
Swift
var tagSpecifications: [AWSEC2TagSpecification]? { get set }