shiver.me.timbers.aws.s3.BucketQueueConfiguration Maven / Gradle / Ivy
Show all versions of smt-cloudformation-objects Show documentation
package shiver.me.timbers.aws.s3;
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;
/**
* BucketQueueConfiguration
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"Event",
"Filter",
"Queue"
})
public class BucketQueueConfiguration implements Property
{
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-event
*
*/
@JsonProperty("Event")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-event")
private CharSequence event;
/**
* BucketNotificationFilter
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.html
*
*/
@JsonProperty("Filter")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.html")
private Property filter;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-queue
*
*/
@JsonProperty("Queue")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-queue")
private CharSequence queue;
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-event
*
*/
@JsonIgnore
public CharSequence getEvent() {
return event;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-event
*
*/
@JsonIgnore
public void setEvent(CharSequence event) {
this.event = event;
}
public BucketQueueConfiguration withEvent(CharSequence event) {
this.event = event;
return this;
}
/**
* BucketNotificationFilter
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.html
*
*/
@JsonIgnore
public Property getFilter() {
return filter;
}
/**
* BucketNotificationFilter
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfiguration-config-filter.html
*
*/
@JsonIgnore
public void setFilter(Property filter) {
this.filter = filter;
}
public BucketQueueConfiguration withFilter(Property filter) {
this.filter = filter;
return this;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-queue
*
*/
@JsonIgnore
public CharSequence getQueue() {
return queue;
}
/**
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-notificationconfig-queueconfig.html#cfn-s3-bucket-notificationconfig-queueconfig-queue
*
*/
@JsonIgnore
public void setQueue(CharSequence queue) {
this.queue = queue;
}
public BucketQueueConfiguration withQueue(CharSequence queue) {
this.queue = queue;
return this;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("event", event).append("filter", filter).append("queue", queue).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(filter).append(event).append(queue).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof BucketQueueConfiguration) == false) {
return false;
}
BucketQueueConfiguration rhs = ((BucketQueueConfiguration) other);
return new EqualsBuilder().append(filter, rhs.filter).append(event, rhs.event).append(queue, rhs.queue).isEquals();
}
}