public class CreateCustomerGatewayRequest extends AmazonWebServiceRequest implements java.io.Serializable
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 .
| コンストラクタと説明 |
|---|
CreateCustomerGatewayRequest()
Default constructor for a new CreateCustomerGatewayRequest object.
|
CreateCustomerGatewayRequest(java.lang.String type,
java.lang.String publicIp,
java.lang.Integer bgpAsn)
Constructs a new CreateCustomerGatewayRequest object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getBgpAsn()
The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).
|
java.lang.String |
getPublicIp()
The Internet-routable IP address for the customer gateway's outside
interface.
|
java.lang.String |
getType()
The type of VPN connection this customer gateway supports.
|
int |
hashCode() |
void |
setBgpAsn(java.lang.Integer bgpAsn)
The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).
|
void |
setPublicIp(java.lang.String publicIp)
The Internet-routable IP address for the customer gateway's outside
interface.
|
void |
setType(java.lang.String type)
The type of VPN connection this customer gateway supports.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateCustomerGatewayRequest |
withBgpAsn(java.lang.Integer bgpAsn)
The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).
|
CreateCustomerGatewayRequest |
withPublicIp(java.lang.String publicIp)
The Internet-routable IP address for the customer gateway's outside
interface.
|
CreateCustomerGatewayRequest |
withType(java.lang.String type)
The type of VPN connection this customer gateway supports.
|
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentialspublic CreateCustomerGatewayRequest()
public CreateCustomerGatewayRequest(java.lang.String type,
java.lang.String publicIp,
java.lang.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).public java.lang.String getType()
public void setType(java.lang.String type)
type - The type of VPN connection this customer gateway supports.public CreateCustomerGatewayRequest withType(java.lang.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 java.lang.String getPublicIp()
public void setPublicIp(java.lang.String publicIp)
publicIp - The Internet-routable IP address for the customer gateway's outside
interface. The address must be staticpublic CreateCustomerGatewayRequest withPublicIp(java.lang.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 staticpublic java.lang.Integer getBgpAsn()
public void setBgpAsn(java.lang.Integer bgpAsn)
bgpAsn - The customer gateway's Border Gateway Protocol (BGP) Autonomous System
Number (ASN).public CreateCustomerGatewayRequest withBgpAsn(java.lang.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 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