Class: Aws::Glue::Types::CreateClassifierRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CreateClassifierRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass CreateClassifierRequest data as a 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,
},
}
Constant Summary collapse
- SENSITIVE =
[]
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.
2940 2941 2942 2943 2944 2945 2946 2947 |
# File 'lib/aws-sdk-glue/types.rb', line 2940 class CreateClassifierRequest < Struct.new( :grok_classifier, :xml_classifier, :json_classifier, :csv_classifier) SENSITIVE = [] include Aws::Structure end |
#grok_classifier ⇒ Types::CreateGrokClassifierRequest
A `GrokClassifier` object specifying the classifier to create.
2940 2941 2942 2943 2944 2945 2946 2947 |
# File 'lib/aws-sdk-glue/types.rb', line 2940 class CreateClassifierRequest < Struct.new( :grok_classifier, :xml_classifier, :json_classifier, :csv_classifier) SENSITIVE = [] include Aws::Structure end |
#json_classifier ⇒ Types::CreateJsonClassifierRequest
A `JsonClassifier` object specifying the classifier to create.
2940 2941 2942 2943 2944 2945 2946 2947 |
# File 'lib/aws-sdk-glue/types.rb', line 2940 class CreateClassifierRequest < Struct.new( :grok_classifier, :xml_classifier, :json_classifier, :csv_classifier) SENSITIVE = [] include Aws::Structure end |
#xml_classifier ⇒ Types::CreateXMLClassifierRequest
An `XMLClassifier` object specifying the classifier to create.
2940 2941 2942 2943 2944 2945 2946 2947 |
# File 'lib/aws-sdk-glue/types.rb', line 2940 class CreateClassifierRequest < Struct.new( :grok_classifier, :xml_classifier, :json_classifier, :csv_classifier) SENSITIVE = [] include Aws::Structure end |