/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about this specific recommendation, such as the timestamp for
* when Amazon Web Services made a specific recommendation.See
* Also:
AWS
* API Reference
The ID for this specific recommendation.
*/ inline const Aws::String& GetRecommendationId() const{ return m_recommendationId; } /** *The ID for this specific recommendation.
*/ inline bool RecommendationIdHasBeenSet() const { return m_recommendationIdHasBeenSet; } /** *The ID for this specific recommendation.
*/ inline void SetRecommendationId(const Aws::String& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = value; } /** *The ID for this specific recommendation.
*/ inline void SetRecommendationId(Aws::String&& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = std::move(value); } /** *The ID for this specific recommendation.
*/ inline void SetRecommendationId(const char* value) { m_recommendationIdHasBeenSet = true; m_recommendationId.assign(value); } /** *The ID for this specific recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithRecommendationId(const Aws::String& value) { SetRecommendationId(value); return *this;} /** *The ID for this specific recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithRecommendationId(Aws::String&& value) { SetRecommendationId(std::move(value)); return *this;} /** *The ID for this specific recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithRecommendationId(const char* value) { SetRecommendationId(value); return *this;} /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline const Aws::String& GetGenerationTimestamp() const{ return m_generationTimestamp; } /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline bool GenerationTimestampHasBeenSet() const { return m_generationTimestampHasBeenSet; } /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline void SetGenerationTimestamp(const Aws::String& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = value; } /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline void SetGenerationTimestamp(Aws::String&& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = std::move(value); } /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline void SetGenerationTimestamp(const char* value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp.assign(value); } /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithGenerationTimestamp(const Aws::String& value) { SetGenerationTimestamp(value); return *this;} /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithGenerationTimestamp(Aws::String&& value) { SetGenerationTimestamp(std::move(value)); return *this;} /** *The timestamp for when Amazon Web Services made this recommendation.
*/ inline ReservationPurchaseRecommendationMetadata& WithGenerationTimestamp(const char* value) { SetGenerationTimestamp(value); return *this;} private: Aws::String m_recommendationId; bool m_recommendationIdHasBeenSet = false; Aws::String m_generationTimestamp; bool m_generationTimestampHasBeenSet = false; }; } // namespace Model } // namespace CostExplorer } // namespace Aws