shiver.me.timbers.aws.kinesis.StreamStreamEncryption Maven / Gradle / Ivy
Show all versions of smt-cloudformation-objects Show documentation
package shiver.me.timbers.aws.kinesis;
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;
/**
* StreamStreamEncryption
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"EncryptionType",
"KeyId"
})
public class StreamStreamEncryption implements Property
{
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype
*
*/
@JsonProperty("EncryptionType")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype")
private CharSequence encryptionType;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid
*
*/
@JsonProperty("KeyId")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid")
private CharSequence keyId;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype
*
*/
@JsonIgnore
public CharSequence getEncryptionType() {
return encryptionType;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-encryptiontype
*
*/
@JsonIgnore
public void setEncryptionType(CharSequence encryptionType) {
this.encryptionType = encryptionType;
}
public StreamStreamEncryption withEncryptionType(CharSequence encryptionType) {
this.encryptionType = encryptionType;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid
*
*/
@JsonIgnore
public CharSequence getKeyId() {
return keyId;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streamencryption.html#cfn-kinesis-stream-streamencryption-keyid
*
*/
@JsonIgnore
public void setKeyId(CharSequence keyId) {
this.keyId = keyId;
}
public StreamStreamEncryption withKeyId(CharSequence keyId) {
this.keyId = keyId;
return this;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("encryptionType", encryptionType).append("keyId", keyId).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(encryptionType).append(keyId).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof StreamStreamEncryption) == false) {
return false;
}
StreamStreamEncryption rhs = ((StreamStreamEncryption) other);
return new EqualsBuilder().append(encryptionType, rhs.encryptionType).append(keyId, rhs.keyId).isEquals();
}
}