|
Did this page help you?Yes No Tell us about it... |
||||||
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.CreateCustomerGatewayRequest
public class CreateCustomerGatewayRequest
Container for the parameters to the CreateCustomerGateway operation
.
Provides information to AWS about your customer gateway device. The customer gateway is the appliance at your end of the VPN connection (compared to the VPN gateway, which is the device at the AWS side of the VPN connection). You can have a single active customer gateway per AWS account (active means that you've created a VPN connection to use with the customer gateway). AWS might delete any customer gateway that you create with this operation if you leave it inactive for an extended period of time.
You must provide the Internet-routable IP address of the customer gateway's external interface. The IP address must be static.
You must also provide the device's Border Gateway Protocol (BGP) Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range). For more information about ASNs, go to http://en.wikipedia.org/wiki/Autonomous_system_%28Internet%29 .
AmazonEC2.createCustomerGateway(CreateCustomerGatewayRequest)
Constructor Summary | |
---|---|
CreateCustomerGatewayRequest()
Default constructor for a new CreateCustomerGatewayRequest object. |
|
CreateCustomerGatewayRequest(String type,
String publicIp,
Integer bgpAsn)
Constructs a new CreateCustomerGatewayRequest object. |
Method Summary | |
---|---|
boolean |
equals(Object obj)
|
Integer |
getBgpAsn()
The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). |
String |
getPublicIp()
The Internet-routable IP address for the customer gateway's outside interface. |
String |
getType()
The type of VPN connection this customer gateway supports. |
int |
hashCode()
|
void |
setBgpAsn(Integer bgpAsn)
The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). |
void |
setPublicIp(String publicIp)
The Internet-routable IP address for the customer gateway's outside interface. |
void |
setType(String type)
The type of VPN connection this customer gateway supports. |
String |
toString()
Returns a string representation of this object; useful for testing and debugging. |
CreateCustomerGatewayRequest |
withBgpAsn(Integer bgpAsn)
The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). |
CreateCustomerGatewayRequest |
withPublicIp(String publicIp)
The Internet-routable IP address for the customer gateway's outside interface. |
CreateCustomerGatewayRequest |
withType(String type)
The type of VPN connection this customer gateway supports. |
Methods inherited from class com.amazonaws.AmazonWebServiceRequest |
---|
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentials |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CreateCustomerGatewayRequest()
public CreateCustomerGatewayRequest(String type, String publicIp, Integer bgpAsn)
type
- The type of VPN connection this customer gateway supports.publicIp
- The Internet-routable IP address for the customer
gateway's outside interface. The address must be staticbgpAsn
- The customer gateway's Border Gateway Protocol (BGP)
Autonomous System Number (ASN).Method Detail |
---|
public String getType()
public void setType(String type)
type
- The type of VPN connection this customer gateway supports.public CreateCustomerGatewayRequest withType(String type)
Returns a reference to this object so that method calls can be chained together.
type
- The type of VPN connection this customer gateway supports.
public String getPublicIp()
public void setPublicIp(String publicIp)
publicIp
- The Internet-routable IP address for the customer gateway's outside
interface. The address must be staticpublic CreateCustomerGatewayRequest withPublicIp(String publicIp)
Returns a reference to this object so that method calls can be chained together.
publicIp
- The Internet-routable IP address for the customer gateway's outside
interface. The address must be static
public Integer getBgpAsn()
public void setBgpAsn(Integer bgpAsn)
bgpAsn
- The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).public CreateCustomerGatewayRequest withBgpAsn(Integer bgpAsn)
Returns a reference to this object so that method calls can be chained together.
bgpAsn
- The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).
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 |