LandingZoneOperationSummary

Summary of a landing zone operation.

ComplianceGovernanceLanding ZoneMulti-AccountSecurityControls

Properties

Name Type Description
operationIdentifier string The unique identifier of the operation.
operationType string The type of the operation.
startTime string
status string
View JSON Schema on GitHub

JSON Schema

landing-zone-operation-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-control-tower/refs/heads/main/json-schema/landing-zone-operation-summary-schema.json",
  "title": "LandingZoneOperationSummary",
  "description": "Summary of a landing zone operation.",
  "type": "object",
  "properties": {
    "operationIdentifier": {
      "type": "string",
      "description": "The unique identifier of the operation."
    },
    "operationType": {
      "type": "string",
      "description": "The type of the operation."
    },
    "startTime": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string",
      "enum": [
        "SUCCEEDED",
        "FAILED",
        "IN_PROGRESS"
      ]
    }
  }
}