125 lines
4.4 KiB
C++
125 lines
4.4 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/ec2/model/PeeringConnectionOptions.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 ModifyVpcPeeringConnectionOptionsResponse
|
|
{
|
|
public:
|
|
ModifyVpcPeeringConnectionOptionsResponse();
|
|
ModifyVpcPeeringConnectionOptionsResponse(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
|
|
ModifyVpcPeeringConnectionOptionsResponse& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the accepter
|
|
* VPC.</p>
|
|
*/
|
|
inline const PeeringConnectionOptions& GetAccepterPeeringConnectionOptions() const{ return m_accepterPeeringConnectionOptions; }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the accepter
|
|
* VPC.</p>
|
|
*/
|
|
inline void SetAccepterPeeringConnectionOptions(const PeeringConnectionOptions& value) { m_accepterPeeringConnectionOptions = value; }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the accepter
|
|
* VPC.</p>
|
|
*/
|
|
inline void SetAccepterPeeringConnectionOptions(PeeringConnectionOptions&& value) { m_accepterPeeringConnectionOptions = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the accepter
|
|
* VPC.</p>
|
|
*/
|
|
inline ModifyVpcPeeringConnectionOptionsResponse& WithAccepterPeeringConnectionOptions(const PeeringConnectionOptions& value) { SetAccepterPeeringConnectionOptions(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the accepter
|
|
* VPC.</p>
|
|
*/
|
|
inline ModifyVpcPeeringConnectionOptionsResponse& WithAccepterPeeringConnectionOptions(PeeringConnectionOptions&& value) { SetAccepterPeeringConnectionOptions(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the requester
|
|
* VPC.</p>
|
|
*/
|
|
inline const PeeringConnectionOptions& GetRequesterPeeringConnectionOptions() const{ return m_requesterPeeringConnectionOptions; }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the requester
|
|
* VPC.</p>
|
|
*/
|
|
inline void SetRequesterPeeringConnectionOptions(const PeeringConnectionOptions& value) { m_requesterPeeringConnectionOptions = value; }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the requester
|
|
* VPC.</p>
|
|
*/
|
|
inline void SetRequesterPeeringConnectionOptions(PeeringConnectionOptions&& value) { m_requesterPeeringConnectionOptions = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the requester
|
|
* VPC.</p>
|
|
*/
|
|
inline ModifyVpcPeeringConnectionOptionsResponse& WithRequesterPeeringConnectionOptions(const PeeringConnectionOptions& value) { SetRequesterPeeringConnectionOptions(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about the VPC peering connection options for the requester
|
|
* VPC.</p>
|
|
*/
|
|
inline ModifyVpcPeeringConnectionOptionsResponse& WithRequesterPeeringConnectionOptions(PeeringConnectionOptions&& value) { SetRequesterPeeringConnectionOptions(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 ModifyVpcPeeringConnectionOptionsResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
|
|
|
|
|
|
inline ModifyVpcPeeringConnectionOptionsResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
PeeringConnectionOptions m_accepterPeeringConnectionOptions;
|
|
|
|
PeeringConnectionOptions m_requesterPeeringConnectionOptions;
|
|
|
|
ResponseMetadata m_responseMetadata;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|