{-# 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.Redshift.Types.SnapshotCopyGrant -- 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.Redshift.Types.SnapshotCopyGrant 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 import Amazonka.Redshift.Internal import Amazonka.Redshift.Types.Tag -- | The snapshot copy grant that grants Amazon Redshift permission to -- encrypt copied snapshots with the specified encrypted symmetric key from -- Amazon Web Services KMS in the destination region. -- -- For more information about managing snapshot copy grants, go to -- -- in the /Amazon Redshift Cluster Management Guide/. -- -- /See:/ 'newSnapshotCopyGrant' smart constructor. data SnapshotCopyGrant = SnapshotCopyGrant' { -- | The unique identifier of the encrypted symmetric key in Amazon Web -- Services KMS to which Amazon Redshift is granted permission. kmsKeyId :: Prelude.Maybe Prelude.Text, -- | The name of the snapshot copy grant. snapshotCopyGrantName :: Prelude.Maybe Prelude.Text, -- | A list of tag instances. tags :: Prelude.Maybe [Tag] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SnapshotCopyGrant' 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: -- -- 'kmsKeyId', 'snapshotCopyGrant_kmsKeyId' - The unique identifier of the encrypted symmetric key in Amazon Web -- Services KMS to which Amazon Redshift is granted permission. -- -- 'snapshotCopyGrantName', 'snapshotCopyGrant_snapshotCopyGrantName' - The name of the snapshot copy grant. -- -- 'tags', 'snapshotCopyGrant_tags' - A list of tag instances. newSnapshotCopyGrant :: SnapshotCopyGrant newSnapshotCopyGrant = SnapshotCopyGrant' { kmsKeyId = Prelude.Nothing, snapshotCopyGrantName = Prelude.Nothing, tags = Prelude.Nothing } -- | The unique identifier of the encrypted symmetric key in Amazon Web -- Services KMS to which Amazon Redshift is granted permission. snapshotCopyGrant_kmsKeyId :: Lens.Lens' SnapshotCopyGrant (Prelude.Maybe Prelude.Text) snapshotCopyGrant_kmsKeyId = Lens.lens (\SnapshotCopyGrant' {kmsKeyId} -> kmsKeyId) (\s@SnapshotCopyGrant' {} a -> s {kmsKeyId = a} :: SnapshotCopyGrant) -- | The name of the snapshot copy grant. snapshotCopyGrant_snapshotCopyGrantName :: Lens.Lens' SnapshotCopyGrant (Prelude.Maybe Prelude.Text) snapshotCopyGrant_snapshotCopyGrantName = Lens.lens (\SnapshotCopyGrant' {snapshotCopyGrantName} -> snapshotCopyGrantName) (\s@SnapshotCopyGrant' {} a -> s {snapshotCopyGrantName = a} :: SnapshotCopyGrant) -- | A list of tag instances. snapshotCopyGrant_tags :: Lens.Lens' SnapshotCopyGrant (Prelude.Maybe [Tag]) snapshotCopyGrant_tags = Lens.lens (\SnapshotCopyGrant' {tags} -> tags) (\s@SnapshotCopyGrant' {} a -> s {tags = a} :: SnapshotCopyGrant) Prelude.. Lens.mapping Lens.coerced instance Data.FromXML SnapshotCopyGrant where parseXML x = SnapshotCopyGrant' Prelude.<$> (x Data..@? "KmsKeyId") Prelude.<*> (x Data..@? "SnapshotCopyGrantName") Prelude.<*> ( x Data..@? "Tags" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "Tag") ) instance Prelude.Hashable SnapshotCopyGrant where hashWithSalt _salt SnapshotCopyGrant' {..} = _salt `Prelude.hashWithSalt` kmsKeyId `Prelude.hashWithSalt` snapshotCopyGrantName `Prelude.hashWithSalt` tags instance Prelude.NFData SnapshotCopyGrant where rnf SnapshotCopyGrant' {..} = Prelude.rnf kmsKeyId `Prelude.seq` Prelude.rnf snapshotCopyGrantName `Prelude.seq` Prelude.rnf tags