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

CreatePipeRequest

import type { CreatePipeRequest } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";
interface CreatePipeRequest {
Description?: string | null;
DesiredState?: RequestedPipeState | null;
Enrichment?: string | null;
EnrichmentParameters?: PipeEnrichmentParameters | null;
Name: string;
RoleArn: string;
Source: string;
SourceParameters?: PipeSourceParameters | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Target: string;
TargetParameters?: PipeTargetParameters | null;
}

§Properties

§
Description?: string | null
[src]

A description of the pipe.

§
DesiredState?: RequestedPipeState | null
[src]

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.

§
Name: string
[src]

The name of the pipe.

§
RoleArn: string
[src]

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

§
Source: string
[src]

The ARN of the source resource.

§
SourceParameters?: PipeSourceParameters | null
[src]

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

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

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

§
Target: string
[src]

The ARN of the target resource.

§
TargetParameters?: PipeTargetParameters | null
[src]

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