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

PipelineDescription

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

Contains pipeline metadata.

interface PipelineDescription {
description?: string | null;
fields: Field[];
name: string;
pipelineId: string;
tags?: Tag[] | null;
}

§Properties

§
description?: string | null
[src]

Description of the pipeline.

§
fields: Field[]
[src]

A list of read-only fields that contain metadata about the pipeline: @userId, @accountId, and @pipelineState.

§
name: string
[src]

The name of the pipeline.

§
pipelineId: string
[src]

The pipeline identifier that was assigned by AWS Data Pipeline. This is a string of the form df-297EG78HU43EEXAMPLE.

§
tags?: Tag[] | null
[src]

A list of tags to associated with a pipeline. Tags let you control access to pipelines. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.