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

UpdatePipelineRequest

import type { UpdatePipelineRequest } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";
interface UpdatePipelineRequest {
pipelineActivities: PipelineActivity[];
pipelineName: string;
}

§Properties

§
pipelineActivities: PipelineActivity[]
[src]

A list of PipelineActivity objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity. For example:

pipelineActivities = [ { "channel": { ...

} }, { "lambda": { ... } }, ... ]

§
pipelineName: string
[src]

The name of the pipeline to update.