{-# 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.CloudTrailProperties -- 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.CloudTrailProperties where import Amazonka.AccessAnalyzer.Types.TrailProperties 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 information about CloudTrail access. -- -- /See:/ 'newCloudTrailProperties' smart constructor. data CloudTrailProperties = CloudTrailProperties' { -- | A @TrailProperties@ object that contains settings for trail properties. trailProperties :: [TrailProperties], -- | The start of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp before this time are not -- considered to generate a policy. startTime :: Data.ISO8601, -- | The end of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp after this time are not -- considered to generate a policy. If this is not included in the request, -- the default value is the current time. endTime :: Data.ISO8601 } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CloudTrailProperties' 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: -- -- 'trailProperties', 'cloudTrailProperties_trailProperties' - A @TrailProperties@ object that contains settings for trail properties. -- -- 'startTime', 'cloudTrailProperties_startTime' - The start of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp before this time are not -- considered to generate a policy. -- -- 'endTime', 'cloudTrailProperties_endTime' - The end of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp after this time are not -- considered to generate a policy. If this is not included in the request, -- the default value is the current time. newCloudTrailProperties :: -- | 'startTime' Prelude.UTCTime -> -- | 'endTime' Prelude.UTCTime -> CloudTrailProperties newCloudTrailProperties pStartTime_ pEndTime_ = CloudTrailProperties' { trailProperties = Prelude.mempty, startTime = Data._Time Lens.# pStartTime_, endTime = Data._Time Lens.# pEndTime_ } -- | A @TrailProperties@ object that contains settings for trail properties. cloudTrailProperties_trailProperties :: Lens.Lens' CloudTrailProperties [TrailProperties] cloudTrailProperties_trailProperties = Lens.lens (\CloudTrailProperties' {trailProperties} -> trailProperties) (\s@CloudTrailProperties' {} a -> s {trailProperties = a} :: CloudTrailProperties) Prelude.. Lens.coerced -- | The start of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp before this time are not -- considered to generate a policy. cloudTrailProperties_startTime :: Lens.Lens' CloudTrailProperties Prelude.UTCTime cloudTrailProperties_startTime = Lens.lens (\CloudTrailProperties' {startTime} -> startTime) (\s@CloudTrailProperties' {} a -> s {startTime = a} :: CloudTrailProperties) Prelude.. Data._Time -- | The end of the time range for which IAM Access Analyzer reviews your -- CloudTrail events. Events with a timestamp after this time are not -- considered to generate a policy. If this is not included in the request, -- the default value is the current time. cloudTrailProperties_endTime :: Lens.Lens' CloudTrailProperties Prelude.UTCTime cloudTrailProperties_endTime = Lens.lens (\CloudTrailProperties' {endTime} -> endTime) (\s@CloudTrailProperties' {} a -> s {endTime = a} :: CloudTrailProperties) Prelude.. Data._Time instance Data.FromJSON CloudTrailProperties where parseJSON = Data.withObject "CloudTrailProperties" ( \x -> CloudTrailProperties' Prelude.<$> ( x Data..:? "trailProperties" Data..!= Prelude.mempty ) Prelude.<*> (x Data..: "startTime") Prelude.<*> (x Data..: "endTime") ) instance Prelude.Hashable CloudTrailProperties where hashWithSalt _salt CloudTrailProperties' {..} = _salt `Prelude.hashWithSalt` trailProperties `Prelude.hashWithSalt` startTime `Prelude.hashWithSalt` endTime instance Prelude.NFData CloudTrailProperties where rnf CloudTrailProperties' {..} = Prelude.rnf trailProperties `Prelude.seq` Prelude.rnf startTime `Prelude.seq` Prelude.rnf endTime