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.
2149 2150 2151 2152 2153 2154 2155 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2149 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.
2149 2150 2151 2152 2153 2154 2155 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2149 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.
2149 2150 2151 2152 2153 2154 2155 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 2149 class MetricGraph < Struct.new( :metric_data_queries, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |