Skip to content

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).

// init — account-level binding takes no resource
const listLandingZoneOperations =
yield* AWS.ControlTower.ListLandingZoneOperations();
// runtime
const result = yield* listLandingZoneOperations({
filter: { statuses: ["IN_PROGRESS"] },
});
console.log(result.landingZoneOperations.length);