/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a Reserved Instance listing state.See Also:
AWS
* API Reference
The number of listed Reserved Instances in the state specified by the
* state
.
The number of listed Reserved Instances in the state specified by the
* state
.
The number of listed Reserved Instances in the state specified by the
* state
.
The number of listed Reserved Instances in the state specified by the
* state
.
The states of the listed Reserved Instances.
*/ inline const ListingState& GetState() const{ return m_state; } /** *The states of the listed Reserved Instances.
*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *The states of the listed Reserved Instances.
*/ inline void SetState(const ListingState& value) { m_stateHasBeenSet = true; m_state = value; } /** *The states of the listed Reserved Instances.
*/ inline void SetState(ListingState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *The states of the listed Reserved Instances.
*/ inline InstanceCount& WithState(const ListingState& value) { SetState(value); return *this;} /** *The states of the listed Reserved Instances.
*/ inline InstanceCount& WithState(ListingState&& value) { SetState(std::move(value)); return *this;} private: int m_instanceCount; bool m_instanceCountHasBeenSet = false; ListingState m_state; bool m_stateHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws