Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CustomizedScalingMetricSpecification

import type { CustomizedScalingMetricSpecification } from "https://aws-api.deno.dev/v0.4/services/autoscalingplans.ts?docs=full";

Represents a CloudWatch metric of your choosing that can be used for dynamic scaling as part of a target tracking scaling policy.

To create your customized scaling metric specification:

  • Add values for each required parameter from CloudWatch. You can use an existing metric, or a new metric that you create. To use your own metric, you must first publish the metric to CloudWatch. For more information, see Publish Custom Metrics in the Amazon CloudWatch User Guide.
  • Choose a metric that changes proportionally with capacity. The value of the metric should increase or decrease in inverse proportion to the number of capacity units. That is, the value of the metric should decrease when capacity increases.

For information about terminology, available metrics, or how to publish new metrics, see Amazon CloudWatch Concepts in the Amazon CloudWatch User Guide.

interface CustomizedScalingMetricSpecification {
Dimensions?: MetricDimension[] | null;
MetricName: string;
Namespace: string;
Statistic: MetricStatistic;
Unit?: string | null;
}

§Properties

§
Dimensions?: MetricDimension[] | null
[src]

The dimensions of the metric.

Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.

§
MetricName: string
[src]

The name of the metric.

§
Namespace: string
[src]

The namespace of the metric.

§

The statistic of the metric.

§
Unit?: string | null
[src]

The unit of the metric.