Class: Aws::BCMDashboards::Types::DateTimeRange

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#end_timeTypes::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_timeTypes::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