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

DescribeObjectsInput

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

Contains the parameters for DescribeObjects.

interface DescribeObjectsInput {
evaluateExpressions?: boolean | null;
marker?: string | null;
objectIds: string[];
pipelineId: string;
}

§Properties

§
evaluateExpressions?: boolean | null
[src]

Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.

§
marker?: string | null
[src]

The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects with the marker value from the previous call to retrieve the next set of results.

§
objectIds: string[]
[src]

The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects.

§
pipelineId: string
[src]

The ID of the pipeline that contains the object definitions.