Class: Aws::DataPipeline::Types::SetStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::SetStatusInput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass SetStatusInput data as a hash:
{
pipeline_id: "id", # required
object_ids: ["id"], # required
status: "string", # required
}
Contains the parameters for SetStatus.
Constant Summary collapse
- SENSITIVE =
[]
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.
1368 1369 1370 1371 1372 1373 1374 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1368 class SetStatusInput < Struct.new( :pipeline_id, :object_ids, :status) SENSITIVE = [] include Aws::Structure end |
#pipeline_id ⇒ String
The ID of the pipeline that contains the objects.
1368 1369 1370 1371 1372 1373 1374 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1368 class SetStatusInput < Struct.new( :pipeline_id, :object_ids, :status) SENSITIVE = [] include Aws::Structure end |
#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
.
1368 1369 1370 1371 1372 1373 1374 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 1368 class SetStatusInput < Struct.new( :pipeline_id, :object_ids, :status) SENSITIVE = [] include Aws::Structure end |