You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Glue::Types::CreateClassifierRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CreateClassifierRequest
- Defined in:
- (unknown)
Overview
Note:
When passing CreateClassifierRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
grok_classifier: {
classification: "Classification", # required
name: "NameString", # required
grok_pattern: "GrokPattern", # required
custom_patterns: "CustomPatterns",
},
xml_classifier: {
classification: "Classification", # required
name: "NameString", # required
row_tag: "RowTag",
},
json_classifier: {
name: "NameString", # required
json_path: "JsonPath", # required
},
csv_classifier: {
name: "NameString", # required
delimiter: "CsvColumnDelimiter",
quote_symbol: "CsvQuoteSymbol",
contains_header: "UNKNOWN", # accepts UNKNOWN, PRESENT, ABSENT
header: ["NameString"],
disable_value_trimming: false,
allow_single_column: false,
},
}
Instance Attribute Summary collapse
-
#csv_classifier ⇒ Types::CreateCsvClassifierRequest
A
CsvClassifier
object specifying the classifier to create. -
#grok_classifier ⇒ Types::CreateGrokClassifierRequest
A
GrokClassifier
object specifying the classifier to create. -
#json_classifier ⇒ Types::CreateJsonClassifierRequest
A
JsonClassifier
object specifying the classifier to create. -
#xml_classifier ⇒ Types::CreateXMLClassifierRequest
An
XMLClassifier
object specifying the classifier to create.
Instance Attribute Details
#csv_classifier ⇒ Types::CreateCsvClassifierRequest
A CsvClassifier
object specifying the classifier to create.
#grok_classifier ⇒ Types::CreateGrokClassifierRequest
A GrokClassifier
object specifying the classifier to create.
#json_classifier ⇒ Types::CreateJsonClassifierRequest
A JsonClassifier
object specifying the classifier to create.
#xml_classifier ⇒ Types::CreateXMLClassifierRequest
An XMLClassifier
object specifying the classifier to create.