You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AutoScalingPlans::Types::PredefinedLoadMetricSpecification

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PredefinedLoadMetricSpecification as input to an Aws::Client method, you can use a vanilla Hash:

{
  predefined_load_metric_type: "ASGTotalCPUUtilization", # required, accepts ASGTotalCPUUtilization, ASGTotalNetworkIn, ASGTotalNetworkOut, ALBTargetGroupRequestCount
  resource_label: "ResourceLabel",
}

Represents a predefined metric that can be used for predictive scaling.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#predefined_load_metric_typeString

The metric type.

Possible values:

  • ASGTotalCPUUtilization
  • ASGTotalNetworkIn
  • ASGTotalNetworkOut
  • ALBTargetGroupRequestCount

Returns:

  • (String)

    The metric type.

#resource_labelString

Identifies the resource associated with the metric type. You can\'t specify a resource label unless the metric type is ALBRequestCountPerTarget and there is a target group for an Application Load Balancer attached to the Auto Scaling group.

The format is app/<load-balancer-name>/<load-balancer-id>/targetgroup/<target-group-name>/<target-group-id>, where:

  • app/<load-balancer-name>/<load-balancer-id> is the final portion of the load balancer ARN.

  • targetgroup/<target-group-name>/<target-group-id> is the final portion of the target group ARN.

Returns:

  • (String)

    Identifies the resource associated with the metric type.