/** * 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 Spot Instance placement.

See Also:

AWS * API Reference

*/ class SpotPlacement { public: AWS_EC2_API SpotPlacement(); AWS_EC2_API SpotPlacement(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API SpotPlacement& 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 Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline const Aws::String& GetAvailabilityZone() const{ return m_availabilityZone; } /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline bool AvailabilityZoneHasBeenSet() const { return m_availabilityZoneHasBeenSet; } /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline void SetAvailabilityZone(const Aws::String& value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone = value; } /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline void SetAvailabilityZone(Aws::String&& value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone = std::move(value); } /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline void SetAvailabilityZone(const char* value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone.assign(value); } /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline SpotPlacement& WithAvailabilityZone(const Aws::String& value) { SetAvailabilityZone(value); return *this;} /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline SpotPlacement& WithAvailabilityZone(Aws::String&& value) { SetAvailabilityZone(std::move(value)); return *this;} /** *

The Availability Zone.

[Spot Fleet only] To specify multiple * Availability Zones, separate them using commas; for example, "us-west-2a, * us-west-2b".

*/ inline SpotPlacement& WithAvailabilityZone(const char* value) { SetAvailabilityZone(value); return *this;} /** *

The name of the placement group.

*/ inline const Aws::String& GetGroupName() const{ return m_groupName; } /** *

The name of the placement group.

*/ inline bool GroupNameHasBeenSet() const { return m_groupNameHasBeenSet; } /** *

The name of the placement group.

*/ inline void SetGroupName(const Aws::String& value) { m_groupNameHasBeenSet = true; m_groupName = value; } /** *

The name of the placement group.

*/ inline void SetGroupName(Aws::String&& value) { m_groupNameHasBeenSet = true; m_groupName = std::move(value); } /** *

The name of the placement group.

*/ inline void SetGroupName(const char* value) { m_groupNameHasBeenSet = true; m_groupName.assign(value); } /** *

The name of the placement group.

*/ inline SpotPlacement& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;} /** *

The name of the placement group.

*/ inline SpotPlacement& WithGroupName(Aws::String&& value) { SetGroupName(std::move(value)); return *this;} /** *

The name of the placement group.

*/ inline SpotPlacement& WithGroupName(const char* value) { SetGroupName(value); return *this;} /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline const Tenancy& GetTenancy() const{ return m_tenancy; } /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline bool TenancyHasBeenSet() const { return m_tenancyHasBeenSet; } /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline void SetTenancy(const Tenancy& value) { m_tenancyHasBeenSet = true; m_tenancy = value; } /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline void SetTenancy(Tenancy&& value) { m_tenancyHasBeenSet = true; m_tenancy = std::move(value); } /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline SpotPlacement& WithTenancy(const Tenancy& value) { SetTenancy(value); return *this;} /** *

The tenancy of the instance (if the instance is running in a VPC). An * instance with a tenancy of dedicated runs on single-tenant * hardware. The host tenancy is not supported for Spot Instances.

*/ inline SpotPlacement& WithTenancy(Tenancy&& value) { SetTenancy(std::move(value)); return *this;} private: Aws::String m_availabilityZone; bool m_availabilityZoneHasBeenSet = false; Aws::String m_groupName; bool m_groupNameHasBeenSet = false; Tenancy m_tenancy; bool m_tenancyHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws