/** * 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 a running instance in a Spot Fleet.

See Also:

AWS * API Reference

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

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of the instance.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of the instance.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The ID of the instance.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The ID of the instance.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The ID of the instance.

*/ inline ActiveInstance& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of the instance.

*/ inline ActiveInstance& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of the instance.

*/ inline ActiveInstance& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The instance type.

*/ inline const Aws::String& GetInstanceType() const{ return m_instanceType; } /** *

The instance type.

*/ inline bool InstanceTypeHasBeenSet() const { return m_instanceTypeHasBeenSet; } /** *

The instance type.

*/ inline void SetInstanceType(const Aws::String& value) { m_instanceTypeHasBeenSet = true; m_instanceType = value; } /** *

The instance type.

*/ inline void SetInstanceType(Aws::String&& value) { m_instanceTypeHasBeenSet = true; m_instanceType = std::move(value); } /** *

The instance type.

*/ inline void SetInstanceType(const char* value) { m_instanceTypeHasBeenSet = true; m_instanceType.assign(value); } /** *

The instance type.

*/ inline ActiveInstance& WithInstanceType(const Aws::String& value) { SetInstanceType(value); return *this;} /** *

The instance type.

*/ inline ActiveInstance& WithInstanceType(Aws::String&& value) { SetInstanceType(std::move(value)); return *this;} /** *

The instance type.

*/ inline ActiveInstance& WithInstanceType(const char* value) { SetInstanceType(value); return *this;} /** *

The ID of the Spot Instance request.

*/ inline const Aws::String& GetSpotInstanceRequestId() const{ return m_spotInstanceRequestId; } /** *

The ID of the Spot Instance request.

*/ inline bool SpotInstanceRequestIdHasBeenSet() const { return m_spotInstanceRequestIdHasBeenSet; } /** *

The ID of the Spot Instance request.

*/ inline void SetSpotInstanceRequestId(const Aws::String& value) { m_spotInstanceRequestIdHasBeenSet = true; m_spotInstanceRequestId = value; } /** *

The ID of the Spot Instance request.

*/ inline void SetSpotInstanceRequestId(Aws::String&& value) { m_spotInstanceRequestIdHasBeenSet = true; m_spotInstanceRequestId = std::move(value); } /** *

The ID of the Spot Instance request.

*/ inline void SetSpotInstanceRequestId(const char* value) { m_spotInstanceRequestIdHasBeenSet = true; m_spotInstanceRequestId.assign(value); } /** *

The ID of the Spot Instance request.

*/ inline ActiveInstance& WithSpotInstanceRequestId(const Aws::String& value) { SetSpotInstanceRequestId(value); return *this;} /** *

The ID of the Spot Instance request.

*/ inline ActiveInstance& WithSpotInstanceRequestId(Aws::String&& value) { SetSpotInstanceRequestId(std::move(value)); return *this;} /** *

The ID of the Spot Instance request.

*/ inline ActiveInstance& WithSpotInstanceRequestId(const char* value) { SetSpotInstanceRequestId(value); return *this;} /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline const InstanceHealthStatus& GetInstanceHealth() const{ return m_instanceHealth; } /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline bool InstanceHealthHasBeenSet() const { return m_instanceHealthHasBeenSet; } /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline void SetInstanceHealth(const InstanceHealthStatus& value) { m_instanceHealthHasBeenSet = true; m_instanceHealth = value; } /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline void SetInstanceHealth(InstanceHealthStatus&& value) { m_instanceHealthHasBeenSet = true; m_instanceHealth = std::move(value); } /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline ActiveInstance& WithInstanceHealth(const InstanceHealthStatus& value) { SetInstanceHealth(value); return *this;} /** *

The health status of the instance. If the status of either the instance * status check or the system status check is impaired, the health * status of the instance is unhealthy. Otherwise, the health status * is healthy.

*/ inline ActiveInstance& WithInstanceHealth(InstanceHealthStatus&& value) { SetInstanceHealth(std::move(value)); return *this;} private: Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Aws::String m_instanceType; bool m_instanceTypeHasBeenSet = false; Aws::String m_spotInstanceRequestId; bool m_spotInstanceRequestIdHasBeenSet = false; InstanceHealthStatus m_instanceHealth; bool m_instanceHealthHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws