Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data DataPoint = DataPoint' {}
- newDataPoint :: UTCTime -> Double -> DataPoint
- dataPoint_timestamp :: Lens' DataPoint UTCTime
- dataPoint_value :: Lens' DataPoint Double
Documentation
A timestamp, and a single numerical value, which together represent a measurement at a particular point in time.
See: newDataPoint
smart constructor.
Instances
Eq DataPoint Source # | |
Read DataPoint Source # | |
Show DataPoint Source # | |
Generic DataPoint Source # | |
NFData DataPoint Source # | |
Defined in Amazonka.Pi.Types.DataPoint | |
Hashable DataPoint Source # | |
Defined in Amazonka.Pi.Types.DataPoint | |
FromJSON DataPoint Source # | |
type Rep DataPoint Source # | |
Defined in Amazonka.Pi.Types.DataPoint type Rep DataPoint = D1 ('MetaData "DataPoint" "Amazonka.Pi.Types.DataPoint" "libZSservicesZSamazonka-piZSamazonka-pi" 'False) (C1 ('MetaCons "DataPoint'" 'PrefixI 'True) (S1 ('MetaSel ('Just "timestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double))) |
Create a value of DataPoint
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:timestamp:DataPoint'
, dataPoint_timestamp
- The time, in epoch format, associated with a particular Value
.
$sel:value:DataPoint'
, dataPoint_value
- The actual value associated with a particular Timestamp
.