public class CreateSubnetRequest extends AmazonWebServiceRequest implements java.io.Serializable
CreateSubnet operation.
Creates a subnet in an existing VPC. You can create up to 20 subnets in a VPC. 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. When you create each subnet, you provide the VPC ID and the CIDR block you want for the subnet. Once 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 /18 netmask (16,384 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.
| コンストラクタと説明 |
|---|
CreateSubnetRequest()
Default constructor for a new CreateSubnetRequest object.
|
CreateSubnetRequest(java.lang.String vpcId,
java.lang.String cidrBlock)
Constructs a new CreateSubnetRequest object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAvailabilityZone()
The Availability Zone to create the subnet in.
|
java.lang.String |
getCidrBlock()
The CIDR block the subnet is to cover.
|
java.lang.String |
getVpcId()
The ID of the VPC to create the subnet in.
|
int |
hashCode() |
void |
setAvailabilityZone(java.lang.String availabilityZone)
The Availability Zone to create the subnet in.
|
void |
setCidrBlock(java.lang.String cidrBlock)
The CIDR block the subnet is to cover.
|
void |
setVpcId(java.lang.String vpcId)
The ID of the VPC to create the subnet in.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateSubnetRequest |
withAvailabilityZone(java.lang.String availabilityZone)
The Availability Zone to create the subnet in.
|
CreateSubnetRequest |
withCidrBlock(java.lang.String cidrBlock)
The CIDR block the subnet is to cover.
|
CreateSubnetRequest |
withVpcId(java.lang.String vpcId)
The ID of the VPC to create the subnet in.
|
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentialspublic CreateSubnetRequest()
public CreateSubnetRequest(java.lang.String vpcId,
java.lang.String cidrBlock)
vpcId - The ID of the VPC to create the subnet in.cidrBlock - The CIDR block the subnet is to cover.public java.lang.String getVpcId()
public void setVpcId(java.lang.String vpcId)
vpcId - The ID of the VPC to create the subnet in.public CreateSubnetRequest withVpcId(java.lang.String vpcId)
Returns a reference to this object so that method calls can be chained together.
vpcId - The ID of the VPC to create the subnet in.public java.lang.String getCidrBlock()
public void setCidrBlock(java.lang.String cidrBlock)
cidrBlock - The CIDR block the subnet is to cover.public CreateSubnetRequest withCidrBlock(java.lang.String cidrBlock)
Returns a reference to this object so that method calls can be chained together.
cidrBlock - The CIDR block the subnet is to cover.public java.lang.String getAvailabilityZone()
public void setAvailabilityZone(java.lang.String availabilityZone)
availabilityZone - The Availability Zone to create the subnet in.public CreateSubnetRequest withAvailabilityZone(java.lang.String availabilityZone)
Returns a reference to this object so that method calls can be chained together.
availabilityZone - The Availability Zone to create the subnet in.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object