All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.autoscalingplans.model.PredefinedScalingMetricSpecification Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Auto Scaling Plans module holds the client classes that are used for communicating with AWS Auto Scaling Plans Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.autoscalingplans.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Represents a predefined metric that can be used for dynamic scaling as part of a target tracking scaling policy. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PredefinedScalingMetricSpecification implements Serializable, Cloneable, StructuredPojo { /** *

* The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling groups, Spot * Fleet requests, and ECS services. *

*/ private String predefinedScalingMetricType; /** *

* 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, Spot Fleet request, or ECS service. *

*

* You create the resource label by appending the final portion of the load balancer ARN and the final portion of * the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. *

*/ private String resourceLabel; /** *

* The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling groups, Spot * Fleet requests, and ECS services. *

* * @param predefinedScalingMetricType * The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling * groups, Spot Fleet requests, and ECS services. * @see ScalingMetricType */ public void setPredefinedScalingMetricType(String predefinedScalingMetricType) { this.predefinedScalingMetricType = predefinedScalingMetricType; } /** *

* The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling groups, Spot * Fleet requests, and ECS services. *

* * @return The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling * groups, Spot Fleet requests, and ECS services. * @see ScalingMetricType */ public String getPredefinedScalingMetricType() { return this.predefinedScalingMetricType; } /** *

* The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling groups, Spot * Fleet requests, and ECS services. *

* * @param predefinedScalingMetricType * The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling * groups, Spot Fleet requests, and ECS services. * @return Returns a reference to this object so that method calls can be chained together. * @see ScalingMetricType */ public PredefinedScalingMetricSpecification withPredefinedScalingMetricType(String predefinedScalingMetricType) { setPredefinedScalingMetricType(predefinedScalingMetricType); return this; } /** *

* The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling groups, Spot * Fleet requests, and ECS services. *

* * @param predefinedScalingMetricType * The metric type. The ALBRequestCountPerTarget metric type applies only to Auto Scaling * groups, Spot Fleet requests, and ECS services. * @return Returns a reference to this object so that method calls can be chained together. * @see ScalingMetricType */ public PredefinedScalingMetricSpecification withPredefinedScalingMetricType(ScalingMetricType predefinedScalingMetricType) { this.predefinedScalingMetricType = predefinedScalingMetricType.toString(); return this; } /** *

* 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, Spot Fleet request, or ECS service. *

*

* You create the resource label by appending the final portion of the load balancer ARN and the final portion of * the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. *

* * @param resourceLabel * 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, Spot Fleet request, or ECS service.

*

* You create the resource label by appending the final portion of the load balancer ARN and the final * portion of the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. */ public void setResourceLabel(String resourceLabel) { this.resourceLabel = resourceLabel; } /** *

* 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, Spot Fleet request, or ECS service. *

*

* You create the resource label by appending the final portion of the load balancer ARN and the final portion of * the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. *

* * @return 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, Spot Fleet request, or ECS service.

*

* You create the resource label by appending the final portion of the load balancer ARN and the final * portion of the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. */ public String getResourceLabel() { return this.resourceLabel; } /** *

* 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, Spot Fleet request, or ECS service. *

*

* You create the resource label by appending the final portion of the load balancer ARN and the final portion of * the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. *

* * @param resourceLabel * 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, Spot Fleet request, or ECS service.

*

* You create the resource label by appending the final portion of the load balancer ARN and the final * portion of the target group ARN into a single value, separated by a forward slash (/). 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. *

    *
  • *
*

* This is an example: * app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d. *

*

* To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation. * @return Returns a reference to this object so that method calls can be chained together. */ public PredefinedScalingMetricSpecification withResourceLabel(String resourceLabel) { setResourceLabel(resourceLabel); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPredefinedScalingMetricType() != null) sb.append("PredefinedScalingMetricType: ").append(getPredefinedScalingMetricType()).append(","); if (getResourceLabel() != null) sb.append("ResourceLabel: ").append(getResourceLabel()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PredefinedScalingMetricSpecification == false) return false; PredefinedScalingMetricSpecification other = (PredefinedScalingMetricSpecification) obj; if (other.getPredefinedScalingMetricType() == null ^ this.getPredefinedScalingMetricType() == null) return false; if (other.getPredefinedScalingMetricType() != null && other.getPredefinedScalingMetricType().equals(this.getPredefinedScalingMetricType()) == false) return false; if (other.getResourceLabel() == null ^ this.getResourceLabel() == null) return false; if (other.getResourceLabel() != null && other.getResourceLabel().equals(this.getResourceLabel()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPredefinedScalingMetricType() == null) ? 0 : getPredefinedScalingMetricType().hashCode()); hashCode = prime * hashCode + ((getResourceLabel() == null) ? 0 : getResourceLabel().hashCode()); return hashCode; } @Override public PredefinedScalingMetricSpecification clone() { try { return (PredefinedScalingMetricSpecification) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.autoscalingplans.model.transform.PredefinedScalingMetricSpecificationMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy