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

ListPipelinesOutput

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

Contains the output of ListPipelines.

interface ListPipelinesOutput {
hasMoreResults?: boolean | null;
marker?: string | null;
pipelineIdList: PipelineIdName[];
}

§Properties

§
hasMoreResults?: boolean | null
[src]

Indicates whether there are more results that can be obtained by a subsequent call.

§
marker?: string | null
[src]

The starting point for the next page of results. To view the next page of results, call ListPipelinesOutput again with this marker value. If the value is null, there are no more results.

§
pipelineIdList: PipelineIdName[]
[src]

The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call "DescribePipelines" and "GetPipelineDefinition".