Class: Aws::CloudWatch::Types::PutMetricDataInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatch/types.rb

Overview

Note:

When making an API call, you may pass PutMetricDataInput data as a hash:

{
  namespace: "Namespace", # required
  metric_data: [ # required
    {
      metric_name: "MetricName", # required
      dimensions: [
        {
          name: "DimensionName", # required
          value: "DimensionValue", # required
        },
      ],
      timestamp: Time.now,
      value: 1.0,
      statistic_values: {
        sample_count: 1.0, # required
        sum: 1.0, # required
        minimum: 1.0, # required
        maximum: 1.0, # required
      },
      values: [1.0],
      counts: [1.0],
      unit: "Seconds", # accepts Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None
      storage_resolution: 1,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#metric_dataArray<Types::MetricDatum>

The data for the metric. The array can include no more than 20 metrics per call.

Returns:



1919
1920
1921
1922
1923
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1919

class PutMetricDataInput < Struct.new(
  :namespace,
  :metric_data)
  include Aws::Structure
end

#namespaceString

The namespace for the metric data.

You cannot specify a namespace that begins with “AWS/”. Namespaces that begin with “AWS/” are reserved for use by Amazon Web Services products.

Returns:

  • (String)


1919
1920
1921
1922
1923
# File 'lib/aws-sdk-cloudwatch/types.rb', line 1919

class PutMetricDataInput < Struct.new(
  :namespace,
  :metric_data)
  include Aws::Structure
end