You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::DataPipeline::Types::SetStatusInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DataPipeline::Types::SetStatusInput
 
- Defined in:
- (unknown)
Overview
    Note:
    
  
When passing SetStatusInput as input to an Aws::Client method, you can use a vanilla Hash:
{
  pipeline_id: "id", # required
  object_ids: ["id"], # required
  status: "string", # required
}
Contains the parameters for SetStatus.
Instance Attribute Summary collapse
- 
  
    
      #object_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IDs of the objects. 
- 
  
    
      #pipeline_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the pipeline that contains the objects. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status to be set on all the objects specified in objectIds.
Instance Attribute Details
#object_ids ⇒ Array<String>
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
#pipeline_id ⇒ String
The ID of the pipeline that contains the objects.
#status ⇒ String
The status to be set on all the objects specified in objectIds. For
components, use PAUSE or RESUME. For instances, use TRY_CANCEL,
RERUN, or MARK_FINISHED.