Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PutPipelineDefinitionInput

import type { PutPipelineDefinitionInput } from "https://aws-api.deno.dev/v0.4/services/datapipeline.ts?docs=full";

Contains the parameters for PutPipelineDefinition.

interface PutPipelineDefinitionInput {
parameterObjects?: ParameterObject[] | null;
parameterValues?: ParameterValue[] | null;
pipelineId: string;
pipelineObjects: PipelineObject[];
}

§Properties

§
parameterObjects?: ParameterObject[] | null
[src]

The parameter objects used with the pipeline.

§
parameterValues?: ParameterValue[] | null
[src]

The parameter values used with the pipeline.

§
pipelineId: string
[src]

The ID of the pipeline.

§
pipelineObjects: PipelineObject[]
[src]

The objects that define the pipeline. These objects overwrite the existing pipeline definition.