ListLandingZoneOperations
Source:
src/AWS/ControlTower/ListLandingZoneOperations.ts
Runtime binding for controltower:ListLandingZoneOperations.
An account-level operation that enumerates recent landing zone operations
(creates, updates, deletes, and resets), optionally filtered by type or
status. Useful for governance dashboards that surface in-flight landing
zone upgrades. Provide the implementation with
Effect.provide(AWS.ControlTower.ListLandingZoneOperationsHttp).
Polling Asynchronous Operations
Section titled “Polling Asynchronous Operations”// init — account-level binding takes no resourceconst listLandingZoneOperations = yield* AWS.ControlTower.ListLandingZoneOperations();
// runtimeconst result = yield* listLandingZoneOperations({ filter: { statuses: ["IN_PROGRESS"] },});console.log(result.landingZoneOperations.length);