This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ce/include/aws/ce/model/RightsizingRecommendationMetadata.h

174 lines
6.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ce/CostExplorer_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/ce/model/LookbackPeriodInDays.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CostExplorer
{
namespace Model
{
/**
* <p>Metadata for this recommendation set.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationMetadata">AWS
* API Reference</a></p>
*/
class AWS_COSTEXPLORER_API RightsizingRecommendationMetadata
{
public:
RightsizingRecommendationMetadata();
RightsizingRecommendationMetadata(Aws::Utils::Json::JsonView jsonValue);
RightsizingRecommendationMetadata& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p> The ID for this specific recommendation.</p>
*/
inline const Aws::String& GetRecommendationId() const{ return m_recommendationId; }
/**
* <p> The ID for this specific recommendation.</p>
*/
inline bool RecommendationIdHasBeenSet() const { return m_recommendationIdHasBeenSet; }
/**
* <p> The ID for this specific recommendation.</p>
*/
inline void SetRecommendationId(const Aws::String& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = value; }
/**
* <p> The ID for this specific recommendation.</p>
*/
inline void SetRecommendationId(Aws::String&& value) { m_recommendationIdHasBeenSet = true; m_recommendationId = std::move(value); }
/**
* <p> The ID for this specific recommendation.</p>
*/
inline void SetRecommendationId(const char* value) { m_recommendationIdHasBeenSet = true; m_recommendationId.assign(value); }
/**
* <p> The ID for this specific recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithRecommendationId(const Aws::String& value) { SetRecommendationId(value); return *this;}
/**
* <p> The ID for this specific recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithRecommendationId(Aws::String&& value) { SetRecommendationId(std::move(value)); return *this;}
/**
* <p> The ID for this specific recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithRecommendationId(const char* value) { SetRecommendationId(value); return *this;}
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline const Aws::String& GetGenerationTimestamp() const{ return m_generationTimestamp; }
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline bool GenerationTimestampHasBeenSet() const { return m_generationTimestampHasBeenSet; }
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline void SetGenerationTimestamp(const Aws::String& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = value; }
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline void SetGenerationTimestamp(Aws::String&& value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp = std::move(value); }
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline void SetGenerationTimestamp(const char* value) { m_generationTimestampHasBeenSet = true; m_generationTimestamp.assign(value); }
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithGenerationTimestamp(const Aws::String& value) { SetGenerationTimestamp(value); return *this;}
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithGenerationTimestamp(Aws::String&& value) { SetGenerationTimestamp(std::move(value)); return *this;}
/**
* <p> The timestamp for when Amazon Web Services made this recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithGenerationTimestamp(const char* value) { SetGenerationTimestamp(value); return *this;}
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline const LookbackPeriodInDays& GetLookbackPeriodInDays() const{ return m_lookbackPeriodInDays; }
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline bool LookbackPeriodInDaysHasBeenSet() const { return m_lookbackPeriodInDaysHasBeenSet; }
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline void SetLookbackPeriodInDays(const LookbackPeriodInDays& value) { m_lookbackPeriodInDaysHasBeenSet = true; m_lookbackPeriodInDays = value; }
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline void SetLookbackPeriodInDays(LookbackPeriodInDays&& value) { m_lookbackPeriodInDaysHasBeenSet = true; m_lookbackPeriodInDays = std::move(value); }
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithLookbackPeriodInDays(const LookbackPeriodInDays& value) { SetLookbackPeriodInDays(value); return *this;}
/**
* <p> How many days of previous usage that Amazon Web Services considers when
* making this recommendation.</p>
*/
inline RightsizingRecommendationMetadata& WithLookbackPeriodInDays(LookbackPeriodInDays&& value) { SetLookbackPeriodInDays(std::move(value)); return *this;}
private:
Aws::String m_recommendationId;
bool m_recommendationIdHasBeenSet;
Aws::String m_generationTimestamp;
bool m_generationTimestampHasBeenSet;
LookbackPeriodInDays m_lookbackPeriodInDays;
bool m_lookbackPeriodInDaysHasBeenSet;
};
} // namespace Model
} // namespace CostExplorer
} // namespace Aws