Class: Aws::Glue::Types::JsonClassifier
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::JsonClassifier
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A classifier for ‘JSON` content.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #creation_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that this classifier was registered. 
- 
  
    
      #json_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A ‘JsonPath` string defining the JSON data for the classifier to classify. 
- 
  
    
      #last_updated  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that this classifier was last updated. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the classifier. 
- 
  
    
      #version  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of this classifier. 
Instance Attribute Details
#creation_time ⇒ Time
The time that this classifier was registered.
| 17315 17316 17317 17318 17319 17320 17321 17322 17323 | # File 'lib/aws-sdk-glue/types.rb', line 17315 class JsonClassifier < Struct.new( :name, :creation_time, :last_updated, :version, :json_path) SENSITIVE = [] include Aws::Structure end | 
#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
| 17315 17316 17317 17318 17319 17320 17321 17322 17323 | # File 'lib/aws-sdk-glue/types.rb', line 17315 class JsonClassifier < Struct.new( :name, :creation_time, :last_updated, :version, :json_path) SENSITIVE = [] include Aws::Structure end | 
#last_updated ⇒ Time
The time that this classifier was last updated.
| 17315 17316 17317 17318 17319 17320 17321 17322 17323 | # File 'lib/aws-sdk-glue/types.rb', line 17315 class JsonClassifier < Struct.new( :name, :creation_time, :last_updated, :version, :json_path) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the classifier.
| 17315 17316 17317 17318 17319 17320 17321 17322 17323 | # File 'lib/aws-sdk-glue/types.rb', line 17315 class JsonClassifier < Struct.new( :name, :creation_time, :last_updated, :version, :json_path) SENSITIVE = [] include Aws::Structure end | 
#version ⇒ Integer
The version of this classifier.
| 17315 17316 17317 17318 17319 17320 17321 17322 17323 | # File 'lib/aws-sdk-glue/types.rb', line 17315 class JsonClassifier < Struct.new( :name, :creation_time, :last_updated, :version, :json_path) SENSITIVE = [] include Aws::Structure end |