/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the status of a VPC peering connection.See Also:
* AWS
* API Reference
The status of the VPC peering connection.
*/ inline const VpcPeeringConnectionStateReasonCode& GetCode() const{ return m_code; } /** *The status of the VPC peering connection.
*/ inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } /** *The status of the VPC peering connection.
*/ inline void SetCode(const VpcPeeringConnectionStateReasonCode& value) { m_codeHasBeenSet = true; m_code = value; } /** *The status of the VPC peering connection.
*/ inline void SetCode(VpcPeeringConnectionStateReasonCode&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } /** *The status of the VPC peering connection.
*/ inline VpcPeeringConnectionStateReason& WithCode(const VpcPeeringConnectionStateReasonCode& value) { SetCode(value); return *this;} /** *The status of the VPC peering connection.
*/ inline VpcPeeringConnectionStateReason& WithCode(VpcPeeringConnectionStateReasonCode&& value) { SetCode(std::move(value)); return *this;} /** *A message that provides more information about the status, if applicable.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message that provides more information about the status, if applicable.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message that provides more information about the status, if applicable.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message that provides more information about the status, if applicable.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message that provides more information about the status, if applicable.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message that provides more information about the status, if applicable.
*/ inline VpcPeeringConnectionStateReason& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message that provides more information about the status, if applicable.
*/ inline VpcPeeringConnectionStateReason& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message that provides more information about the status, if applicable.
*/ inline VpcPeeringConnectionStateReason& WithMessage(const char* value) { SetMessage(value); return *this;} private: VpcPeeringConnectionStateReasonCode m_code; bool m_codeHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws