Class: Aws::DataPipeline::Types::SetStatusInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datapipeline/types.rb

Overview

Contains the parameters for SetStatus.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#object_idsArray<String>

The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.

Returns:

  • (Array<String>)


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_idString

The ID of the pipeline that contains the objects.

Returns:

  • (String)


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

#statusString

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`.

Returns:

  • (String)


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