Class: Aws::Glue::Types::ResumeWorkflowRunRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::ResumeWorkflowRunRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the workflow to resume. 
- 
  
    
      #node_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of the node IDs for the nodes you want to restart. 
- 
  
    
      #run_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the workflow run to resume. 
Instance Attribute Details
#name ⇒ String
The name of the workflow to resume.
| 21423 21424 21425 21426 21427 21428 21429 | # File 'lib/aws-sdk-glue/types.rb', line 21423 class ResumeWorkflowRunRequest < Struct.new( :name, :run_id, :node_ids) SENSITIVE = [] include Aws::Structure end | 
#node_ids ⇒ Array<String>
A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.
| 21423 21424 21425 21426 21427 21428 21429 | # File 'lib/aws-sdk-glue/types.rb', line 21423 class ResumeWorkflowRunRequest < Struct.new( :name, :run_id, :node_ids) SENSITIVE = [] include Aws::Structure end | 
#run_id ⇒ String
The ID of the workflow run to resume.
| 21423 21424 21425 21426 21427 21428 21429 | # File 'lib/aws-sdk-glue/types.rb', line 21423 class ResumeWorkflowRunRequest < Struct.new( :name, :run_id, :node_ids) SENSITIVE = [] include Aws::Structure end |