/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metadata about your Savings Plans Purchase Recommendations.See
* Also:
AWS
* API Reference
The unique identifier for the recommendation set.
*/ inline const Aws::String& GetRecommendationId() const{ return m_recommendationId; } /** *The unique identifier for the recommendation set.
*/ inline bool RecommendationIdHasBeenSet() const { return m_recommendationIdHasBeenSet; } /** *The unique identifier for the recommendation set.
*/ inline void SetRecommendationId(const Aws::String& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = value; } /** *The unique identifier for the recommendation set.
*/ inline void SetRecommendationId(Aws::String&& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = std::move(value); } /** *The unique identifier for the recommendation set.
*/ inline void SetRecommendationId(const char* value) { m_recommendationIdHasBeenSet = true; m_recommendationId.assign(value); } /** *The unique identifier for the recommendation set.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithRecommendationId(const Aws::String& value) { SetRecommendationId(value); return *this;} /** *The unique identifier for the recommendation set.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithRecommendationId(Aws::String&& value) { SetRecommendationId(std::move(value)); return *this;} /** *The unique identifier for the recommendation set.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithRecommendationId(const char* value) { SetRecommendationId(value); return *this;} /** *The timestamp that shows when the recommendations were generated.
*/ inline const Aws::String& GetGenerationTimestamp() const{ return m_generationTimestamp; } /** *The timestamp that shows when the recommendations were generated.
*/ inline bool GenerationTimestampHasBeenSet() const { return m_generationTimestampHasBeenSet; } /** *The timestamp that shows when the recommendations were generated.
*/ inline void SetGenerationTimestamp(const Aws::String& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = value; } /** *The timestamp that shows when the recommendations were generated.
*/ inline void SetGenerationTimestamp(Aws::String&& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = std::move(value); } /** *The timestamp that shows when the recommendations were generated.
*/ inline void SetGenerationTimestamp(const char* value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp.assign(value); } /** *The timestamp that shows when the recommendations were generated.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithGenerationTimestamp(const Aws::String& value) { SetGenerationTimestamp(value); return *this;} /** *The timestamp that shows when the recommendations were generated.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithGenerationTimestamp(Aws::String&& value) { SetGenerationTimestamp(std::move(value)); return *this;} /** *The timestamp that shows when the recommendations were generated.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithGenerationTimestamp(const char* value) { SetGenerationTimestamp(value); return *this;} /** *Additional metadata that might be applicable to the recommendation.
*/ inline const Aws::String& GetAdditionalMetadata() const{ return m_additionalMetadata; } /** *Additional metadata that might be applicable to the recommendation.
*/ inline bool AdditionalMetadataHasBeenSet() const { return m_additionalMetadataHasBeenSet; } /** *Additional metadata that might be applicable to the recommendation.
*/ inline void SetAdditionalMetadata(const Aws::String& value) { m_additionalMetadataHasBeenSet = true; m_additionalMetadata = value; } /** *Additional metadata that might be applicable to the recommendation.
*/ inline void SetAdditionalMetadata(Aws::String&& value) { m_additionalMetadataHasBeenSet = true; m_additionalMetadata = std::move(value); } /** *Additional metadata that might be applicable to the recommendation.
*/ inline void SetAdditionalMetadata(const char* value) { m_additionalMetadataHasBeenSet = true; m_additionalMetadata.assign(value); } /** *Additional metadata that might be applicable to the recommendation.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithAdditionalMetadata(const Aws::String& value) { SetAdditionalMetadata(value); return *this;} /** *Additional metadata that might be applicable to the recommendation.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithAdditionalMetadata(Aws::String&& value) { SetAdditionalMetadata(std::move(value)); return *this;} /** *Additional metadata that might be applicable to the recommendation.
*/ inline SavingsPlansPurchaseRecommendationMetadata& WithAdditionalMetadata(const char* value) { SetAdditionalMetadata(value); return *this;} private: Aws::String m_recommendationId; bool m_recommendationIdHasBeenSet = false; Aws::String m_generationTimestamp; bool m_generationTimestampHasBeenSet = false; Aws::String m_additionalMetadata; bool m_additionalMetadataHasBeenSet = false; }; } // namespace Model } // namespace CostExplorer } // namespace Aws