Class: Aws::DataPipeline::Types::ActivatePipelineInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ActivatePipelineInput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Note:
When making an API call, you may pass ActivatePipelineInput data as a hash:
{
pipeline_id: "id", # required
parameter_values: [
{
id: "fieldNameString", # required
string_value: "fieldStringValue", # required
},
],
start_timestamp: Time.now,
}
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.
44 45 46 47 48 49 50 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 44 class ActivatePipelineInput < Struct.new( :pipeline_id, :parameter_values, :start_timestamp) SENSITIVE = [] include Aws::Structure end |
#pipeline_id ⇒ String
The ID of the pipeline.
44 45 46 47 48 49 50 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 44 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.
44 45 46 47 48 49 50 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 44 class ActivatePipelineInput < Struct.new( :pipeline_id, :parameter_values, :start_timestamp) SENSITIVE = [] include Aws::Structure end |