|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.amazonaws.AmazonWebServiceRequest
com.amazonaws.services.ec2.model.CreateSubnetRequest
public class CreateSubnetRequest
Container for the parameters to the CreateSubnet operation
.
Creates a subnet in an existing VPC.
When you create each subnet, you provide the VPC ID and the CIDR block you want for the subnet. After you create a subnet, you can't change its CIDR block. The subnet's CIDR block can be the same as the VPC's CIDR block (assuming you want only a single subnet in the VPC), or a subset of the VPC's CIDR block. If you create more than one subnet in a VPC, the subnets' CIDR blocks must not overlap. The smallest subnet (and VPC) you can create uses a /28 netmask (16 IP addresses), and the largest uses a /16 netmask (65,536 IP addresses).
IMPORTANT: AWS reserves both the first four and the last IP address in each subnet's CIDR block. They're not available for use.
If you add more than one subnet to a VPC, they're set up in a star topology with a logical router in the middle.
For more information about subnets, see Your VPC and Subnets in the Amazon Virtual Private Cloud User Guide .
AmazonEC2.createSubnet(CreateSubnetRequest)
,
Serialized FormConstructor Summary | |
---|---|
CreateSubnetRequest()
Default constructor for a new CreateSubnetRequest object. |
|
CreateSubnetRequest(String vpcId,
String cidrBlock)
Constructs a new CreateSubnetRequest object. |
Method Summary | |
---|---|
boolean |
equals(Object obj)
|
String |
getAvailabilityZone()
The Availability Zone for the subnet. |
String |
getCidrBlock()
The network range for the subnet, in CIDR notation. |
Request<CreateSubnetRequest> |
getDryRunRequest()
This method is intended for internal use only. |
String |
getVpcId()
The ID of the VPC. |
int |
hashCode()
|
void |
setAvailabilityZone(String availabilityZone)
The Availability Zone for the subnet. |
void |
setCidrBlock(String cidrBlock)
The network range for the subnet, in CIDR notation. |
void |
setVpcId(String vpcId)
The ID of the VPC. |
String |
toString()
Returns a string representation of this object; useful for testing and debugging. |
CreateSubnetRequest |
withAvailabilityZone(String availabilityZone)
The Availability Zone for the subnet. |
CreateSubnetRequest |
withCidrBlock(String cidrBlock)
The network range for the subnet, in CIDR notation. |
CreateSubnetRequest |
withVpcId(String vpcId)
The ID of the VPC. |
Methods inherited from class com.amazonaws.AmazonWebServiceRequest |
---|
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setRequestCredentials, setRequestMetricCollector, withRequestMetricCollector |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CreateSubnetRequest()
public CreateSubnetRequest(String vpcId, String cidrBlock)
vpcId
- The ID of the VPC.cidrBlock
- The network range for the subnet, in CIDR notation.
For example, 10.0.0.0/24
.Method Detail |
---|
public String getVpcId()
public void setVpcId(String vpcId)
vpcId
- The ID of the VPC.public CreateSubnetRequest withVpcId(String vpcId)
Returns a reference to this object so that method calls can be chained together.
vpcId
- The ID of the VPC.
public String getCidrBlock()
10.0.0.0/24
.
10.0.0.0/24
.public void setCidrBlock(String cidrBlock)
10.0.0.0/24
.
cidrBlock
- The network range for the subnet, in CIDR notation. For example,
10.0.0.0/24
.public CreateSubnetRequest withCidrBlock(String cidrBlock)
10.0.0.0/24
.
Returns a reference to this object so that method calls can be chained together.
cidrBlock
- The network range for the subnet, in CIDR notation. For example,
10.0.0.0/24
.
public String getAvailabilityZone()
Default: Amazon EC2 selects one for you (recommended).
Default: Amazon EC2 selects one for you (recommended).
public void setAvailabilityZone(String availabilityZone)
Default: Amazon EC2 selects one for you (recommended).
availabilityZone
- The Availability Zone for the subnet. Default: Amazon EC2 selects one for you (recommended).
public CreateSubnetRequest withAvailabilityZone(String availabilityZone)
Default: Amazon EC2 selects one for you (recommended).
Returns a reference to this object so that method calls can be chained together.
availabilityZone
- The Availability Zone for the subnet. Default: Amazon EC2 selects one for you (recommended).
public Request<CreateSubnetRequest> getDryRunRequest()
getDryRunRequest
in interface DryRunSupportedRequest<CreateSubnetRequest>
public String toString()
toString
in class Object
Object.toString()
public int hashCode()
hashCode
in class Object
public boolean equals(Object obj)
equals
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |