Class: Aws::DataPipeline::Types::ActivatePipelineInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ActivatePipelineInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datapipeline/types.rb
Overview
Contains the parameters for ActivatePipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_values ⇒ Array<Types::ParameterValue>
A list of parameter values to pass to the pipeline at activation.
-
#pipeline_id ⇒ String
The ID of the pipeline.
-
#start_timestamp ⇒ Time
The date and time to resume the pipeline.
Instance Attribute Details
#parameter_values ⇒ Array<Types::ParameterValue>
A list of parameter values to pass to the pipeline at activation.
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 30 class ActivatePipelineInput < Struct.new( :pipeline_id, :parameter_values, :start_timestamp) SENSITIVE = [] include Aws::Structure end |
#pipeline_id ⇒ String
The ID of the pipeline.
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 30 class ActivatePipelineInput < Struct.new( :pipeline_id, :parameter_values, :start_timestamp) SENSITIVE = [] include Aws::Structure end |
#start_timestamp ⇒ Time
The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.
30 31 32 33 34 35 36 |
# File 'lib/aws-sdk-datapipeline/types.rb', line 30 class ActivatePipelineInput < Struct.new( :pipeline_id, :parameter_values, :start_timestamp) SENSITIVE = [] include Aws::Structure end |