/** * 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 { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the state of a CIDR block.

See Also:

AWS * API Reference

*/ class VpcCidrBlockState { public: AWS_EC2_API VpcCidrBlockState(); AWS_EC2_API VpcCidrBlockState(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API VpcCidrBlockState& 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 state of the CIDR block.

*/ inline const VpcCidrBlockStateCode& GetState() const{ return m_state; } /** *

The state of the CIDR block.

*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *

The state of the CIDR block.

*/ inline void SetState(const VpcCidrBlockStateCode& value) { m_stateHasBeenSet = true; m_state = value; } /** *

The state of the CIDR block.

*/ inline void SetState(VpcCidrBlockStateCode&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *

The state of the CIDR block.

*/ inline VpcCidrBlockState& WithState(const VpcCidrBlockStateCode& value) { SetState(value); return *this;} /** *

The state of the CIDR block.

*/ inline VpcCidrBlockState& WithState(VpcCidrBlockStateCode&& value) { SetState(std::move(value)); return *this;} /** *

A message about the status of the CIDR block, if applicable.

*/ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** *

A message about the status of the CIDR block, if applicable.

*/ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** *

A message about the status of the CIDR block, if applicable.

*/ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** *

A message about the status of the CIDR block, if applicable.

*/ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** *

A message about the status of the CIDR block, if applicable.

*/ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** *

A message about the status of the CIDR block, if applicable.

*/ inline VpcCidrBlockState& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *

A message about the status of the CIDR block, if applicable.

*/ inline VpcCidrBlockState& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *

A message about the status of the CIDR block, if applicable.

*/ inline VpcCidrBlockState& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} private: VpcCidrBlockStateCode m_state; bool m_stateHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws