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

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


package shiver.me.timbers.aws.glue;

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;


/**
 * Classifier
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "XMLClassifier", "JsonClassifier", "CsvClassifier", "GrokClassifier" }) public class Classifier { /** * ClassifierXMLClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html * */ @JsonProperty("XMLClassifier") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html") private Property xMLClassifier; /** * ClassifierJsonClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html * */ @JsonProperty("JsonClassifier") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html") private Property jsonClassifier; /** * ClassifierCsvClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html * */ @JsonProperty("CsvClassifier") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html") private Property csvClassifier; /** * ClassifierGrokClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html * */ @JsonProperty("GrokClassifier") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html") private Property grokClassifier; /** * ClassifierXMLClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html * */ @JsonIgnore public Property getXMLClassifier() { return xMLClassifier; } /** * ClassifierXMLClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-xmlclassifier.html * */ @JsonIgnore public void setXMLClassifier(Property xMLClassifier) { this.xMLClassifier = xMLClassifier; } public Classifier withXMLClassifier(Property xMLClassifier) { this.xMLClassifier = xMLClassifier; return this; } /** * ClassifierJsonClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html * */ @JsonIgnore public Property getJsonClassifier() { return jsonClassifier; } /** * ClassifierJsonClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-jsonclassifier.html * */ @JsonIgnore public void setJsonClassifier(Property jsonClassifier) { this.jsonClassifier = jsonClassifier; } public Classifier withJsonClassifier(Property jsonClassifier) { this.jsonClassifier = jsonClassifier; return this; } /** * ClassifierCsvClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html * */ @JsonIgnore public Property getCsvClassifier() { return csvClassifier; } /** * ClassifierCsvClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html * */ @JsonIgnore public void setCsvClassifier(Property csvClassifier) { this.csvClassifier = csvClassifier; } public Classifier withCsvClassifier(Property csvClassifier) { this.csvClassifier = csvClassifier; return this; } /** * ClassifierGrokClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html * */ @JsonIgnore public Property getGrokClassifier() { return grokClassifier; } /** * ClassifierGrokClassifier *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html * */ @JsonIgnore public void setGrokClassifier(Property grokClassifier) { this.grokClassifier = grokClassifier; } public Classifier withGrokClassifier(Property grokClassifier) { this.grokClassifier = grokClassifier; return this; } @Override public String toString() { return new ToStringBuilder(this).append("xMLClassifier", xMLClassifier).append("jsonClassifier", jsonClassifier).append("csvClassifier", csvClassifier).append("grokClassifier", grokClassifier).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(xMLClassifier).append(csvClassifier).append(grokClassifier).append(jsonClassifier).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof Classifier) == false) { return false; } Classifier rhs = ((Classifier) other); return new EqualsBuilder().append(xMLClassifier, rhs.xMLClassifier).append(csvClassifier, rhs.csvClassifier).append(grokClassifier, rhs.grokClassifier).append(jsonClassifier, rhs.jsonClassifier).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy