Class: Aws::CloudWatch::Types::GetMetricDataOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::GetMetricDataOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#messages ⇒ Array<Types::MessageData>
Contains a message about this ‘GetMetricData` operation, if the operation results in such a message.
-
#metric_data_results ⇒ Array<Types::MetricDataResult>
The metrics that are returned, including the metric name, namespace, and dimensions.
-
#next_token ⇒ String
A token that marks the next batch of returned results.
Instance Attribute Details
#messages ⇒ Array<Types::MessageData>
Contains a message about this ‘GetMetricData` operation, if the operation results in such a message. An example of a message that might be returned is `Maximum number of allowed metrics exceeded`. If there is a message, as much of the operation as possible is still executed.
A message appears here only if it is related to the global ‘GetMetricData` operation. Any message about a specific metric returned by the operation appears in the `MetricDataResult` object returned for that metric.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1430 class GetMetricDataOutput < Struct.new( :metric_data_results, :next_token, :messages) SENSITIVE = [] include Aws::Structure end |
#metric_data_results ⇒ Array<Types::MetricDataResult>
The metrics that are returned, including the metric name, namespace, and dimensions.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1430 class GetMetricDataOutput < Struct.new( :metric_data_results, :next_token, :messages) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that marks the next batch of returned results.
1430 1431 1432 1433 1434 1435 1436 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1430 class GetMetricDataOutput < Struct.new( :metric_data_results, :next_token, :messages) SENSITIVE = [] include Aws::Structure end |