{-# 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.KeyGroup -- 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.KeyGroup where import Amazonka.CloudFront.Types.KeyGroupConfig 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 key group. -- -- A key group contains a list of public keys that you can use with -- . -- -- /See:/ 'newKeyGroup' smart constructor. data KeyGroup = KeyGroup' { -- | The identifier for the key group. id :: Prelude.Text, -- | The date and time when the key group was last modified. lastModifiedTime :: Data.ISO8601, -- | The key group configuration. keyGroupConfig :: KeyGroupConfig } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'KeyGroup' 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: -- -- 'id', 'keyGroup_id' - The identifier for the key group. -- -- 'lastModifiedTime', 'keyGroup_lastModifiedTime' - The date and time when the key group was last modified. -- -- 'keyGroupConfig', 'keyGroup_keyGroupConfig' - The key group configuration. newKeyGroup :: -- | 'id' Prelude.Text -> -- | 'lastModifiedTime' Prelude.UTCTime -> -- | 'keyGroupConfig' KeyGroupConfig -> KeyGroup newKeyGroup pId_ pLastModifiedTime_ pKeyGroupConfig_ = KeyGroup' { id = pId_, lastModifiedTime = Data._Time Lens.# pLastModifiedTime_, keyGroupConfig = pKeyGroupConfig_ } -- | The identifier for the key group. keyGroup_id :: Lens.Lens' KeyGroup Prelude.Text keyGroup_id = Lens.lens (\KeyGroup' {id} -> id) (\s@KeyGroup' {} a -> s {id = a} :: KeyGroup) -- | The date and time when the key group was last modified. keyGroup_lastModifiedTime :: Lens.Lens' KeyGroup Prelude.UTCTime keyGroup_lastModifiedTime = Lens.lens (\KeyGroup' {lastModifiedTime} -> lastModifiedTime) (\s@KeyGroup' {} a -> s {lastModifiedTime = a} :: KeyGroup) Prelude.. Data._Time -- | The key group configuration. keyGroup_keyGroupConfig :: Lens.Lens' KeyGroup KeyGroupConfig keyGroup_keyGroupConfig = Lens.lens (\KeyGroup' {keyGroupConfig} -> keyGroupConfig) (\s@KeyGroup' {} a -> s {keyGroupConfig = a} :: KeyGroup) instance Data.FromXML KeyGroup where parseXML x = KeyGroup' Prelude.<$> (x Data..@ "Id") Prelude.<*> (x Data..@ "LastModifiedTime") Prelude.<*> (x Data..@ "KeyGroupConfig") instance Prelude.Hashable KeyGroup where hashWithSalt _salt KeyGroup' {..} = _salt `Prelude.hashWithSalt` id `Prelude.hashWithSalt` lastModifiedTime `Prelude.hashWithSalt` keyGroupConfig instance Prelude.NFData KeyGroup where rnf KeyGroup' {..} = Prelude.rnf id `Prelude.seq` Prelude.rnf lastModifiedTime `Prelude.seq` Prelude.rnf keyGroupConfig