Class: Aws::CloudWatch::Types::PutMetricDataInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::PutMetricDataInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatch/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric_data ⇒ Array<Types::MetricDatum>
The data for the metric.
-
#namespace ⇒ String
The namespace for the metric data.
Instance Attribute Details
#metric_data ⇒ Array<Types::MetricDatum>
The data for the metric. The array can include no more than 1000 metrics per call.
3923 3924 3925 3926 3927 3928 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 3923 class PutMetricDataInput < Struct.new( :namespace, :metric_data) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace for the metric data. You can use ASCII characters for the namespace, except for control characters which are not supported.
To avoid conflicts with Amazon Web Services service namespaces, you should not specify a namespace that begins with ‘AWS/`
3923 3924 3925 3926 3927 3928 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 3923 class PutMetricDataInput < Struct.new( :namespace, :metric_data) SENSITIVE = [] include Aws::Structure end |