amazonka-cloudfront-2.0: gen/Amazonka/CloudFront/Types/ActiveTrustedSigners.hs
{-# 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.CloudFront.Types.ActiveTrustedSigners
-- 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.CloudFront.Types.ActiveTrustedSigners where
import Amazonka.CloudFront.Types.Signer
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
-- | A list of Amazon Web Services accounts and the active CloudFront key
-- pairs in each account that CloudFront can use to verify the signatures
-- of signed URLs and signed cookies.
--
-- /See:/ 'newActiveTrustedSigners' smart constructor.
data ActiveTrustedSigners = ActiveTrustedSigners'
{ -- | A list of Amazon Web Services accounts and the identifiers of active
-- CloudFront key pairs in each account that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies.
items :: Prelude.Maybe [Signer],
-- | This field is @true@ if any of the Amazon Web Services accounts in the
-- list have active CloudFront key pairs that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies. If not, this field is
-- @false@.
enabled :: Prelude.Bool,
-- | The number of Amazon Web Services accounts in the list.
quantity :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ActiveTrustedSigners' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'items', 'activeTrustedSigners_items' - A list of Amazon Web Services accounts and the identifiers of active
-- CloudFront key pairs in each account that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies.
--
-- 'enabled', 'activeTrustedSigners_enabled' - This field is @true@ if any of the Amazon Web Services accounts in the
-- list have active CloudFront key pairs that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies. If not, this field is
-- @false@.
--
-- 'quantity', 'activeTrustedSigners_quantity' - The number of Amazon Web Services accounts in the list.
newActiveTrustedSigners ::
-- | 'enabled'
Prelude.Bool ->
-- | 'quantity'
Prelude.Int ->
ActiveTrustedSigners
newActiveTrustedSigners pEnabled_ pQuantity_ =
ActiveTrustedSigners'
{ items = Prelude.Nothing,
enabled = pEnabled_,
quantity = pQuantity_
}
-- | A list of Amazon Web Services accounts and the identifiers of active
-- CloudFront key pairs in each account that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies.
activeTrustedSigners_items :: Lens.Lens' ActiveTrustedSigners (Prelude.Maybe [Signer])
activeTrustedSigners_items = Lens.lens (\ActiveTrustedSigners' {items} -> items) (\s@ActiveTrustedSigners' {} a -> s {items = a} :: ActiveTrustedSigners) Prelude.. Lens.mapping Lens.coerced
-- | This field is @true@ if any of the Amazon Web Services accounts in the
-- list have active CloudFront key pairs that CloudFront can use to verify
-- the signatures of signed URLs and signed cookies. If not, this field is
-- @false@.
activeTrustedSigners_enabled :: Lens.Lens' ActiveTrustedSigners Prelude.Bool
activeTrustedSigners_enabled = Lens.lens (\ActiveTrustedSigners' {enabled} -> enabled) (\s@ActiveTrustedSigners' {} a -> s {enabled = a} :: ActiveTrustedSigners)
-- | The number of Amazon Web Services accounts in the list.
activeTrustedSigners_quantity :: Lens.Lens' ActiveTrustedSigners Prelude.Int
activeTrustedSigners_quantity = Lens.lens (\ActiveTrustedSigners' {quantity} -> quantity) (\s@ActiveTrustedSigners' {} a -> s {quantity = a} :: ActiveTrustedSigners)
instance Data.FromXML ActiveTrustedSigners where
parseXML x =
ActiveTrustedSigners'
Prelude.<$> ( x
Data..@? "Items"
Core..!@ Prelude.mempty
Prelude.>>= Core.may (Data.parseXMLList "Signer")
)
Prelude.<*> (x Data..@ "Enabled")
Prelude.<*> (x Data..@ "Quantity")
instance Prelude.Hashable ActiveTrustedSigners where
hashWithSalt _salt ActiveTrustedSigners' {..} =
_salt
`Prelude.hashWithSalt` items
`Prelude.hashWithSalt` enabled
`Prelude.hashWithSalt` quantity
instance Prelude.NFData ActiveTrustedSigners where
rnf ActiveTrustedSigners' {..} =
Prelude.rnf items
`Prelude.seq` Prelude.rnf enabled
`Prelude.seq` Prelude.rnf quantity