Class: Aws::Glue::Types::CreateJsonClassifierRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::CreateJsonClassifierRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies a JSON classifier for ‘CreateClassifier` to create.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #json_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A ‘JsonPath` string 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].
[1]: docs.aws.amazon.com/glue/latest/dg/custom-classifier.html#custom-classifier-json
| 6177 6178 6179 6180 6181 6182 | # File 'lib/aws-sdk-glue/types.rb', line 6177 class CreateJsonClassifierRequest < Struct.new( :name, :json_path) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the classifier.
| 6177 6178 6179 6180 6181 6182 | # File 'lib/aws-sdk-glue/types.rb', line 6177 class CreateJsonClassifierRequest < Struct.new( :name, :json_path) SENSITIVE = [] include Aws::Structure end |