Class: Aws::CodeGuruProfiler::Types::TimestampStructure
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::TimestampStructure
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeguruprofiler/types.rb
Overview
A data type that contains a ‘Timestamp` object. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#value ⇒ Time
A ‘Timestamp`.
Instance Attribute Details
#value ⇒ Time
A ‘Timestamp`. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
1916 1917 1918 1919 1920 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1916 class TimestampStructure < Struct.new( :value) SENSITIVE = [] include Aws::Structure end |