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

com.amazonaws.services.autoscalingplans.model.ScalingPolicy 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 scaling policy. *

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

* The name of the scaling policy. *

*/ private String policyName; /** *

* The type of scaling policy. *

*/ private String policyType; /** *

* The target tracking scaling policy. Includes support for predefined or customized metrics. *

*/ private TargetTrackingConfiguration targetTrackingConfiguration; /** *

* The name of the scaling policy. *

* * @param policyName * The name of the scaling policy. */ public void setPolicyName(String policyName) { this.policyName = policyName; } /** *

* The name of the scaling policy. *

* * @return The name of the scaling policy. */ public String getPolicyName() { return this.policyName; } /** *

* The name of the scaling policy. *

* * @param policyName * The name of the scaling policy. * @return Returns a reference to this object so that method calls can be chained together. */ public ScalingPolicy withPolicyName(String policyName) { setPolicyName(policyName); return this; } /** *

* The type of scaling policy. *

* * @param policyType * The type of scaling policy. * @see PolicyType */ public void setPolicyType(String policyType) { this.policyType = policyType; } /** *

* The type of scaling policy. *

* * @return The type of scaling policy. * @see PolicyType */ public String getPolicyType() { return this.policyType; } /** *

* The type of scaling policy. *

* * @param policyType * The type of scaling policy. * @return Returns a reference to this object so that method calls can be chained together. * @see PolicyType */ public ScalingPolicy withPolicyType(String policyType) { setPolicyType(policyType); return this; } /** *

* The type of scaling policy. *

* * @param policyType * The type of scaling policy. * @return Returns a reference to this object so that method calls can be chained together. * @see PolicyType */ public ScalingPolicy withPolicyType(PolicyType policyType) { this.policyType = policyType.toString(); return this; } /** *

* The target tracking scaling policy. Includes support for predefined or customized metrics. *

* * @param targetTrackingConfiguration * The target tracking scaling policy. Includes support for predefined or customized metrics. */ public void setTargetTrackingConfiguration(TargetTrackingConfiguration targetTrackingConfiguration) { this.targetTrackingConfiguration = targetTrackingConfiguration; } /** *

* The target tracking scaling policy. Includes support for predefined or customized metrics. *

* * @return The target tracking scaling policy. Includes support for predefined or customized metrics. */ public TargetTrackingConfiguration getTargetTrackingConfiguration() { return this.targetTrackingConfiguration; } /** *

* The target tracking scaling policy. Includes support for predefined or customized metrics. *

* * @param targetTrackingConfiguration * The target tracking scaling policy. Includes support for predefined or customized metrics. * @return Returns a reference to this object so that method calls can be chained together. */ public ScalingPolicy withTargetTrackingConfiguration(TargetTrackingConfiguration targetTrackingConfiguration) { setTargetTrackingConfiguration(targetTrackingConfiguration); 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 (getPolicyName() != null) sb.append("PolicyName: ").append(getPolicyName()).append(","); if (getPolicyType() != null) sb.append("PolicyType: ").append(getPolicyType()).append(","); if (getTargetTrackingConfiguration() != null) sb.append("TargetTrackingConfiguration: ").append(getTargetTrackingConfiguration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ScalingPolicy == false) return false; ScalingPolicy other = (ScalingPolicy) obj; if (other.getPolicyName() == null ^ this.getPolicyName() == null) return false; if (other.getPolicyName() != null && other.getPolicyName().equals(this.getPolicyName()) == false) return false; if (other.getPolicyType() == null ^ this.getPolicyType() == null) return false; if (other.getPolicyType() != null && other.getPolicyType().equals(this.getPolicyType()) == false) return false; if (other.getTargetTrackingConfiguration() == null ^ this.getTargetTrackingConfiguration() == null) return false; if (other.getTargetTrackingConfiguration() != null && other.getTargetTrackingConfiguration().equals(this.getTargetTrackingConfiguration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPolicyName() == null) ? 0 : getPolicyName().hashCode()); hashCode = prime * hashCode + ((getPolicyType() == null) ? 0 : getPolicyType().hashCode()); hashCode = prime * hashCode + ((getTargetTrackingConfiguration() == null) ? 0 : getTargetTrackingConfiguration().hashCode()); return hashCode; } @Override public ScalingPolicy clone() { try { return (ScalingPolicy) 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.ScalingPolicyMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy