amazonka-config-2.0: Amazon Config SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Config.Types.TimeWindow

Description

 
Synopsis

Documentation

data TimeWindow Source #

Filters evaluation results based on start and end times.

See: newTimeWindow smart constructor.

Constructors

TimeWindow' 

Fields

Instances

Instances details
ToJSON TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

Generic TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

Associated Types

type Rep TimeWindow :: Type -> Type #

Read TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

Show TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

NFData TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

Methods

rnf :: TimeWindow -> () #

Eq TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

Hashable TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

type Rep TimeWindow Source # 
Instance details

Defined in Amazonka.Config.Types.TimeWindow

type Rep TimeWindow = D1 ('MetaData "TimeWindow" "Amazonka.Config.Types.TimeWindow" "amazonka-config-2.0-7GF0fBbVw65uROwJwpcE3" 'False) (C1 ('MetaCons "TimeWindow'" 'PrefixI 'True) (S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))

newTimeWindow :: TimeWindow Source #

Create a value of TimeWindow with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:endTime:TimeWindow', timeWindow_endTime - The end time of an execution. The end time must be after the start date.

$sel:startTime:TimeWindow', timeWindow_startTime - The start time of an execution.

timeWindow_endTime :: Lens' TimeWindow (Maybe UTCTime) Source #

The end time of an execution. The end time must be after the start date.

timeWindow_startTime :: Lens' TimeWindow (Maybe UTCTime) Source #

The start time of an execution.