/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the state of a CIDR block.See Also:
AWS
* API Reference
The state of a CIDR block.
*/ inline const SubnetCidrBlockStateCode& GetState() const{ return m_state; } /** *The state of a CIDR block.
*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *The state of a CIDR block.
*/ inline void SetState(const SubnetCidrBlockStateCode& value) { m_stateHasBeenSet = true; m_state = value; } /** *The state of a CIDR block.
*/ inline void SetState(SubnetCidrBlockStateCode&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *The state of a CIDR block.
*/ inline SubnetCidrBlockState& WithState(const SubnetCidrBlockStateCode& value) { SetState(value); return *this;} /** *The state of a CIDR block.
*/ inline SubnetCidrBlockState& WithState(SubnetCidrBlockStateCode&& 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 SubnetCidrBlockState& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *A message about the status of the CIDR block, if applicable.
*/ inline SubnetCidrBlockState& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *A message about the status of the CIDR block, if applicable.
*/ inline SubnetCidrBlockState& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} private: SubnetCidrBlockStateCode m_state; bool m_stateHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws