{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# 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.RevokeSnapshotAccess -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes the ability of the specified Amazon Web Services account to -- restore the specified snapshot. If the account is currently restoring -- the snapshot, the restore will run to completion. -- -- For more information about working with snapshots, go to -- -- in the /Amazon Redshift Cluster Management Guide/. module Amazonka.Redshift.RevokeSnapshotAccess ( -- * Creating a Request RevokeSnapshotAccess (..), newRevokeSnapshotAccess, -- * Request Lenses revokeSnapshotAccess_snapshotArn, revokeSnapshotAccess_snapshotClusterIdentifier, revokeSnapshotAccess_snapshotIdentifier, revokeSnapshotAccess_accountWithRestoreAccess, -- * Destructuring the Response RevokeSnapshotAccessResponse (..), newRevokeSnapshotAccessResponse, -- * Response Lenses revokeSnapshotAccessResponse_snapshot, revokeSnapshotAccessResponse_httpStatus, ) 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.Types import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | -- -- /See:/ 'newRevokeSnapshotAccess' smart constructor. data RevokeSnapshotAccess = RevokeSnapshotAccess' { -- | The Amazon Resource Name (ARN) of the snapshot associated with the -- message to revoke access. snapshotArn :: Prelude.Maybe Prelude.Text, -- | The identifier of the cluster the snapshot was created from. This -- parameter is required if your IAM user has a policy containing a -- snapshot resource element that specifies anything other than * for the -- cluster name. snapshotClusterIdentifier :: Prelude.Maybe Prelude.Text, -- | The identifier of the snapshot that the account can no longer access. snapshotIdentifier :: Prelude.Maybe Prelude.Text, -- | The identifier of the Amazon Web Services account that can no longer -- restore the specified snapshot. accountWithRestoreAccess :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RevokeSnapshotAccess' 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: -- -- 'snapshotArn', 'revokeSnapshotAccess_snapshotArn' - The Amazon Resource Name (ARN) of the snapshot associated with the -- message to revoke access. -- -- 'snapshotClusterIdentifier', 'revokeSnapshotAccess_snapshotClusterIdentifier' - The identifier of the cluster the snapshot was created from. This -- parameter is required if your IAM user has a policy containing a -- snapshot resource element that specifies anything other than * for the -- cluster name. -- -- 'snapshotIdentifier', 'revokeSnapshotAccess_snapshotIdentifier' - The identifier of the snapshot that the account can no longer access. -- -- 'accountWithRestoreAccess', 'revokeSnapshotAccess_accountWithRestoreAccess' - The identifier of the Amazon Web Services account that can no longer -- restore the specified snapshot. newRevokeSnapshotAccess :: -- | 'accountWithRestoreAccess' Prelude.Text -> RevokeSnapshotAccess newRevokeSnapshotAccess pAccountWithRestoreAccess_ = RevokeSnapshotAccess' { snapshotArn = Prelude.Nothing, snapshotClusterIdentifier = Prelude.Nothing, snapshotIdentifier = Prelude.Nothing, accountWithRestoreAccess = pAccountWithRestoreAccess_ } -- | The Amazon Resource Name (ARN) of the snapshot associated with the -- message to revoke access. revokeSnapshotAccess_snapshotArn :: Lens.Lens' RevokeSnapshotAccess (Prelude.Maybe Prelude.Text) revokeSnapshotAccess_snapshotArn = Lens.lens (\RevokeSnapshotAccess' {snapshotArn} -> snapshotArn) (\s@RevokeSnapshotAccess' {} a -> s {snapshotArn = a} :: RevokeSnapshotAccess) -- | The identifier of the cluster the snapshot was created from. This -- parameter is required if your IAM user has a policy containing a -- snapshot resource element that specifies anything other than * for the -- cluster name. revokeSnapshotAccess_snapshotClusterIdentifier :: Lens.Lens' RevokeSnapshotAccess (Prelude.Maybe Prelude.Text) revokeSnapshotAccess_snapshotClusterIdentifier = Lens.lens (\RevokeSnapshotAccess' {snapshotClusterIdentifier} -> snapshotClusterIdentifier) (\s@RevokeSnapshotAccess' {} a -> s {snapshotClusterIdentifier = a} :: RevokeSnapshotAccess) -- | The identifier of the snapshot that the account can no longer access. revokeSnapshotAccess_snapshotIdentifier :: Lens.Lens' RevokeSnapshotAccess (Prelude.Maybe Prelude.Text) revokeSnapshotAccess_snapshotIdentifier = Lens.lens (\RevokeSnapshotAccess' {snapshotIdentifier} -> snapshotIdentifier) (\s@RevokeSnapshotAccess' {} a -> s {snapshotIdentifier = a} :: RevokeSnapshotAccess) -- | The identifier of the Amazon Web Services account that can no longer -- restore the specified snapshot. revokeSnapshotAccess_accountWithRestoreAccess :: Lens.Lens' RevokeSnapshotAccess Prelude.Text revokeSnapshotAccess_accountWithRestoreAccess = Lens.lens (\RevokeSnapshotAccess' {accountWithRestoreAccess} -> accountWithRestoreAccess) (\s@RevokeSnapshotAccess' {} a -> s {accountWithRestoreAccess = a} :: RevokeSnapshotAccess) instance Core.AWSRequest RevokeSnapshotAccess where type AWSResponse RevokeSnapshotAccess = RevokeSnapshotAccessResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "RevokeSnapshotAccessResult" ( \s h x -> RevokeSnapshotAccessResponse' Prelude.<$> (x Data..@? "Snapshot") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable RevokeSnapshotAccess where hashWithSalt _salt RevokeSnapshotAccess' {..} = _salt `Prelude.hashWithSalt` snapshotArn `Prelude.hashWithSalt` snapshotClusterIdentifier `Prelude.hashWithSalt` snapshotIdentifier `Prelude.hashWithSalt` accountWithRestoreAccess instance Prelude.NFData RevokeSnapshotAccess where rnf RevokeSnapshotAccess' {..} = Prelude.rnf snapshotArn `Prelude.seq` Prelude.rnf snapshotClusterIdentifier `Prelude.seq` Prelude.rnf snapshotIdentifier `Prelude.seq` Prelude.rnf accountWithRestoreAccess instance Data.ToHeaders RevokeSnapshotAccess where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath RevokeSnapshotAccess where toPath = Prelude.const "/" instance Data.ToQuery RevokeSnapshotAccess where toQuery RevokeSnapshotAccess' {..} = Prelude.mconcat [ "Action" Data.=: ("RevokeSnapshotAccess" :: Prelude.ByteString), "Version" Data.=: ("2012-12-01" :: Prelude.ByteString), "SnapshotArn" Data.=: snapshotArn, "SnapshotClusterIdentifier" Data.=: snapshotClusterIdentifier, "SnapshotIdentifier" Data.=: snapshotIdentifier, "AccountWithRestoreAccess" Data.=: accountWithRestoreAccess ] -- | /See:/ 'newRevokeSnapshotAccessResponse' smart constructor. data RevokeSnapshotAccessResponse = RevokeSnapshotAccessResponse' { snapshot :: Prelude.Maybe Snapshot, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RevokeSnapshotAccessResponse' 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: -- -- 'snapshot', 'revokeSnapshotAccessResponse_snapshot' - Undocumented member. -- -- 'httpStatus', 'revokeSnapshotAccessResponse_httpStatus' - The response's http status code. newRevokeSnapshotAccessResponse :: -- | 'httpStatus' Prelude.Int -> RevokeSnapshotAccessResponse newRevokeSnapshotAccessResponse pHttpStatus_ = RevokeSnapshotAccessResponse' { snapshot = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Undocumented member. revokeSnapshotAccessResponse_snapshot :: Lens.Lens' RevokeSnapshotAccessResponse (Prelude.Maybe Snapshot) revokeSnapshotAccessResponse_snapshot = Lens.lens (\RevokeSnapshotAccessResponse' {snapshot} -> snapshot) (\s@RevokeSnapshotAccessResponse' {} a -> s {snapshot = a} :: RevokeSnapshotAccessResponse) -- | The response's http status code. revokeSnapshotAccessResponse_httpStatus :: Lens.Lens' RevokeSnapshotAccessResponse Prelude.Int revokeSnapshotAccessResponse_httpStatus = Lens.lens (\RevokeSnapshotAccessResponse' {httpStatus} -> httpStatus) (\s@RevokeSnapshotAccessResponse' {} a -> s {httpStatus = a} :: RevokeSnapshotAccessResponse) instance Prelude.NFData RevokeSnapshotAccessResponse where rnf RevokeSnapshotAccessResponse' {..} = Prelude.rnf snapshot `Prelude.seq` Prelude.rnf httpStatus