{-# 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.LicenseManager.Types.IssuerDetails -- 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.LicenseManager.Types.IssuerDetails where 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 -- | Details associated with the issuer of a license. -- -- /See:/ 'newIssuerDetails' smart constructor. data IssuerDetails = IssuerDetails' { -- | Issuer key fingerprint. keyFingerprint :: Prelude.Maybe Prelude.Text, -- | Issuer name. name :: Prelude.Maybe Prelude.Text, -- | Asymmetric KMS key from Key Management Service. The KMS key must have a -- key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing -- algorithm. signKey :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'IssuerDetails' 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: -- -- 'keyFingerprint', 'issuerDetails_keyFingerprint' - Issuer key fingerprint. -- -- 'name', 'issuerDetails_name' - Issuer name. -- -- 'signKey', 'issuerDetails_signKey' - Asymmetric KMS key from Key Management Service. The KMS key must have a -- key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing -- algorithm. newIssuerDetails :: IssuerDetails newIssuerDetails = IssuerDetails' { keyFingerprint = Prelude.Nothing, name = Prelude.Nothing, signKey = Prelude.Nothing } -- | Issuer key fingerprint. issuerDetails_keyFingerprint :: Lens.Lens' IssuerDetails (Prelude.Maybe Prelude.Text) issuerDetails_keyFingerprint = Lens.lens (\IssuerDetails' {keyFingerprint} -> keyFingerprint) (\s@IssuerDetails' {} a -> s {keyFingerprint = a} :: IssuerDetails) -- | Issuer name. issuerDetails_name :: Lens.Lens' IssuerDetails (Prelude.Maybe Prelude.Text) issuerDetails_name = Lens.lens (\IssuerDetails' {name} -> name) (\s@IssuerDetails' {} a -> s {name = a} :: IssuerDetails) -- | Asymmetric KMS key from Key Management Service. The KMS key must have a -- key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing -- algorithm. issuerDetails_signKey :: Lens.Lens' IssuerDetails (Prelude.Maybe Prelude.Text) issuerDetails_signKey = Lens.lens (\IssuerDetails' {signKey} -> signKey) (\s@IssuerDetails' {} a -> s {signKey = a} :: IssuerDetails) instance Data.FromJSON IssuerDetails where parseJSON = Data.withObject "IssuerDetails" ( \x -> IssuerDetails' Prelude.<$> (x Data..:? "KeyFingerprint") Prelude.<*> (x Data..:? "Name") Prelude.<*> (x Data..:? "SignKey") ) instance Prelude.Hashable IssuerDetails where hashWithSalt _salt IssuerDetails' {..} = _salt `Prelude.hashWithSalt` keyFingerprint `Prelude.hashWithSalt` name `Prelude.hashWithSalt` signKey instance Prelude.NFData IssuerDetails where rnf IssuerDetails' {..} = Prelude.rnf keyFingerprint `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf signKey