Class: Aws::DataPipeline::Types::SetStatusInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::SetStatusInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datapipeline/types.rb
Overview
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.
1065 1066 1067 1068 1069 1070 1071 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1065 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.
1065 1066 1067 1068 1069 1070 1071 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1065 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`.
1065 1066 1067 1068 1069 1070 1071 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 1065 class SetStatusInput < Struct.new( :pipeline_id, :object_ids, :status) SENSITIVE = [] include Aws::Structure end |