NAME
Paws::Glue::Classifier
USAGE
This class represents one of two things:
Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::Glue::Classifier object:
$service_obj->Method(Att1 => { CsvClassifier => $value, ..., XMLClassifier => $value });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::Classifier object:
$result = $service_obj->Method(...);
$result->Att1->CsvClassifier
DESCRIPTION
Classifiers are triggered during a crawl task. A classifier checks whether a given file is in a format it can handle. If it is, the classifier creates a schema in the form of a StructType
object that matches that data format.
You can use the standard classifiers that Glue provides, or you can write your own classifiers to best categorize your data sources and specify the appropriate schemas to use for them. A classifier can be a grok
classifier, an XML
classifier, a JSON
classifier, or a custom CSV
classifier, as specified in one of the fields in the Classifier
object.
ATTRIBUTES
CsvClassifier => Paws::Glue::CsvClassifier
A classifier for comma-separated values (CSV).
GrokClassifier => Paws::Glue::GrokClassifier
A classifier that uses grok
.
JsonClassifier => Paws::Glue::JsonClassifier
A classifier for JSON content.
XMLClassifier => Paws::Glue::XMLClassifier
A classifier for XML content.
SEE ALSO
This class forms part of Paws, describing an object used in Paws::Glue
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues