Skip to content

ListPipes

Source: src/AWS/Pipes/ListPipes.ts

Runtime binding for pipes:ListPipes.

Lists the account’s pipes, optionally filtered by name prefix, current state, or source/target prefix — e.g. an operational console enumerating the pipes it manages. Account-level: no resource argument. Provide the implementation with Effect.provide(AWS.Pipes.ListPipesHttp).

// init — account-level binding, no resource argument
const listPipes = yield* AWS.Pipes.ListPipes();
// runtime
const { Pipes } = yield* listPipes({ NamePrefix: "orders-" });
// [{ Name: "orders-pipe", CurrentState: "RUNNING", ... }, ...]