shiver.me.timbers.aws.emr.ClusterVolumeSpecification Maven / Gradle / Ivy
Show all versions of smt-cloudformation-objects Show documentation
package shiver.me.timbers.aws.emr;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import shiver.me.timbers.aws.Property;
/**
* ClusterVolumeSpecification
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"Iops",
"SizeInGB",
"VolumeType"
})
public class ClusterVolumeSpecification implements Property
{
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-iops
*
*/
@JsonProperty("Iops")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-iops")
private Number iops;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-sizeingb
*
*/
@JsonProperty("SizeInGB")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-sizeingb")
private Number sizeInGB;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-volumetype
*
*/
@JsonProperty("VolumeType")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-volumetype")
private CharSequence volumeType;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-iops
*
*/
@JsonIgnore
public Number getIops() {
return iops;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-iops
*
*/
@JsonIgnore
public void setIops(Number iops) {
this.iops = iops;
}
public ClusterVolumeSpecification withIops(Number iops) {
this.iops = iops;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-sizeingb
*
*/
@JsonIgnore
public Number getSizeInGB() {
return sizeInGB;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-sizeingb
*
*/
@JsonIgnore
public void setSizeInGB(Number sizeInGB) {
this.sizeInGB = sizeInGB;
}
public ClusterVolumeSpecification withSizeInGB(Number sizeInGB) {
this.sizeInGB = sizeInGB;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-volumetype
*
*/
@JsonIgnore
public CharSequence getVolumeType() {
return volumeType;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-volumespecification.html#cfn-elasticmapreduce-cluster-volumespecification-volumetype
*
*/
@JsonIgnore
public void setVolumeType(CharSequence volumeType) {
this.volumeType = volumeType;
}
public ClusterVolumeSpecification withVolumeType(CharSequence volumeType) {
this.volumeType = volumeType;
return this;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("iops", iops).append("sizeInGB", sizeInGB).append("volumeType", volumeType).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(iops).append(volumeType).append(sizeInGB).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ClusterVolumeSpecification) == false) {
return false;
}
ClusterVolumeSpecification rhs = ((ClusterVolumeSpecification) other);
return new EqualsBuilder().append(iops, rhs.iops).append(volumeType, rhs.volumeType).append(sizeInGB, rhs.sizeInGB).isEquals();
}
}