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
show all
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

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>)

    The IDs of the objects.

#pipeline_idString

The ID of the pipeline that contains the objects.

Returns:

  • (String)

    The ID of the pipeline that contains the objects.

#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)

    The status to be set on all the objects specified in objectIds.