You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::DataPipeline::Types::PutPipelineDefinitionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::PutPipelineDefinitionInput
- Defined in:
- (unknown)
Overview
Note:
When passing PutPipelineDefinitionInput as input to an Aws::Client method, you can use a vanilla Hash:
{
pipeline_id: "id", # required
pipeline_objects: [ # required
{
id: "id", # required
name: "id", # required
fields: [ # required
{
key: "fieldNameString", # required
string_value: "fieldStringValue",
ref_value: "fieldNameString",
},
],
},
],
parameter_objects: [
{
id: "fieldNameString", # required
attributes: [ # required
{
key: "attributeNameString", # required
string_value: "attributeValueString", # required
},
],
},
],
parameter_values: [
{
id: "fieldNameString", # required
string_value: "fieldStringValue", # required
},
],
}
Contains the parameters for PutPipelineDefinition.
Instance Attribute Summary collapse
-
#parameter_objects ⇒ Array<Types::ParameterObject>
The parameter objects used with the pipeline.
-
#parameter_values ⇒ Array<Types::ParameterValue>
The parameter values used with the pipeline.
-
#pipeline_id ⇒ String
The ID of the pipeline.
-
#pipeline_objects ⇒ Array<Types::PipelineObject>
The objects that define the pipeline.
Instance Attribute Details
#parameter_objects ⇒ Array<Types::ParameterObject>
The parameter objects used with the pipeline.
#parameter_values ⇒ Array<Types::ParameterValue>
The parameter values used with the pipeline.
#pipeline_id ⇒ String
The ID of the pipeline.
#pipeline_objects ⇒ Array<Types::PipelineObject>
The objects that define the pipeline. These objects overwrite the existing pipeline definition.