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/SavingsPlansDetails.h

185 lines
6.3 KiB
C
Raw Normal View History

/**
* 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 <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CostExplorer
{
namespace Model
{
/**
* <p>Attribute details on a specific Savings Plan.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/SavingsPlansDetails">AWS
* API Reference</a></p>
*/
class AWS_COSTEXPLORER_API SavingsPlansDetails
{
public:
SavingsPlansDetails();
SavingsPlansDetails(Aws::Utils::Json::JsonView jsonValue);
SavingsPlansDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline const Aws::String& GetRegion() const{ return m_region; }
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; }
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline void SetRegion(const Aws::String& value) { m_regionHasBeenSet = true; m_region = value; }
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline void SetRegion(Aws::String&& value) { m_regionHasBeenSet = true; m_region = std::move(value); }
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline void SetRegion(const char* value) { m_regionHasBeenSet = true; m_region.assign(value); }
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline SavingsPlansDetails& WithRegion(const Aws::String& value) { SetRegion(value); return *this;}
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline SavingsPlansDetails& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;}
/**
* <p>A collection of AWS resources in a geographic area. Each AWS Region is
* isolated and independent of the other Regions.</p>
*/
inline SavingsPlansDetails& WithRegion(const char* value) { SetRegion(value); return *this;}
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline const Aws::String& GetInstanceFamily() const{ return m_instanceFamily; }
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline bool InstanceFamilyHasBeenSet() const { return m_instanceFamilyHasBeenSet; }
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline void SetInstanceFamily(const Aws::String& value) { m_instanceFamilyHasBeenSet = true; m_instanceFamily = value; }
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline void SetInstanceFamily(Aws::String&& value) { m_instanceFamilyHasBeenSet = true; m_instanceFamily = std::move(value); }
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline void SetInstanceFamily(const char* value) { m_instanceFamilyHasBeenSet = true; m_instanceFamily.assign(value); }
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline SavingsPlansDetails& WithInstanceFamily(const Aws::String& value) { SetInstanceFamily(value); return *this;}
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline SavingsPlansDetails& WithInstanceFamily(Aws::String&& value) { SetInstanceFamily(std::move(value)); return *this;}
/**
* <p>A group of instance types that Savings Plans applies to.</p>
*/
inline SavingsPlansDetails& WithInstanceFamily(const char* value) { SetInstanceFamily(value); return *this;}
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline const Aws::String& GetOfferingId() const{ return m_offeringId; }
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline bool OfferingIdHasBeenSet() const { return m_offeringIdHasBeenSet; }
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline void SetOfferingId(const Aws::String& value) { m_offeringIdHasBeenSet = true; m_offeringId = value; }
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline void SetOfferingId(Aws::String&& value) { m_offeringIdHasBeenSet = true; m_offeringId = std::move(value); }
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline void SetOfferingId(const char* value) { m_offeringIdHasBeenSet = true; m_offeringId.assign(value); }
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline SavingsPlansDetails& WithOfferingId(const Aws::String& value) { SetOfferingId(value); return *this;}
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline SavingsPlansDetails& WithOfferingId(Aws::String&& value) { SetOfferingId(std::move(value)); return *this;}
/**
* <p>The unique ID used to distinguish Savings Plans from one another.</p>
*/
inline SavingsPlansDetails& WithOfferingId(const char* value) { SetOfferingId(value); return *this;}
private:
Aws::String m_region;
bool m_regionHasBeenSet;
Aws::String m_instanceFamily;
bool m_instanceFamilyHasBeenSet;
Aws::String m_offeringId;
bool m_offeringIdHasBeenSet;
};
} // namespace Model
} // namespace CostExplorer
} // namespace Aws