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.
4110 4111 4112 4113 4114 4115 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4110 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/`
4110 4111 4112 4113 4114 4115 |
# File 'lib/aws-sdk-cloudwatch/types.rb', line 4110 class PutMetricDataInput < Struct.new( :namespace, :metric_data) SENSITIVE = [] include Aws::Structure end |