Class: Aws::AutoScaling::Types::CustomizedMetricSpecification

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

Overview

Note:

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

{
  metric_name: "MetricName", # required
  namespace: "MetricNamespace", # required
  dimensions: [
    {
      name: "MetricDimensionName", # required
      value: "MetricDimensionValue", # required
    },
  ],
  statistic: "Average", # required, accepts Average, Minimum, Maximum, SampleCount, Sum
  unit: "MetricUnit",
}

Configures a customized metric for a target tracking policy.

Instance Attribute Summary collapse

Instance Attribute Details

#dimensionsArray<Types::MetricDimension>

The dimensions of the metric.

Returns:



1314
1315
1316
1317
1318
1319
1320
1321
# File 'lib/aws-sdk-autoscaling/types.rb', line 1314

class CustomizedMetricSpecification < Struct.new(
  :metric_name,
  :namespace,
  :dimensions,
  :statistic,
  :unit)
  include Aws::Structure
end

#metric_nameString

The name of the metric.

Returns:

  • (String)


1314
1315
1316
1317
1318
1319
1320
1321
# File 'lib/aws-sdk-autoscaling/types.rb', line 1314

class CustomizedMetricSpecification < Struct.new(
  :metric_name,
  :namespace,
  :dimensions,
  :statistic,
  :unit)
  include Aws::Structure
end

#namespaceString

The namespace of the metric.

Returns:

  • (String)


1314
1315
1316
1317
1318
1319
1320
1321
# File 'lib/aws-sdk-autoscaling/types.rb', line 1314

class CustomizedMetricSpecification < Struct.new(
  :metric_name,
  :namespace,
  :dimensions,
  :statistic,
  :unit)
  include Aws::Structure
end

#statisticString

The statistic of the metric.

Returns:

  • (String)


1314
1315
1316
1317
1318
1319
1320
1321
# File 'lib/aws-sdk-autoscaling/types.rb', line 1314

class CustomizedMetricSpecification < Struct.new(
  :metric_name,
  :namespace,
  :dimensions,
  :statistic,
  :unit)
  include Aws::Structure
end

#unitString

The unit of the metric.

Returns:

  • (String)


1314
1315
1316
1317
1318
1319
1320
1321
# File 'lib/aws-sdk-autoscaling/types.rb', line 1314

class CustomizedMetricSpecification < Struct.new(
  :metric_name,
  :namespace,
  :dimensions,
  :statistic,
  :unit)
  include Aws::Structure
end