{-# 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.PricingDetail -- 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.PricingDetail 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 qualified Amazonka.Prelude as Prelude -- | Describes a Reserved Instance offering. -- -- /See:/ 'newPricingDetail' smart constructor. data PricingDetail = PricingDetail' { -- | The number of reservations available for the price. count :: Prelude.Maybe Prelude.Int, -- | The price per instance. price :: Prelude.Maybe Prelude.Double } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PricingDetail' 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: -- -- 'count', 'pricingDetail_count' - The number of reservations available for the price. -- -- 'price', 'pricingDetail_price' - The price per instance. newPricingDetail :: PricingDetail newPricingDetail = PricingDetail' { count = Prelude.Nothing, price = Prelude.Nothing } -- | The number of reservations available for the price. pricingDetail_count :: Lens.Lens' PricingDetail (Prelude.Maybe Prelude.Int) pricingDetail_count = Lens.lens (\PricingDetail' {count} -> count) (\s@PricingDetail' {} a -> s {count = a} :: PricingDetail) -- | The price per instance. pricingDetail_price :: Lens.Lens' PricingDetail (Prelude.Maybe Prelude.Double) pricingDetail_price = Lens.lens (\PricingDetail' {price} -> price) (\s@PricingDetail' {} a -> s {price = a} :: PricingDetail) instance Data.FromXML PricingDetail where parseXML x = PricingDetail' Prelude.<$> (x Data..@? "count") Prelude.<*> (x Data..@? "price") instance Prelude.Hashable PricingDetail where hashWithSalt _salt PricingDetail' {..} = _salt `Prelude.hashWithSalt` count `Prelude.hashWithSalt` price instance Prelude.NFData PricingDetail where rnf PricingDetail' {..} = Prelude.rnf count `Prelude.seq` Prelude.rnf price