Class: Aws::ApplicationSignals::Types::MetricGraph
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::MetricGraph
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
A structure that contains metric data queries and time range information that provides context for audit findings through relevant performance metrics.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end time for the metric data included in this graph.
-
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data queries that define the metrics to be retrieved and analyzed as part of the audit finding context.
-
#start_time ⇒ Time
The start time for the metric data included in this graph.
Instance Attribute Details
#end_time ⇒ Time
The end time for the metric data included in this graph. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.
1944 1945 1946 1947 1948 1949 1950 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1944 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#metric_data_queries ⇒ Array<Types::MetricDataQuery>
An array of metric data queries that define the metrics to be retrieved and analyzed as part of the audit finding context.
1944 1945 1946 1947 1948 1949 1950 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1944 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time for the metric data included in this graph. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.
1944 1945 1946 1947 1948 1949 1950 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 1944 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |