Class: Aws::Glue::Types::PutWorkflowRunPropertiesRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::PutWorkflowRunPropertiesRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of the workflow which was run. 
- 
  
    
      #run_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the workflow run for which the run properties should be updated. 
- 
  
    
      #run_properties  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The properties to put for the specified run. 
Instance Attribute Details
#name ⇒ String
Name of the workflow which was run.
| 20767 20768 20769 20770 20771 20772 20773 | # File 'lib/aws-sdk-glue/types.rb', line 20767 class PutWorkflowRunPropertiesRequest < Struct.new( :name, :run_id, :run_properties) SENSITIVE = [] include Aws::Structure end | 
#run_id ⇒ String
The ID of the workflow run for which the run properties should be updated.
| 20767 20768 20769 20770 20771 20772 20773 | # File 'lib/aws-sdk-glue/types.rb', line 20767 class PutWorkflowRunPropertiesRequest < Struct.new( :name, :run_id, :run_properties) SENSITIVE = [] include Aws::Structure end | 
#run_properties ⇒ Hash<String,String>
The properties to put for the specified run.
Run properties may be logged. Do not pass plaintext secrets as properties. Retrieve secrets from a Glue Connection, Amazon Web Services Secrets Manager or other secret management mechanism if you intend to use them within the workflow run.
| 20767 20768 20769 20770 20771 20772 20773 | # File 'lib/aws-sdk-glue/types.rb', line 20767 class PutWorkflowRunPropertiesRequest < Struct.new( :name, :run_id, :run_properties) SENSITIVE = [] include Aws::Structure end |