com.amazonaws.services.elasticbeanstalk.model.MaxCountRule Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticbeanstalk Show documentation
/*
* 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.elasticbeanstalk.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* A lifecycle rule that deletes the oldest application version when the maximum count is exceeded.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class MaxCountRule implements Serializable, Cloneable {
/**
*
* Specify true
to apply the rule, or false
to disable it.
*
*/
private Boolean enabled;
/**
*
* Specify the maximum number of application versions to retain.
*
*/
private Integer maxCount;
/**
*
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the
* application version.
*
*/
private Boolean deleteSourceFromS3;
/**
*
* Specify true
to apply the rule, or false
to disable it.
*
*
* @param enabled
* Specify true
to apply the rule, or false
to disable it.
*/
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
/**
*
* Specify true
to apply the rule, or false
to disable it.
*
*
* @return Specify true
to apply the rule, or false
to disable it.
*/
public Boolean getEnabled() {
return this.enabled;
}
/**
*
* Specify true
to apply the rule, or false
to disable it.
*
*
* @param enabled
* Specify true
to apply the rule, or false
to disable it.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MaxCountRule withEnabled(Boolean enabled) {
setEnabled(enabled);
return this;
}
/**
*
* Specify true
to apply the rule, or false
to disable it.
*
*
* @return Specify true
to apply the rule, or false
to disable it.
*/
public Boolean isEnabled() {
return this.enabled;
}
/**
*
* Specify the maximum number of application versions to retain.
*
*
* @param maxCount
* Specify the maximum number of application versions to retain.
*/
public void setMaxCount(Integer maxCount) {
this.maxCount = maxCount;
}
/**
*
* Specify the maximum number of application versions to retain.
*
*
* @return Specify the maximum number of application versions to retain.
*/
public Integer getMaxCount() {
return this.maxCount;
}
/**
*
* Specify the maximum number of application versions to retain.
*
*
* @param maxCount
* Specify the maximum number of application versions to retain.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MaxCountRule withMaxCount(Integer maxCount) {
setMaxCount(maxCount);
return this;
}
/**
*
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the
* application version.
*
*
* @param deleteSourceFromS3
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes
* the application version.
*/
public void setDeleteSourceFromS3(Boolean deleteSourceFromS3) {
this.deleteSourceFromS3 = deleteSourceFromS3;
}
/**
*
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the
* application version.
*
*
* @return Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk
* deletes the application version.
*/
public Boolean getDeleteSourceFromS3() {
return this.deleteSourceFromS3;
}
/**
*
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the
* application version.
*
*
* @param deleteSourceFromS3
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes
* the application version.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MaxCountRule withDeleteSourceFromS3(Boolean deleteSourceFromS3) {
setDeleteSourceFromS3(deleteSourceFromS3);
return this;
}
/**
*
* Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the
* application version.
*
*
* @return Set to true
to delete a version's source bundle from Amazon S3 when Elastic Beanstalk
* deletes the application version.
*/
public Boolean isDeleteSourceFromS3() {
return this.deleteSourceFromS3;
}
/**
* 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 (getEnabled() != null)
sb.append("Enabled: ").append(getEnabled()).append(",");
if (getMaxCount() != null)
sb.append("MaxCount: ").append(getMaxCount()).append(",");
if (getDeleteSourceFromS3() != null)
sb.append("DeleteSourceFromS3: ").append(getDeleteSourceFromS3());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof MaxCountRule == false)
return false;
MaxCountRule other = (MaxCountRule) obj;
if (other.getEnabled() == null ^ this.getEnabled() == null)
return false;
if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false)
return false;
if (other.getMaxCount() == null ^ this.getMaxCount() == null)
return false;
if (other.getMaxCount() != null && other.getMaxCount().equals(this.getMaxCount()) == false)
return false;
if (other.getDeleteSourceFromS3() == null ^ this.getDeleteSourceFromS3() == null)
return false;
if (other.getDeleteSourceFromS3() != null && other.getDeleteSourceFromS3().equals(this.getDeleteSourceFromS3()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode());
hashCode = prime * hashCode + ((getMaxCount() == null) ? 0 : getMaxCount().hashCode());
hashCode = prime * hashCode + ((getDeleteSourceFromS3() == null) ? 0 : getDeleteSourceFromS3().hashCode());
return hashCode;
}
@Override
public MaxCountRule clone() {
try {
return (MaxCountRule) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}