/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

The BGP options for the Connect attachment.

See Also:

AWS * API Reference

*/ class TransitGatewayConnectRequestBgpOptions { public: AWS_EC2_API TransitGatewayConnectRequestBgpOptions(); AWS_EC2_API TransitGatewayConnectRequestBgpOptions(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API TransitGatewayConnectRequestBgpOptions& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The peer Autonomous System Number (ASN).

*/ inline long long GetPeerAsn() const{ return m_peerAsn; } /** *

The peer Autonomous System Number (ASN).

*/ inline bool PeerAsnHasBeenSet() const { return m_peerAsnHasBeenSet; } /** *

The peer Autonomous System Number (ASN).

*/ inline void SetPeerAsn(long long value) { m_peerAsnHasBeenSet = true; m_peerAsn = value; } /** *

The peer Autonomous System Number (ASN).

*/ inline TransitGatewayConnectRequestBgpOptions& WithPeerAsn(long long value) { SetPeerAsn(value); return *this;} private: long long m_peerAsn; bool m_peerAsnHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws