Class: Aws::BCMDashboards::Types::DateTimeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::DateTimeValue
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Represents a point in time that can be specified as either an absolute date (for example, "2025-07-01") or a relative time period using ISO 8601 duration format (for example, "-P3M" for three months ago).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of date/time value:
ABSOLUTE
for specific dates orRELATIVE
for dynamic time periods. -
#value ⇒ String
The actual date/time value.
Instance Attribute Details
#type ⇒ String
The type of date/time value: ABSOLUTE
for specific dates or
RELATIVE
for dynamic time periods.
216 217 218 219 220 221 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 216 class DateTimeValue < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The actual date/time value.
216 217 218 219 220 221 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 216 class DateTimeValue < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |