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

Details about the Amazon Redshift instances that Amazon Web Services * recommends that you purchase.

See Also:

AWS * API Reference

*/ class RedshiftInstanceDetails { public: AWS_COSTEXPLORER_API RedshiftInstanceDetails(); AWS_COSTEXPLORER_API RedshiftInstanceDetails(Aws::Utils::Json::JsonView jsonValue); AWS_COSTEXPLORER_API RedshiftInstanceDetails& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_COSTEXPLORER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The instance family of the recommended reservation.

*/ inline const Aws::String& GetFamily() const{ return m_family; } /** *

The instance family of the recommended reservation.

*/ inline bool FamilyHasBeenSet() const { return m_familyHasBeenSet; } /** *

The instance family of the recommended reservation.

*/ inline void SetFamily(const Aws::String& value) { m_familyHasBeenSet = true; m_family = value; } /** *

The instance family of the recommended reservation.

*/ inline void SetFamily(Aws::String&& value) { m_familyHasBeenSet = true; m_family = std::move(value); } /** *

The instance family of the recommended reservation.

*/ inline void SetFamily(const char* value) { m_familyHasBeenSet = true; m_family.assign(value); } /** *

The instance family of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithFamily(const Aws::String& value) { SetFamily(value); return *this;} /** *

The instance family of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithFamily(Aws::String&& value) { SetFamily(std::move(value)); return *this;} /** *

The instance family of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithFamily(const char* value) { SetFamily(value); return *this;} /** *

The type of node that Amazon Web Services recommends.

*/ inline const Aws::String& GetNodeType() const{ return m_nodeType; } /** *

The type of node that Amazon Web Services recommends.

*/ inline bool NodeTypeHasBeenSet() const { return m_nodeTypeHasBeenSet; } /** *

The type of node that Amazon Web Services recommends.

*/ inline void SetNodeType(const Aws::String& value) { m_nodeTypeHasBeenSet = true; m_nodeType = value; } /** *

The type of node that Amazon Web Services recommends.

*/ inline void SetNodeType(Aws::String&& value) { m_nodeTypeHasBeenSet = true; m_nodeType = std::move(value); } /** *

The type of node that Amazon Web Services recommends.

*/ inline void SetNodeType(const char* value) { m_nodeTypeHasBeenSet = true; m_nodeType.assign(value); } /** *

The type of node that Amazon Web Services recommends.

*/ inline RedshiftInstanceDetails& WithNodeType(const Aws::String& value) { SetNodeType(value); return *this;} /** *

The type of node that Amazon Web Services recommends.

*/ inline RedshiftInstanceDetails& WithNodeType(Aws::String&& value) { SetNodeType(std::move(value)); return *this;} /** *

The type of node that Amazon Web Services recommends.

*/ inline RedshiftInstanceDetails& WithNodeType(const char* value) { SetNodeType(value); return *this;} /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline const Aws::String& GetRegion() const{ return m_region; } /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; } /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline void SetRegion(const Aws::String& value) { m_regionHasBeenSet = true; m_region = value; } /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline void SetRegion(Aws::String&& value) { m_regionHasBeenSet = true; m_region = std::move(value); } /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline void SetRegion(const char* value) { m_regionHasBeenSet = true; m_region.assign(value); } /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithRegion(const Aws::String& value) { SetRegion(value); return *this;} /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;} /** *

The Amazon Web Services Region of the recommended reservation.

*/ inline RedshiftInstanceDetails& WithRegion(const char* value) { SetRegion(value); return *this;} /** *

Determines whether the recommendation is for a current-generation * instance.

*/ inline bool GetCurrentGeneration() const{ return m_currentGeneration; } /** *

Determines whether the recommendation is for a current-generation * instance.

*/ inline bool CurrentGenerationHasBeenSet() const { return m_currentGenerationHasBeenSet; } /** *

Determines whether the recommendation is for a current-generation * instance.

*/ inline void SetCurrentGeneration(bool value) { m_currentGenerationHasBeenSet = true; m_currentGeneration = value; } /** *

Determines whether the recommendation is for a current-generation * instance.

*/ inline RedshiftInstanceDetails& WithCurrentGeneration(bool value) { SetCurrentGeneration(value); return *this;} /** *

Determines whether the recommended reservation is size flexible.

*/ inline bool GetSizeFlexEligible() const{ return m_sizeFlexEligible; } /** *

Determines whether the recommended reservation is size flexible.

*/ inline bool SizeFlexEligibleHasBeenSet() const { return m_sizeFlexEligibleHasBeenSet; } /** *

Determines whether the recommended reservation is size flexible.

*/ inline void SetSizeFlexEligible(bool value) { m_sizeFlexEligibleHasBeenSet = true; m_sizeFlexEligible = value; } /** *

Determines whether the recommended reservation is size flexible.

*/ inline RedshiftInstanceDetails& WithSizeFlexEligible(bool value) { SetSizeFlexEligible(value); return *this;} private: Aws::String m_family; bool m_familyHasBeenSet = false; Aws::String m_nodeType; bool m_nodeTypeHasBeenSet = false; Aws::String m_region; bool m_regionHasBeenSet = false; bool m_currentGeneration; bool m_currentGenerationHasBeenSet = false; bool m_sizeFlexEligible; bool m_sizeFlexEligibleHasBeenSet = false; }; } // namespace Model } // namespace CostExplorer } // namespace Aws