/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { class AssociateTrunkInterfaceResponse { public: AWS_EC2_API AssociateTrunkInterfaceResponse(); AWS_EC2_API AssociateTrunkInterfaceResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API AssociateTrunkInterfaceResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the association between the trunk network interface and * branch network interface.

*/ inline const TrunkInterfaceAssociation& GetInterfaceAssociation() const{ return m_interfaceAssociation; } /** *

Information about the association between the trunk network interface and * branch network interface.

*/ inline void SetInterfaceAssociation(const TrunkInterfaceAssociation& value) { m_interfaceAssociation = value; } /** *

Information about the association between the trunk network interface and * branch network interface.

*/ inline void SetInterfaceAssociation(TrunkInterfaceAssociation&& value) { m_interfaceAssociation = std::move(value); } /** *

Information about the association between the trunk network interface and * branch network interface.

*/ inline AssociateTrunkInterfaceResponse& WithInterfaceAssociation(const TrunkInterfaceAssociation& value) { SetInterfaceAssociation(value); return *this;} /** *

Information about the association between the trunk network interface and * branch network interface.

*/ inline AssociateTrunkInterfaceResponse& WithInterfaceAssociation(TrunkInterfaceAssociation&& value) { SetInterfaceAssociation(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline void SetClientToken(const Aws::String& value) { m_clientToken = value; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline void SetClientToken(Aws::String&& value) { m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline void SetClientToken(const char* value) { m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline AssociateTrunkInterfaceResponse& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline AssociateTrunkInterfaceResponse& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to Ensure Idempotency.

*/ inline AssociateTrunkInterfaceResponse& WithClientToken(const char* value) { SetClientToken(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline AssociateTrunkInterfaceResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline AssociateTrunkInterfaceResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: TrunkInterfaceAssociation m_interfaceAssociation; Aws::String m_clientToken; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws