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

Class: Aws::DataPipeline::Types::ValidatePipelineDefinitionInput

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

Overview

Note:

When passing ValidatePipelineDefinitionInput 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 ValidatePipelineDefinition.

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_objectsArray<Types::ParameterObject>

The parameter objects used with the pipeline.

Returns:

#parameter_valuesArray<Types::ParameterValue>

The parameter values used with the pipeline.

Returns:

#pipeline_idString

The ID of the pipeline.

Returns:

  • (String)

    The ID of the pipeline.

#pipeline_objectsArray<Types::PipelineObject>

The objects that define the pipeline changes to validate against the pipeline.

Returns:

  • (Array<Types::PipelineObject>)

    The objects that define the pipeline changes to validate against the pipeline.