/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes a Reserved Instance listing state.

See Also:

AWS * API Reference

*/ class InstanceCount { public: AWS_EC2_API InstanceCount(); AWS_EC2_API InstanceCount(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API InstanceCount& 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 number of listed Reserved Instances in the state specified by the * state.

*/ inline int GetInstanceCount() const{ return m_instanceCount; } /** *

The number of listed Reserved Instances in the state specified by the * state.

*/ inline bool InstanceCountHasBeenSet() const { return m_instanceCountHasBeenSet; } /** *

The number of listed Reserved Instances in the state specified by the * state.

*/ inline void SetInstanceCount(int value) { m_instanceCountHasBeenSet = true; m_instanceCount = value; } /** *

The number of listed Reserved Instances in the state specified by the * state.

*/ inline InstanceCount& WithInstanceCount(int value) { SetInstanceCount(value); return *this;} /** *

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