AWSEC2AssignIpv6AddressesRequest

Objective-C

@interface AWSEC2AssignIpv6AddressesRequest

Swift

class AWSEC2AssignIpv6AddressesRequest
  • The number of additional IPv6 addresses to assign to the network interface. The specified number of IPv6 addresses are assigned in addition to the existing IPv6 addresses that are already assigned to the 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 }
  • The IPv6 addresses to be assigned to the network interface. You can’t use this option if you’re specifying a number of IPv6 addresses.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable ipv6Addresses;

    Swift

    var ipv6Addresses: [String]? { get set }
  • The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes option.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var ipv6Prefixes: [String]? { get set }
  • The ID of the network interface.

    Declaration

    Objective-C

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

    Swift

    var networkInterfaceId: String? { get set }