Class: Aws::Glue::Types::Statement
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Statement
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The statement or request for a particular action to occur in a session.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The execution code of the statement. 
- 
  
    
      #completed_on  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unix time and date that the job definition was completed. 
- 
  
    
      #id  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the statement. 
- 
  
    
      #output  ⇒ Types::StatementOutput 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The output in JSON. 
- 
  
    
      #progress  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The code execution progress. 
- 
  
    
      #started_on  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unix time and date that the job definition was started. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state while request is actioned. 
Instance Attribute Details
#code ⇒ String
The execution code of the statement.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#completed_on ⇒ Integer
The unix time and date that the job definition was completed.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#id ⇒ Integer
The ID of the statement.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#output ⇒ Types::StatementOutput
The output in JSON.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#progress ⇒ Float
The code execution progress.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#started_on ⇒ Integer
The unix time and date that the job definition was started.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end | 
#state ⇒ String
The state while request is actioned.
| 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 | # File 'lib/aws-sdk-glue/types.rb', line 24391 class Statement < Struct.new( :id, :code, :state, :output, :progress, :started_on, :completed_on) SENSITIVE = [] include Aws::Structure end |