You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DataPipeline::Types::ActivatePipelineInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ActivatePipelineInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  pipeline_id: "id", # required
  parameter_values: [
    {
      id: "fieldNameString", # required
      string_value: "fieldStringValue", # required
    },
  ],
  start_timestamp: Time.now,
}

Contains the parameters for ActivatePipeline.

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_valuesArray<Types::ParameterValue>

A list of parameter values to pass to the pipeline at activation.

Returns:

#pipeline_idString

The ID of the pipeline.

Returns:

  • (String)

    The ID of the pipeline.

#start_timestampTime

The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.

Returns:

  • (Time)

    The date and time to resume the pipeline.