Class: Aws::Glue::Types::UpdateJsonClassifierRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateJsonClassifierRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a JSON classifier to be updated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#json_path ⇒ String
A
JsonPathstring defining the JSON data for the classifier to classify. -
#name ⇒ String
The name of the classifier.
Instance Attribute Details
#json_path ⇒ String
A JsonPath string defining the JSON data for the classifier to
classify. Glue supports a subset of JsonPath, as described in
Writing JsonPath Custom Classifiers.
32029 32030 32031 32032 32033 32034 |
# File 'lib/aws-sdk-glue/types.rb', line 32029 class UpdateJsonClassifierRequest < Struct.new( :name, :json_path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the classifier.
32029 32030 32031 32032 32033 32034 |
# File 'lib/aws-sdk-glue/types.rb', line 32029 class UpdateJsonClassifierRequest < Struct.new( :name, :json_path) SENSITIVE = [] include Aws::Structure end |