This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ec2/include/aws/ec2/model/ReplaceRouteTableAssociationResponse.h

126 lines
3.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/ec2/model/RouteTableAssociationState.h>
#include <aws/ec2/model/ResponseMetadata.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
class AWS_EC2_API ReplaceRouteTableAssociationResponse
{
public:
ReplaceRouteTableAssociationResponse();
ReplaceRouteTableAssociationResponse(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
ReplaceRouteTableAssociationResponse& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>The ID of the new association.</p>
*/
inline const Aws::String& GetNewAssociationId() const{ return m_newAssociationId; }
/**
* <p>The ID of the new association.</p>
*/
inline void SetNewAssociationId(const Aws::String& value) { m_newAssociationId = value; }
/**
* <p>The ID of the new association.</p>
*/
inline void SetNewAssociationId(Aws::String&& value) { m_newAssociationId = std::move(value); }
/**
* <p>The ID of the new association.</p>
*/
inline void SetNewAssociationId(const char* value) { m_newAssociationId.assign(value); }
/**
* <p>The ID of the new association.</p>
*/
inline ReplaceRouteTableAssociationResponse& WithNewAssociationId(const Aws::String& value) { SetNewAssociationId(value); return *this;}
/**
* <p>The ID of the new association.</p>
*/
inline ReplaceRouteTableAssociationResponse& WithNewAssociationId(Aws::String&& value) { SetNewAssociationId(std::move(value)); return *this;}
/**
* <p>The ID of the new association.</p>
*/
inline ReplaceRouteTableAssociationResponse& WithNewAssociationId(const char* value) { SetNewAssociationId(value); return *this;}
/**
* <p>The state of the association.</p>
*/
inline const RouteTableAssociationState& GetAssociationState() const{ return m_associationState; }
/**
* <p>The state of the association.</p>
*/
inline void SetAssociationState(const RouteTableAssociationState& value) { m_associationState = value; }
/**
* <p>The state of the association.</p>
*/
inline void SetAssociationState(RouteTableAssociationState&& value) { m_associationState = std::move(value); }
/**
* <p>The state of the association.</p>
*/
inline ReplaceRouteTableAssociationResponse& WithAssociationState(const RouteTableAssociationState& value) { SetAssociationState(value); return *this;}
/**
* <p>The state of the association.</p>
*/
inline ReplaceRouteTableAssociationResponse& WithAssociationState(RouteTableAssociationState&& value) { SetAssociationState(std::move(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 ReplaceRouteTableAssociationResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline ReplaceRouteTableAssociationResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
Aws::String m_newAssociationId;
RouteTableAssociationState m_associationState;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace EC2
} // namespace Aws