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

ValidatePipelineDefinitionOutput

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

Contains the output of ValidatePipelineDefinition.

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

§Properties

§
errored: boolean
[src]

Indicates whether there were validation errors.

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

Any validation errors that were found.

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

Any validation warnings that were found.