All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shiver.me.timbers.aws.glue.WorkflowResource Maven / Gradle / Ivy

Go to download

This library is a complete mapping of the AWS CloudFormation Resource Specification into Java objects. The objects have been generated directly from the specification so should be a direct one to one mapping.

The newest version!

package shiver.me.timbers.aws.glue;

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.HasCondition;
import shiver.me.timbers.aws.HasDependsOn;
import shiver.me.timbers.aws.Resource;
import shiver.me.timbers.aws.UpdatePolicy;


/**
 * WorkflowResource
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "Type", "Properties" }) public class WorkflowResource extends Resource implements HasCondition , HasDependsOn { @JsonProperty("Type") private java.lang.String type = "AWS::Glue::Workflow"; /** * Workflow *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html * */ @JsonProperty("Properties") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html") private Workflow properties; /** * No args constructor for use in serialization * */ public WorkflowResource() { } /** * * @param name */ public WorkflowResource(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 WorkflowResource withType(java.lang.String type) { this.type = type; return this; } /** * Workflow *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html * */ @JsonIgnore public Workflow getProperties() { return properties; } /** * Workflow *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html * */ @JsonIgnore public void setProperties(Workflow properties) { this.properties = properties; } public WorkflowResource withProperties(Workflow properties) { this.properties = properties; return this; } @Override public WorkflowResource withCondition(java.lang.String condition) { super.withCondition(condition); return this; } @Override public WorkflowResource withCreationPolicy(CreationPolicy creationPolicy) { super.withCreationPolicy(creationPolicy); return this; } @Override public WorkflowResource withUpdatePolicy(UpdatePolicy updatePolicy) { super.withUpdatePolicy(updatePolicy); return this; } @Override public WorkflowResource withDeletionPolicy(DeletionPolicy deletionPolicy) { super.withDeletionPolicy(deletionPolicy); return this; } @Override public WorkflowResource withDependsOn(List dependsOn) { super.withDependsOn(dependsOn); return this; } @Override public WorkflowResource withMetadata(Map metadata) { super.withMetadata(metadata); return this; } @Override public WorkflowResource 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 WorkflowResource) == false) { return false; } WorkflowResource rhs = ((WorkflowResource) other); return new EqualsBuilder().appendSuper(super.equals(other)).append(type, rhs.type).append(properties, rhs.properties).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy