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).
Observing a Pipe
Section titled “Observing a Pipe”// init — account-level binding, no resource argumentconst listPipes = yield* AWS.Pipes.ListPipes();
// runtimeconst { Pipes } = yield* listPipes({ NamePrefix: "orders-" });// [{ Name: "orders-pipe", CurrentState: "RUNNING", ... }, ...]