
com.amazonaws.services.ec2.model.CreateVpcRequest Maven / Gradle / Ivy
/*
* Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.ec2.model;
import com.amazonaws.AmazonWebServiceRequest;
/**
* Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#createVpc(CreateVpcRequest) CreateVpc operation}.
*
* Creates a VPC with the CIDR block you specify. The smallest VPC you
* can create uses a /28 netmask (16 IP addresses), and the largest uses
* a /18 netmask (16,384 IP addresses). To help you decide how big to
* make your VPC, go to the topic about creating VPCs in the Amazon
* Virtual Private Cloud Developer Guide.
*
*
* By default, each instance you launch in the VPC has the default DHCP
* options (the standard EC2 host name, no domain name, no DNS server, no
* NTP server, and no NetBIOS server or node type).
*
*
* @see com.amazonaws.services.ec2.AmazonEC2#createVpc(CreateVpcRequest)
*/
public class CreateVpcRequest extends AmazonWebServiceRequest {
/**
* A valid CIDR block.
*/
private String cidrBlock;
/**
* Default constructor for a new CreateVpcRequest object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public CreateVpcRequest() {}
/**
* Constructs a new CreateVpcRequest object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param cidrBlock A valid CIDR block.
*/
public CreateVpcRequest(String cidrBlock) {
this.cidrBlock = cidrBlock;
}
/**
* A valid CIDR block.
*
* @return A valid CIDR block.
*/
public String getCidrBlock() {
return cidrBlock;
}
/**
* A valid CIDR block.
*
* @param cidrBlock A valid CIDR block.
*/
public void setCidrBlock(String cidrBlock) {
this.cidrBlock = cidrBlock;
}
/**
* A valid CIDR block.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param cidrBlock A valid CIDR block.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public CreateVpcRequest withCidrBlock(String cidrBlock) {
this.cidrBlock = cidrBlock;
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
sb.append("CidrBlock: " + cidrBlock + ", ");
sb.append("}");
return sb.toString();
}
}