/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the price for a Reserved Instance.See Also:
AWS
* API Reference
The current price schedule, as determined by the term remaining for the * Reserved Instance in the listing.
A specific price schedule is always in * effect, but only one price schedule can be active at any time. Take, for * example, a Reserved Instance listing that has five months remaining in its term. * When you specify price schedules for five months and two months, this means that * schedule 1, covering the first three months of the remaining term, will be * active during months 5, 4, and 3. Then schedule 2, covering the last two months * of the term, will be active for months 2 and 1.
*/ inline bool GetActive() const{ return m_active; } /** *The current price schedule, as determined by the term remaining for the * Reserved Instance in the listing.
A specific price schedule is always in * effect, but only one price schedule can be active at any time. Take, for * example, a Reserved Instance listing that has five months remaining in its term. * When you specify price schedules for five months and two months, this means that * schedule 1, covering the first three months of the remaining term, will be * active during months 5, 4, and 3. Then schedule 2, covering the last two months * of the term, will be active for months 2 and 1.
*/ inline bool ActiveHasBeenSet() const { return m_activeHasBeenSet; } /** *The current price schedule, as determined by the term remaining for the * Reserved Instance in the listing.
A specific price schedule is always in * effect, but only one price schedule can be active at any time. Take, for * example, a Reserved Instance listing that has five months remaining in its term. * When you specify price schedules for five months and two months, this means that * schedule 1, covering the first three months of the remaining term, will be * active during months 5, 4, and 3. Then schedule 2, covering the last two months * of the term, will be active for months 2 and 1.
*/ inline void SetActive(bool value) { m_activeHasBeenSet = true; m_active = value; } /** *The current price schedule, as determined by the term remaining for the * Reserved Instance in the listing.
A specific price schedule is always in * effect, but only one price schedule can be active at any time. Take, for * example, a Reserved Instance listing that has five months remaining in its term. * When you specify price schedules for five months and two months, this means that * schedule 1, covering the first three months of the remaining term, will be * active during months 5, 4, and 3. Then schedule 2, covering the last two months * of the term, will be active for months 2 and 1.
*/ inline PriceSchedule& WithActive(bool value) { SetActive(value); return *this;} /** *The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The currency for transacting the Reserved Instance resale. At this time, the
* only supported currency is USD
.
The fixed price for the term.
*/ inline double GetPrice() const{ return m_price; } /** *The fixed price for the term.
*/ inline bool PriceHasBeenSet() const { return m_priceHasBeenSet; } /** *The fixed price for the term.
*/ inline void SetPrice(double value) { m_priceHasBeenSet = true; m_price = value; } /** *The fixed price for the term.
*/ inline PriceSchedule& WithPrice(double value) { SetPrice(value); return *this;} /** *The number of months remaining in the reservation. For example, 2 is the * second to the last month before the capacity reservation expires.
*/ inline long long GetTerm() const{ return m_term; } /** *The number of months remaining in the reservation. For example, 2 is the * second to the last month before the capacity reservation expires.
*/ inline bool TermHasBeenSet() const { return m_termHasBeenSet; } /** *The number of months remaining in the reservation. For example, 2 is the * second to the last month before the capacity reservation expires.
*/ inline void SetTerm(long long value) { m_termHasBeenSet = true; m_term = value; } /** *The number of months remaining in the reservation. For example, 2 is the * second to the last month before the capacity reservation expires.
*/ inline PriceSchedule& WithTerm(long long value) { SetTerm(value); return *this;} private: bool m_active; bool m_activeHasBeenSet = false; CurrencyCodeValues m_currencyCode; bool m_currencyCodeHasBeenSet = false; double m_price; bool m_priceHasBeenSet = false; long long m_term; bool m_termHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws