{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.EC2.Types.PriceScheduleSpecification -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.EC2.Types.PriceScheduleSpecification where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import Amazonka.EC2.Types.CurrencyCodeValues import qualified Amazonka.Prelude as Prelude -- | Describes the price for a Reserved Instance. -- -- /See:/ 'newPriceScheduleSpecification' smart constructor. data PriceScheduleSpecification = PriceScheduleSpecification' { -- | The currency for transacting the Reserved Instance resale. At this time, -- the only supported currency is @USD@. currencyCode :: Prelude.Maybe CurrencyCodeValues, -- | The fixed price for the term. price :: Prelude.Maybe Prelude.Double, -- | The number of months remaining in the reservation. For example, 2 is the -- second to the last month before the capacity reservation expires. term :: Prelude.Maybe Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PriceScheduleSpecification' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'currencyCode', 'priceScheduleSpecification_currencyCode' - The currency for transacting the Reserved Instance resale. At this time, -- the only supported currency is @USD@. -- -- 'price', 'priceScheduleSpecification_price' - The fixed price for the term. -- -- 'term', 'priceScheduleSpecification_term' - The number of months remaining in the reservation. For example, 2 is the -- second to the last month before the capacity reservation expires. newPriceScheduleSpecification :: PriceScheduleSpecification newPriceScheduleSpecification = PriceScheduleSpecification' { currencyCode = Prelude.Nothing, price = Prelude.Nothing, term = Prelude.Nothing } -- | The currency for transacting the Reserved Instance resale. At this time, -- the only supported currency is @USD@. priceScheduleSpecification_currencyCode :: Lens.Lens' PriceScheduleSpecification (Prelude.Maybe CurrencyCodeValues) priceScheduleSpecification_currencyCode = Lens.lens (\PriceScheduleSpecification' {currencyCode} -> currencyCode) (\s@PriceScheduleSpecification' {} a -> s {currencyCode = a} :: PriceScheduleSpecification) -- | The fixed price for the term. priceScheduleSpecification_price :: Lens.Lens' PriceScheduleSpecification (Prelude.Maybe Prelude.Double) priceScheduleSpecification_price = Lens.lens (\PriceScheduleSpecification' {price} -> price) (\s@PriceScheduleSpecification' {} a -> s {price = a} :: PriceScheduleSpecification) -- | The number of months remaining in the reservation. For example, 2 is the -- second to the last month before the capacity reservation expires. priceScheduleSpecification_term :: Lens.Lens' PriceScheduleSpecification (Prelude.Maybe Prelude.Integer) priceScheduleSpecification_term = Lens.lens (\PriceScheduleSpecification' {term} -> term) (\s@PriceScheduleSpecification' {} a -> s {term = a} :: PriceScheduleSpecification) instance Prelude.Hashable PriceScheduleSpecification where hashWithSalt _salt PriceScheduleSpecification' {..} = _salt `Prelude.hashWithSalt` currencyCode `Prelude.hashWithSalt` price `Prelude.hashWithSalt` term instance Prelude.NFData PriceScheduleSpecification where rnf PriceScheduleSpecification' {..} = Prelude.rnf currencyCode `Prelude.seq` Prelude.rnf price `Prelude.seq` Prelude.rnf term instance Data.ToQuery PriceScheduleSpecification where toQuery PriceScheduleSpecification' {..} = Prelude.mconcat [ "CurrencyCode" Data.=: currencyCode, "Price" Data.=: price, "Term" Data.=: term ]