CreateLandingZoneRequest

CreateLandingZoneRequest schema from AWS Control Tower API

ComplianceGovernanceLanding ZoneMulti-AccountSecurityControls

Properties

Name Type Description
manifest object The landing zone manifest document, a YAML expressible input type.
version string The landing zone version, for example, 3.3.
tags object Tags to apply to the landing zone.
View JSON Schema on GitHub

JSON Schema

create-landing-zone-request-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/create-landing-zone-request-schema.json",
  "title": "CreateLandingZoneRequest",
  "description": "CreateLandingZoneRequest schema from AWS Control Tower API",
  "type": "object",
  "properties": {
    "manifest": {
      "type": "object",
      "description": "The landing zone manifest document, a YAML expressible input type."
    },
    "version": {
      "type": "string",
      "description": "The landing zone version, for example, 3.3.",
      "example": "3.3"
    },
    "tags": {
      "type": "object",
      "description": "Tags to apply to the landing zone.",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "manifest",
    "version"
  ]
}