{-# 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.AccessAnalyzer.Types.AccessPreviewSummary -- 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.AccessAnalyzer.Types.AccessPreviewSummary where import Amazonka.AccessAnalyzer.Types.AccessPreviewStatus import Amazonka.AccessAnalyzer.Types.AccessPreviewStatusReason 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 -- | Contains a summary of information about an access preview. -- -- /See:/ 'newAccessPreviewSummary' smart constructor. data AccessPreviewSummary = AccessPreviewSummary' { statusReason :: Prelude.Maybe AccessPreviewStatusReason, -- | The unique ID for the access preview. id :: Prelude.Text, -- | The ARN of the analyzer used to generate the access preview. analyzerArn :: Prelude.Text, -- | The time at which the access preview was created. createdAt :: Data.ISO8601, -- | The status of the access preview. -- -- - @Creating@ - The access preview creation is in progress. -- -- - @Completed@ - The access preview is complete and previews the -- findings for external access to the resource. -- -- - @Failed@ - The access preview creation has failed. status :: AccessPreviewStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AccessPreviewSummary' 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: -- -- 'statusReason', 'accessPreviewSummary_statusReason' - Undocumented member. -- -- 'id', 'accessPreviewSummary_id' - The unique ID for the access preview. -- -- 'analyzerArn', 'accessPreviewSummary_analyzerArn' - The ARN of the analyzer used to generate the access preview. -- -- 'createdAt', 'accessPreviewSummary_createdAt' - The time at which the access preview was created. -- -- 'status', 'accessPreviewSummary_status' - The status of the access preview. -- -- - @Creating@ - The access preview creation is in progress. -- -- - @Completed@ - The access preview is complete and previews the -- findings for external access to the resource. -- -- - @Failed@ - The access preview creation has failed. newAccessPreviewSummary :: -- | 'id' Prelude.Text -> -- | 'analyzerArn' Prelude.Text -> -- | 'createdAt' Prelude.UTCTime -> -- | 'status' AccessPreviewStatus -> AccessPreviewSummary newAccessPreviewSummary pId_ pAnalyzerArn_ pCreatedAt_ pStatus_ = AccessPreviewSummary' { statusReason = Prelude.Nothing, id = pId_, analyzerArn = pAnalyzerArn_, createdAt = Data._Time Lens.# pCreatedAt_, status = pStatus_ } -- | Undocumented member. accessPreviewSummary_statusReason :: Lens.Lens' AccessPreviewSummary (Prelude.Maybe AccessPreviewStatusReason) accessPreviewSummary_statusReason = Lens.lens (\AccessPreviewSummary' {statusReason} -> statusReason) (\s@AccessPreviewSummary' {} a -> s {statusReason = a} :: AccessPreviewSummary) -- | The unique ID for the access preview. accessPreviewSummary_id :: Lens.Lens' AccessPreviewSummary Prelude.Text accessPreviewSummary_id = Lens.lens (\AccessPreviewSummary' {id} -> id) (\s@AccessPreviewSummary' {} a -> s {id = a} :: AccessPreviewSummary) -- | The ARN of the analyzer used to generate the access preview. accessPreviewSummary_analyzerArn :: Lens.Lens' AccessPreviewSummary Prelude.Text accessPreviewSummary_analyzerArn = Lens.lens (\AccessPreviewSummary' {analyzerArn} -> analyzerArn) (\s@AccessPreviewSummary' {} a -> s {analyzerArn = a} :: AccessPreviewSummary) -- | The time at which the access preview was created. accessPreviewSummary_createdAt :: Lens.Lens' AccessPreviewSummary Prelude.UTCTime accessPreviewSummary_createdAt = Lens.lens (\AccessPreviewSummary' {createdAt} -> createdAt) (\s@AccessPreviewSummary' {} a -> s {createdAt = a} :: AccessPreviewSummary) Prelude.. Data._Time -- | The status of the access preview. -- -- - @Creating@ - The access preview creation is in progress. -- -- - @Completed@ - The access preview is complete and previews the -- findings for external access to the resource. -- -- - @Failed@ - The access preview creation has failed. accessPreviewSummary_status :: Lens.Lens' AccessPreviewSummary AccessPreviewStatus accessPreviewSummary_status = Lens.lens (\AccessPreviewSummary' {status} -> status) (\s@AccessPreviewSummary' {} a -> s {status = a} :: AccessPreviewSummary) instance Data.FromJSON AccessPreviewSummary where parseJSON = Data.withObject "AccessPreviewSummary" ( \x -> AccessPreviewSummary' Prelude.<$> (x Data..:? "statusReason") Prelude.<*> (x Data..: "id") Prelude.<*> (x Data..: "analyzerArn") Prelude.<*> (x Data..: "createdAt") Prelude.<*> (x Data..: "status") ) instance Prelude.Hashable AccessPreviewSummary where hashWithSalt _salt AccessPreviewSummary' {..} = _salt `Prelude.hashWithSalt` statusReason `Prelude.hashWithSalt` id `Prelude.hashWithSalt` analyzerArn `Prelude.hashWithSalt` createdAt `Prelude.hashWithSalt` status instance Prelude.NFData AccessPreviewSummary where rnf AccessPreviewSummary' {..} = Prelude.rnf statusReason `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf analyzerArn `Prelude.seq` Prelude.rnf createdAt `Prelude.seq` Prelude.rnf status