AWSEC2CreateSubnetRequest
Objective-C
@interface AWSEC2CreateSubnetRequest
Swift
class AWSEC2CreateSubnetRequest
-
The Availability Zone or Local Zone for the subnet.
Default: Amazon Web Services selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet.
To create a subnet in a Local Zone, set this value to the Local Zone ID, for example
us-west-2-lax-1a
. For information about the Regions that support Local Zones, see Available Local Zones.To create a subnet in an Outpost, set this value to the Availability Zone for the Outpost and specify the Outpost ARN.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable availabilityZone;
Swift
var availabilityZone: String? { get set }
-
The AZ ID or the Local Zone ID of the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable availabilityZoneId;
Swift
var availabilityZoneId: String? { get set }
-
The IPv4 network range for the subnet, in CIDR notation. For example,
10.0.0.0/24
. We modify the specified CIDR block to its canonical form; for example, if you specify100.68.0.18/18
, we modify it to100.68.0.0/18
.This parameter is not supported for an IPv6 only subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable cidrBlock;
Swift
var cidrBlock: 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 }
-
An IPv4 IPAM pool ID for the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable ipv4IpamPoolId;
Swift
var ipv4IpamPoolId: String? { get set }
-
An IPv4 netmask length for the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable ipv4NetmaskLength;
Swift
var ipv4NetmaskLength: NSNumber? { get set }
-
The IPv6 network range for the subnet, in CIDR notation. This parameter is required for an IPv6 only subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable ipv6CidrBlock;
Swift
var ipv6CidrBlock: String? { get set }
-
An IPv6 IPAM pool ID for the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable ipv6IpamPoolId;
Swift
var ipv6IpamPoolId: String? { get set }
-
Indicates whether to create an IPv6 only subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable ipv6Native;
Swift
var ipv6Native: NSNumber? { get set }
-
An IPv6 netmask length for the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable ipv6NetmaskLength;
Swift
var ipv6NetmaskLength: NSNumber? { get set }
-
The Amazon Resource Name (ARN) of the Outpost. If you specify an Outpost ARN, you must also specify the Availability Zone of the Outpost subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable outpostArn;
Swift
var outpostArn: String? { get set }
-
The tags to assign to the subnet.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSEC2TagSpecification *> *_Nullable tagSpecifications;
Swift
var tagSpecifications: [AWSEC2TagSpecification]? { get set }
-
The ID of the VPC.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable vpcId;
Swift
var vpcId: String? { get set }