Class: Aws::BCMDashboards::Types::DateTimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::DateTimeRange
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Defines a time period with explicit start and end times for data queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Types::DateTimeValue
The end time of the date range for querying data.
-
#start_time ⇒ Types::DateTimeValue
The start time of the date range for querying data.
Instance Attribute Details
#end_time ⇒ Types::DateTimeValue
The end time of the date range for querying data.
194 195 196 197 198 199 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 194 class DateTimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Types::DateTimeValue
The start time of the date range for querying data.
194 195 196 197 198 199 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 194 class DateTimeRange < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |