AWSEC2AssignPrivateNatGatewayAddressRequest
Objective-C
@interface AWSEC2AssignPrivateNatGatewayAddressRequest
Swift
class AWSEC2AssignPrivateNatGatewayAddressRequest
-
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 ID of the NAT gateway.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable natGatewayId;
Swift
var natGatewayId: String? { get set }
-
The number of private IP addresses to assign to the NAT gateway. You can’t specify this parameter when also specifying private IP addresses.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable privateIpAddressCount;
Swift
var privateIpAddressCount: NSNumber? { get set }
-
The private IPv4 addresses you want to assign to the private NAT gateway.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable privateIpAddresses;
Swift
var privateIpAddresses: [String]? { get set }