Class: Aws::IoTSiteWise::Types::TimeInNanos
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::TimeInNanos
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains a timestamp with optional nanosecond granularity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#offset_in_nanos ⇒ Integer
The nanosecond offset from ‘timeInSeconds`.
-
#time_in_seconds ⇒ Integer
The timestamp date, in seconds, in the Unix epoch format.
Instance Attribute Details
#offset_in_nanos ⇒ Integer
The nanosecond offset from ‘timeInSeconds`.
8587 8588 8589 8590 8591 8592 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 8587 class TimeInNanos < Struct.new( :time_in_seconds, :offset_in_nanos) SENSITIVE = [] include Aws::Structure end |
#time_in_seconds ⇒ Integer
The timestamp date, in seconds, in the Unix epoch format. Fractional nanosecond data is provided by ‘offsetInNanos`.
8587 8588 8589 8590 8591 8592 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 8587 class TimeInNanos < Struct.new( :time_in_seconds, :offset_in_nanos) SENSITIVE = [] include Aws::Structure end |