libZSservicesZSamazonka-application-autoscalingZSamazonka-application-autoscaling
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Description

 
Synopsis

Documentation

data CustomizedMetricSpecification Source #

Represents a CloudWatch metric of your choosing for a target tracking scaling policy to use with Application Auto Scaling.

For information about the available metrics for a service, see Amazon Web Services Services That Publish CloudWatch Metrics in the Amazon CloudWatch User Guide.

To create your customized 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, and increase when capacity decreases.

For more information about CloudWatch, see Amazon CloudWatch Concepts.

See: newCustomizedMetricSpecification smart constructor.

Constructors

CustomizedMetricSpecification' 

Fields

Instances

Instances details
Eq CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Read CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Show CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Generic CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Associated Types

type Rep CustomizedMetricSpecification :: Type -> Type #

NFData CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

Hashable CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

ToJSON CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

FromJSON CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

type Rep CustomizedMetricSpecification Source # 
Instance details

Defined in Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification

type Rep CustomizedMetricSpecification = D1 ('MetaData "CustomizedMetricSpecification" "Amazonka.ApplicationAutoScaling.Types.CustomizedMetricSpecification" "libZSservicesZSamazonka-application-autoscalingZSamazonka-application-autoscaling" 'False) (C1 ('MetaCons "CustomizedMetricSpecification'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "dimensions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [MetricDimension])) :*: S1 ('MetaSel ('Just "unit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "metricName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "statistic") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MetricStatistic)))))

newCustomizedMetricSpecification Source #

Create a value of CustomizedMetricSpecification with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:dimensions:CustomizedMetricSpecification', customizedMetricSpecification_dimensions - The dimensions of the metric.

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

$sel:unit:CustomizedMetricSpecification', customizedMetricSpecification_unit - The unit of the metric.

$sel:metricName:CustomizedMetricSpecification', customizedMetricSpecification_metricName - The name of the metric.

$sel:namespace:CustomizedMetricSpecification', customizedMetricSpecification_namespace - The namespace of the metric.

$sel:statistic:CustomizedMetricSpecification', customizedMetricSpecification_statistic - The statistic of the metric.

customizedMetricSpecification_dimensions :: Lens' CustomizedMetricSpecification (Maybe [MetricDimension]) Source #

The dimensions of the metric.

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