Class: Aws::ComputeOptimizerAutomation::Types::TimePeriod

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb

Overview

Defines a time range with inclusive start time and exclusive end time for filtering and analysis.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_time_exclusiveTime

The end time of the period, exclusive. Events before this time are included.

Returns:

  • (Time)


2281
2282
2283
2284
2285
2286
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 2281

class TimePeriod < Struct.new(
  :start_time_inclusive,
  :end_time_exclusive)
  SENSITIVE = []
  include Aws::Structure
end

#start_time_inclusiveTime

The start time of the period, inclusive. Events at or after this time are included.

Returns:

  • (Time)


2281
2282
2283
2284
2285
2286
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 2281

class TimePeriod < Struct.new(
  :start_time_inclusive,
  :end_time_exclusive)
  SENSITIVE = []
  include Aws::Structure
end