Class: Aws::Glue::Types::Crawl
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Crawl
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The details of a crawl in the workflow.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #completed_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time on which the crawl completed. 
- 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error message associated with the crawl. 
- 
  
    
      #log_group  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The log group associated with the crawl. 
- 
  
    
      #log_stream  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The log stream associated with the crawl. 
- 
  
    
      #started_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time on which the crawl started. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state of the crawler. 
Instance Attribute Details
#completed_on ⇒ Time
The date and time on which the crawl completed.
| 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 | # File 'lib/aws-sdk-glue/types.rb', line 4383 class Crawl < Struct.new( :state, :started_on, :completed_on, :error_message, :log_group, :log_stream) SENSITIVE = [] include Aws::Structure end | 
#error_message ⇒ String
The error message associated with the crawl.
| 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 | # File 'lib/aws-sdk-glue/types.rb', line 4383 class Crawl < Struct.new( :state, :started_on, :completed_on, :error_message, :log_group, :log_stream) SENSITIVE = [] include Aws::Structure end | 
#log_group ⇒ String
The log group associated with the crawl.
| 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 | # File 'lib/aws-sdk-glue/types.rb', line 4383 class Crawl < Struct.new( :state, :started_on, :completed_on, :error_message, :log_group, :log_stream) SENSITIVE = [] include Aws::Structure end | 
#log_stream ⇒ String
The log stream associated with the crawl.
| 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 | # File 'lib/aws-sdk-glue/types.rb', line 4383 class Crawl < Struct.new( :state, :started_on, :completed_on, :error_message, :log_group, :log_stream) SENSITIVE = [] include Aws::Structure end | 
#started_on ⇒ Time
The date and time on which the crawl started.
| 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 | # File 'lib/aws-sdk-glue/types.rb', line 4383 class Crawl < Struct.new( :state, :started_on, :completed_on, :error_message, :log_group, :log_stream) SENSITIVE = [] include Aws::Structure end |