com.amazonaws.services.elasticbeanstalk.model.ApplicationVersionLifecycleConfig Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticbeanstalk Show documentation
/*
* Copyright 2013-2018 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.elasticbeanstalk.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* The application version lifecycle settings for an application. Defines the rules that Elastic Beanstalk applies to an
* application's versions in order to avoid hitting the per-region limit for application versions.
*
*
* When Elastic Beanstalk deletes an application version from its database, you can no longer deploy that version to an
* environment. The source bundle remains in S3 unless you configure the rule to delete it.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ApplicationVersionLifecycleConfig implements Serializable, Cloneable {
/**
*
* Specify a max count rule to restrict the number of application versions that are retained for an application.
*
*/
private MaxCountRule maxCountRule;
/**
*
* Specify a max age rule to restrict the length of time that application versions are retained for an application.
*
*/
private MaxAgeRule maxAgeRule;
/**
*
* Specify a max count rule to restrict the number of application versions that are retained for an application.
*
*
* @param maxCountRule
* Specify a max count rule to restrict the number of application versions that are retained for an
* application.
*/
public void setMaxCountRule(MaxCountRule maxCountRule) {
this.maxCountRule = maxCountRule;
}
/**
*
* Specify a max count rule to restrict the number of application versions that are retained for an application.
*
*
* @return Specify a max count rule to restrict the number of application versions that are retained for an
* application.
*/
public MaxCountRule getMaxCountRule() {
return this.maxCountRule;
}
/**
*
* Specify a max count rule to restrict the number of application versions that are retained for an application.
*
*
* @param maxCountRule
* Specify a max count rule to restrict the number of application versions that are retained for an
* application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationVersionLifecycleConfig withMaxCountRule(MaxCountRule maxCountRule) {
setMaxCountRule(maxCountRule);
return this;
}
/**
*
* Specify a max age rule to restrict the length of time that application versions are retained for an application.
*
*
* @param maxAgeRule
* Specify a max age rule to restrict the length of time that application versions are retained for an
* application.
*/
public void setMaxAgeRule(MaxAgeRule maxAgeRule) {
this.maxAgeRule = maxAgeRule;
}
/**
*
* Specify a max age rule to restrict the length of time that application versions are retained for an application.
*
*
* @return Specify a max age rule to restrict the length of time that application versions are retained for an
* application.
*/
public MaxAgeRule getMaxAgeRule() {
return this.maxAgeRule;
}
/**
*
* Specify a max age rule to restrict the length of time that application versions are retained for an application.
*
*
* @param maxAgeRule
* Specify a max age rule to restrict the length of time that application versions are retained for an
* application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ApplicationVersionLifecycleConfig withMaxAgeRule(MaxAgeRule maxAgeRule) {
setMaxAgeRule(maxAgeRule);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getMaxCountRule() != null)
sb.append("MaxCountRule: ").append(getMaxCountRule()).append(",");
if (getMaxAgeRule() != null)
sb.append("MaxAgeRule: ").append(getMaxAgeRule());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ApplicationVersionLifecycleConfig == false)
return false;
ApplicationVersionLifecycleConfig other = (ApplicationVersionLifecycleConfig) obj;
if (other.getMaxCountRule() == null ^ this.getMaxCountRule() == null)
return false;
if (other.getMaxCountRule() != null && other.getMaxCountRule().equals(this.getMaxCountRule()) == false)
return false;
if (other.getMaxAgeRule() == null ^ this.getMaxAgeRule() == null)
return false;
if (other.getMaxAgeRule() != null && other.getMaxAgeRule().equals(this.getMaxAgeRule()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMaxCountRule() == null) ? 0 : getMaxCountRule().hashCode());
hashCode = prime * hashCode + ((getMaxAgeRule() == null) ? 0 : getMaxAgeRule().hashCode());
return hashCode;
}
@Override
public ApplicationVersionLifecycleConfig clone() {
try {
return (ApplicationVersionLifecycleConfig) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}