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

DescribePipeResponse

import type { DescribePipeResponse } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";
interface DescribePipeResponse {
Arn?: string | null;
CreationTime?: Date | number | null;
CurrentState?: PipeState | null;
Description?: string | null;
DesiredState?: RequestedPipeStateDescribeResponse | null;
Enrichment?: string | null;
EnrichmentParameters?: PipeEnrichmentParameters | null;
LastModifiedTime?: Date | number | null;
Name?: string | null;
RoleArn?: string | null;
Source?: string | null;
SourceParameters?: PipeSourceParameters | null;
StateReason?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Target?: string | null;
TargetParameters?: PipeTargetParameters | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the pipe.

§
CreationTime?: Date | number | null
[src]

The time the pipe was created.

§
CurrentState?: PipeState | null
[src]

The state the pipe is in.

§
Description?: string | null
[src]

A description of the pipe.

§

The state the pipe should be in.

§
Enrichment?: string | null
[src]

The ARN of the enrichment resource.

§
EnrichmentParameters?: PipeEnrichmentParameters | null
[src]

The parameters required to set up enrichment on your pipe.

§
LastModifiedTime?: Date | number | null
[src]

When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

§
Name?: string | null
[src]

The name of the pipe.

§
RoleArn?: string | null
[src]

The ARN of the role that allows the pipe to send data to the target.

§
Source?: string | null
[src]

The ARN of the source resource.

§
SourceParameters?: PipeSourceParameters | null
[src]

The parameters required to set up a source for your pipe.

§
StateReason?: string | null
[src]

The reason the pipe is in its current state.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The list of key-value pairs to associate with the pipe.

§
Target?: string | null
[src]

The ARN of the target resource.

§
TargetParameters?: PipeTargetParameters | null
[src]

The parameters required to set up a target for your pipe.