/* * 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.directconnect.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Information about a BGP peer. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class BGPPeer implements Serializable, Cloneable, StructuredPojo { /** *

* The ID of the BGP peer. *

*/ private String bgpPeerId; /** *

* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. *

*/ private Integer asn; /** *

* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun * lenth of 80 characters. *

*/ private String authKey; /** *

* The address family for the BGP peer. *

*/ private String addressFamily; /** *

* The IP address assigned to the Amazon interface. *

*/ private String amazonAddress; /** *

* The IP address assigned to the customer interface. *

*/ private String customerAddress; /** *

* The state of the BGP peer. The following are the possible values: *

* */ private String bgpPeerState; /** *

* The status of the BGP peer. The following are the possible values: *

* */ private String bgpStatus; /** *

* The Direct Connect endpoint that terminates the BGP peer. *

*/ private String awsDeviceV2; /** *

* The Direct Connect endpoint that terminates the logical connection. This device might be different than the * device that terminates the physical connection. *

*/ private String awsLogicalDeviceId; /** *

* The ID of the BGP peer. *

* * @param bgpPeerId * The ID of the BGP peer. */ public void setBgpPeerId(String bgpPeerId) { this.bgpPeerId = bgpPeerId; } /** *

* The ID of the BGP peer. *

* * @return The ID of the BGP peer. */ public String getBgpPeerId() { return this.bgpPeerId; } /** *

* The ID of the BGP peer. *

* * @param bgpPeerId * The ID of the BGP peer. * @return Returns a reference to this object so that method calls can be chained together. */ public BGPPeer withBgpPeerId(String bgpPeerId) { setBgpPeerId(bgpPeerId); return this; } /** *

* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. *

* * @param asn * The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. */ public void setAsn(Integer asn) { this.asn = asn; } /** *

* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. *

* * @return The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. */ public Integer getAsn() { return this.asn; } /** *

* The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. *

* * @param asn * The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public BGPPeer withAsn(Integer asn) { setAsn(asn); return this; } /** *

* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun * lenth of 80 characters. *

* * @param authKey * The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a * maximun lenth of 80 characters. */ public void setAuthKey(String authKey) { this.authKey = authKey; } /** *

* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun * lenth of 80 characters. *

* * @return The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a * maximun lenth of 80 characters. */ public String getAuthKey() { return this.authKey; } /** *

* The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun * lenth of 80 characters. *

* * @param authKey * The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a * maximun lenth of 80 characters. * @return Returns a reference to this object so that method calls can be chained together. */ public BGPPeer withAuthKey(String authKey) { setAuthKey(authKey); return this; } /** *

* The address family for the BGP peer. *

* * @param addressFamily * The address family for the BGP peer. * @see AddressFamily */ public void setAddressFamily(String addressFamily) { this.addressFamily = addressFamily; } /** *

* The address family for the BGP peer. *

* * @return The address family for the BGP peer. * @see AddressFamily */ public String getAddressFamily() { return this.addressFamily; } /** *

* The address family for the BGP peer. *

* * @param addressFamily * The address family for the BGP peer. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressFamily */ public BGPPeer withAddressFamily(String addressFamily) { setAddressFamily(addressFamily); return this; } /** *

* The address family for the BGP peer. *

* * @param addressFamily * The address family for the BGP peer. * @see AddressFamily */ public void setAddressFamily(AddressFamily addressFamily) { withAddressFamily(addressFamily); } /** *

* The address family for the BGP peer. *

* * @param addressFamily * The address family for the BGP peer. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressFamily */ public BGPPeer withAddressFamily(AddressFamily addressFamily) { this.addressFamily = addressFamily.toString(); return this; } /** *

* The IP address assigned to the Amazon interface. *

* * @param amazonAddress * The IP address assigned to the Amazon interface. */ public void setAmazonAddress(String amazonAddress) { this.amazonAddress = amazonAddress; } /** *

* The IP address assigned to the Amazon interface. *

* * @return The IP address assigned to the Amazon interface. */ public String getAmazonAddress() { return this.amazonAddress; } /** *

* The IP address assigned to the Amazon interface. *

* * @param amazonAddress * The IP address assigned to the Amazon interface. * @return Returns a reference to this object so that method calls can be chained together. */ public BGPPeer withAmazonAddress(String amazonAddress) { setAmazonAddress(amazonAddress); return this; } /** *

* The IP address assigned to the customer interface. *

* * @param customerAddress * The IP address assigned to the customer interface. */ public void setCustomerAddress(String customerAddress) { this.customerAddress = customerAddress; } /** *

* The IP address assigned to the customer interface. *

* * @return The IP address assigned to the customer interface. */ public String getCustomerAddress() { return this.customerAddress; } /** *

* The IP address assigned to the customer interface. *

* * @param customerAddress * The IP address assigned to the customer interface. * @return Returns a reference to this object so that method calls can be chained together. */ public BGPPeer withCustomerAddress(String customerAddress) { setCustomerAddress(customerAddress); return this; } /** *

* The state of the BGP peer. The following are the possible values: *

* * * @param bgpPeerState * The state of the BGP peer. The following are the possible values:

*