Class: Aws::CloudWatchRUM::Types::TimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::TimeRange
- 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
-
#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.
1768 1769 1770 1771 1772 1773 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1768 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.
1768 1769 1770 1771 1772 1773 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1768 class TimeRange < Struct.new( :after, :before) SENSITIVE = [] include Aws::Structure end |