Class: Aws::Glue::Types::GrokClassifier
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::GrokClassifier
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A classifier that uses ‘grok` patterns.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #classification  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on. 
- 
  
    
      #creation_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that this classifier was registered. 
- 
  
    
      #custom_patterns  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional custom grok patterns defined by this classifier. 
- 
  
    
      #grok_pattern  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The grok pattern applied to a data store by this classifier. 
- 
  
    
      #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
#classification ⇒ String
An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#creation_time ⇒ Time
The time that this classifier was registered.
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#custom_patterns ⇒ String
Optional custom grok patterns defined by this classifier. For more information, see custom patterns in [Writing Custom Classifiers].
[1]: docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#grok_pattern ⇒ String
The grok pattern applied to a data store by this classifier. For more information, see built-in patterns in [Writing Custom Classifiers].
[1]: docs.aws.amazon.com/glue/latest/dg/custom-classifier.html
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#last_updated ⇒ Time
The time that this classifier was last updated.
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of the classifier.
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end | 
#version ⇒ Integer
The version of this classifier.
| 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 | # File 'lib/aws-sdk-glue/types.rb', line 15210 class GrokClassifier < Struct.new( :name, :classification, :creation_time, :last_updated, :version, :grok_pattern, :custom_patterns) SENSITIVE = [] include Aws::Structure end |