ListActions
Source:
src/AWS/FIS/ListActions.ts
Runtime binding for fis:ListActions.
Enumerates the FIS action catalog — every fault the service can inject
(aws:ec2:stop-instances, aws:ssm:send-command, aws:fis:wait, …).
Provide the implementation with Effect.provide(AWS.FIS.ListActionsHttp).
Browsing the Action Catalog
Section titled “Browsing the Action Catalog”// init — account-level binding, no resource argumentconst listActions = yield* AWS.FIS.ListActions();
// runtimeconst { actions } = yield* listActions();console.log((actions ?? []).map((a) => a.id));