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

PutPipelineDefinitionOutput

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

Contains the output of PutPipelineDefinition.

interface PutPipelineDefinitionOutput {
errored: boolean;
validationErrors?: ValidationError[] | null;
validationWarnings?: ValidationWarning[] | null;
}

§Properties

§
errored: boolean
[src]

Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call PutPipelineDefinition to commit the corrected pipeline.

§
validationErrors?: ValidationError[] | null
[src]

The validation errors that are associated with the objects defined in pipelineObjects.

§
validationWarnings?: ValidationWarning[] | null
[src]

The validation warnings that are associated with the objects defined in pipelineObjects.