/* * Copyright 2018-2023 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 java.io.Serializable; import javax.annotation.Generated; /** *
* Describes a customer gateway. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CustomerGateway implements Serializable, Cloneable { /** ** The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). *
*/ private String bgpAsn; /** ** The ID of the customer gateway. *
*/ private String customerGatewayId; /** ** The IP address of the customer gateway device's outside interface. *
*/ private String ipAddress; /** ** The Amazon Resource Name (ARN) for the customer gateway certificate. *
*/ private String certificateArn; /** *
* The current state of the customer gateway (pending | available | deleting | deleted
).
*
* The type of VPN connection the customer gateway supports (ipsec.1
).
*
* The name of customer gateway device. *
*/ private String deviceName; /** ** Any tags assigned to the customer gateway. *
*/ private com.amazonaws.internal.SdkInternalList* The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). *
* * @param bgpAsn * The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). */ public void setBgpAsn(String bgpAsn) { this.bgpAsn = bgpAsn; } /** ** The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). *
* * @return The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). */ public String getBgpAsn() { return this.bgpAsn; } /** ** The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). *
* * @param bgpAsn * The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN). * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withBgpAsn(String bgpAsn) { setBgpAsn(bgpAsn); return this; } /** ** The ID of the customer gateway. *
* * @param customerGatewayId * The ID of the customer gateway. */ public void setCustomerGatewayId(String customerGatewayId) { this.customerGatewayId = customerGatewayId; } /** ** The ID of the customer gateway. *
* * @return The ID of the customer gateway. */ public String getCustomerGatewayId() { return this.customerGatewayId; } /** ** The ID of the customer gateway. *
* * @param customerGatewayId * The ID of the customer gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withCustomerGatewayId(String customerGatewayId) { setCustomerGatewayId(customerGatewayId); return this; } /** ** The IP address of the customer gateway device's outside interface. *
* * @param ipAddress * The IP address of the customer gateway device's outside interface. */ public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } /** ** The IP address of the customer gateway device's outside interface. *
* * @return The IP address of the customer gateway device's outside interface. */ public String getIpAddress() { return this.ipAddress; } /** ** The IP address of the customer gateway device's outside interface. *
* * @param ipAddress * The IP address of the customer gateway device's outside interface. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withIpAddress(String ipAddress) { setIpAddress(ipAddress); return this; } /** ** The Amazon Resource Name (ARN) for the customer gateway certificate. *
* * @param certificateArn * The Amazon Resource Name (ARN) for the customer gateway certificate. */ public void setCertificateArn(String certificateArn) { this.certificateArn = certificateArn; } /** ** The Amazon Resource Name (ARN) for the customer gateway certificate. *
* * @return The Amazon Resource Name (ARN) for the customer gateway certificate. */ public String getCertificateArn() { return this.certificateArn; } /** ** The Amazon Resource Name (ARN) for the customer gateway certificate. *
* * @param certificateArn * The Amazon Resource Name (ARN) for the customer gateway certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withCertificateArn(String certificateArn) { setCertificateArn(certificateArn); return this; } /** *
* The current state of the customer gateway (pending | available | deleting | deleted
).
*
pending | available | deleting | deleted
).
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The current state of the customer gateway (pending | available | deleting | deleted
).
*
pending | available | deleting | deleted
).
*/
public String getState() {
return this.state;
}
/**
*
* The current state of the customer gateway (pending | available | deleting | deleted
).
*
pending | available | deleting | deleted
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomerGateway withState(String state) {
setState(state);
return this;
}
/**
*
* The type of VPN connection the customer gateway supports (ipsec.1
).
*
ipsec.1
).
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of VPN connection the customer gateway supports (ipsec.1
).
*
ipsec.1
).
*/
public String getType() {
return this.type;
}
/**
*
* The type of VPN connection the customer gateway supports (ipsec.1
).
*
ipsec.1
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomerGateway withType(String type) {
setType(type);
return this;
}
/**
* * The name of customer gateway device. *
* * @param deviceName * The name of customer gateway device. */ public void setDeviceName(String deviceName) { this.deviceName = deviceName; } /** ** The name of customer gateway device. *
* * @return The name of customer gateway device. */ public String getDeviceName() { return this.deviceName; } /** ** The name of customer gateway device. *
* * @param deviceName * The name of customer gateway device. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withDeviceName(String deviceName) { setDeviceName(deviceName); return this; } /** ** Any tags assigned to the customer gateway. *
* * @return Any tags assigned to the customer gateway. */ public java.util.List* Any tags assigned to the customer gateway. *
* * @param tags * Any tags assigned to the customer gateway. */ public void setTags(java.util.Collection* Any tags assigned to the customer gateway. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * Any tags assigned to the customer gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* Any tags assigned to the customer gateway. *
* * @param tags * Any tags assigned to the customer gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public CustomerGateway withTags(java.util.Collection