/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the BGP options.See Also:
AWS
* API Reference
The Peer ASN of the BGP.
*/ inline long long GetPeerAsn() const{ return m_peerAsn; } /** *The Peer ASN of the BGP.
*/ inline bool PeerAsnHasBeenSet() const { return m_peerAsnHasBeenSet; } /** *The Peer ASN of the BGP.
*/ inline void SetPeerAsn(long long value) { m_peerAsnHasBeenSet = true; m_peerAsn = value; } /** *The Peer ASN of the BGP.
*/ inline BgpOptions& WithPeerAsn(long long value) { SetPeerAsn(value); return *this;} private: long long m_peerAsn; bool m_peerAsnHasBeenSet = false; }; } // namespace Model } // namespace NetworkManager } // namespace Aws