Class: Aws::CloudWatchRUM::Types::TimeRange

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

Overview

A structure that defines the time range that you want to retrieve results from.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#afterInteger

The beginning of the time range to retrieve performance events from.

Returns:

  • (Integer)


1582
1583
1584
1585
1586
1587
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1582

class TimeRange < Struct.new(
  :after,
  :before)
  SENSITIVE = []
  include Aws::Structure
end

#beforeInteger

The end of the time range to retrieve performance events from. If you omit this, the time range extends to the time that this operation is performed.

Returns:

  • (Integer)


1582
1583
1584
1585
1586
1587
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1582

class TimeRange < Struct.new(
  :after,
  :before)
  SENSITIVE = []
  include Aws::Structure
end