
shiver.me.timbers.aws.gamelift.GameSessionQueueResource Maven / Gradle / Ivy
package shiver.me.timbers.aws.gamelift;
import java.util.List;
import java.util.Map;
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.CreationPolicy;
import shiver.me.timbers.aws.DeletionPolicy;
import shiver.me.timbers.aws.HasAttributes;
import shiver.me.timbers.aws.HasCondition;
import shiver.me.timbers.aws.HasDependsOn;
import shiver.me.timbers.aws.Resource;
import shiver.me.timbers.aws.UpdatePolicy;
/**
* GameSessionQueueResource
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"Type",
"Properties"
})
public class GameSessionQueueResource
extends Resource
implements HasAttributes , HasCondition , HasDependsOn
{
@JsonProperty("Type")
private java.lang.String type = "AWS::GameLift::GameSessionQueue";
/**
* GameSessionQueue
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html
*
*/
@JsonProperty("Properties")
@JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html")
private GameSessionQueue properties;
/**
* No args constructor for use in serialization
*
*/
public GameSessionQueueResource() {
}
/**
*
* @param name
*/
public GameSessionQueueResource(java.lang.String name) {
super(name);
}
@JsonIgnore
public java.lang.String getType() {
return type;
}
@JsonIgnore
public void setType(java.lang.String type) {
this.type = type;
}
public GameSessionQueueResource withType(java.lang.String type) {
this.type = type;
return this;
}
/**
* GameSessionQueue
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html
*
*/
@JsonIgnore
public GameSessionQueue getProperties() {
return properties;
}
/**
* GameSessionQueue
*
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-gamesessionqueue.html
*
*/
@JsonIgnore
public void setProperties(GameSessionQueue properties) {
this.properties = properties;
}
public GameSessionQueueResource withProperties(GameSessionQueue properties) {
this.properties = properties;
return this;
}
@Override
public GameSessionQueueResource withCondition(java.lang.String condition) {
super.withCondition(condition);
return this;
}
@Override
public GameSessionQueueResource withCreationPolicy(CreationPolicy creationPolicy) {
super.withCreationPolicy(creationPolicy);
return this;
}
@Override
public GameSessionQueueResource withUpdatePolicy(UpdatePolicy updatePolicy) {
super.withUpdatePolicy(updatePolicy);
return this;
}
@Override
public GameSessionQueueResource withDeletionPolicy(DeletionPolicy deletionPolicy) {
super.withDeletionPolicy(deletionPolicy);
return this;
}
@Override
public GameSessionQueueResource withDependsOn(List dependsOn) {
super.withDependsOn(dependsOn);
return this;
}
@Override
public GameSessionQueueResource withMetadata(Map metadata) {
super.withMetadata(metadata);
return this;
}
@Override
public GameSessionQueueResource withName(java.lang.String name) {
super.withName(name);
return this;
}
@Override
public java.lang.String toString() {
return new ToStringBuilder(this).appendSuper(super.toString()).append("type", type).append("properties", properties).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().appendSuper(super.hashCode()).append(type).append(properties).toHashCode();
}
@Override
public boolean equals(java.lang.Object other) {
if (other == this) {
return true;
}
if ((other instanceof GameSessionQueueResource) == false) {
return false;
}
GameSessionQueueResource rhs = ((GameSessionQueueResource) other);
return new EqualsBuilder().appendSuper(super.equals(other)).append(type, rhs.type).append(properties, rhs.properties).isEquals();
}
}