AWSEC2UnassignPrivateIpAddressesRequest

Objective-C

@interface AWSEC2UnassignPrivateIpAddressesRequest

Swift

class AWSEC2UnassignPrivateIpAddressesRequest

Contains the parameters for UnassignPrivateIpAddresses.

Required parameters: [NetworkInterfaceId]

  • The IPv4 prefixes to unassign from the network interface.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var networkInterfaceId: String? { get set }
  • The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

    Declaration

    Objective-C

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

    Swift

    var privateIpAddresses: [String]? { get set }