AWSEC2LaunchTemplateInstanceNetworkInterfaceSpecificationRequest

Objective-C

@interface AWSEC2LaunchTemplateInstanceNetworkInterfaceSpecificationRequest

Swift

class AWSEC2LaunchTemplateInstanceNetworkInterfaceSpecificationRequest

The parameters for a network interface.

  • Associates a Carrier IP address with eth0 for a new network interface.

    Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable associateCarrierIpAddress;

    Swift

    var associateCarrierIpAddress: NSNumber? { get set }
  • Associates a public IPv4 address with eth0 for a new network interface.

    Starting on February 1, 2024, Amazon Web Services will charge for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the Public IPv4 Address tab on the Amazon VPC pricing page.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable associatePublicIpAddress;

    Swift

    var associatePublicIpAddress: NSNumber? { get set }
  • A security group connection tracking specification that enables you to set the timeout for connection tracking on an Elastic network interface. For more information, see Connection tracking timeouts in the Amazon Elastic Compute Cloud User Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2ConnectionTrackingSpecificationRequest *_Nullable connectionTrackingSpecification;

    Swift

    var connectionTrackingSpecification: AWSEC2ConnectionTrackingSpecificationRequest? { get set }
  • Indicates whether the network interface is deleted when the instance is terminated.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable deleteOnTermination;

    Swift

    var deleteOnTermination: NSNumber? { get set }
  • A description for the network interface.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • The device index for the network interface attachment.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable deviceIndex;

    Swift

    var deviceIndex: NSNumber? { get set }
  • Configure ENA Express settings for your launch template.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2EnaSrdSpecificationRequest *_Nullable enaSrdSpecification;

    Swift

    var enaSrdSpecification: AWSEC2EnaSrdSpecificationRequest? { 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 }
  • 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.

    If you are not creating an EFA, specify interface or omit this parameter.

    Valid values: interface | efa

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable interfaceType;

    Swift

    var interfaceType: String? { get set }
  • The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable ipv4PrefixCount;

    Swift

    var ipv4PrefixCount: NSNumber? { get set }
  • One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2Ipv4PrefixSpecificationRequest *> *_Nullable ipv4Prefixes;

    Swift

    var ipv4Prefixes: [AWSEC2Ipv4PrefixSpecificationRequest]? { 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.

    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<AWSEC2InstanceIpv6AddressRequest *> *_Nullable ipv6Addresses;

    Swift

    var ipv6Addresses: [AWSEC2InstanceIpv6AddressRequest]? { get set }
  • The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable ipv6PrefixCount;

    Swift

    var ipv6PrefixCount: NSNumber? { get set }
  • One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2Ipv6PrefixSpecificationRequest *> *_Nullable ipv6Prefixes;

    Swift

    var ipv6Prefixes: [AWSEC2Ipv6PrefixSpecificationRequest]? { get set }
  • The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable networkCardIndex;

    Swift

    var networkCardIndex: NSNumber? { get set }
  • The ID of the network interface.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable networkInterfaceId;

    Swift

    var networkInterfaceId: String? { get set }
  • The primary IPv6 address of the network interface. 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. For more information about primary IPv6 addresses, see RunInstances.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable primaryIpv6;

    Swift

    var primaryIpv6: NSNumber? { get set }
  • The primary private IPv4 address of the network interface.

    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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable secondaryPrivateIpAddressCount;

    Swift

    var secondaryPrivateIpAddressCount: NSNumber? { get set }
  • The ID of the subnet for the network interface.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable subnetId;

    Swift

    var subnetId: String? { get set }