Class: Aws::CloudWatchRUM::Types::TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::TimeRange
- Includes:
- Structure
- Defined in:
- 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
-
#after ⇒ Integer
The beginning of the time range to retrieve performance events from.
-
#before ⇒ Integer
The end of the time range to retrieve performance events from.
Instance Attribute Details
#after ⇒ Integer
The beginning of the time range to retrieve performance events from.
1853 1854 1855 1856 1857 1858 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1853 class TimeRange < Struct.new( :after, :before) SENSITIVE = [] include Aws::Structure end |
#before ⇒ Integer
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.
1853 1854 1855 1856 1857 1858 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1853 class TimeRange < Struct.new( :after, :before) SENSITIVE = [] include Aws::Structure end |