GetAction
Source:
src/AWS/FIS/GetAction.ts
Runtime binding for fis:GetAction.
Reads a single FIS action from the service’s action catalog — its
description, parameters, and the targets it applies to (e.g.
aws:ec2:stop-instances). Provide the implementation with
Effect.provide(AWS.FIS.GetActionHttp).
Browsing the Action Catalog
Section titled “Browsing the Action Catalog”// init — account-level binding, no resource argumentconst getAction = yield* AWS.FIS.GetAction();
// runtimeconst { action } = yield* getAction({ id: "aws:fis:wait" });console.log(Object.keys(action?.parameters ?? {}));