Amazon Control Tower · JSON Structure

Enable Baseline Request Structure

EnableBaselineRequest schema from AWS Control Tower API

Type: object Properties: 5 Required: 3
ComplianceGovernanceLanding ZoneMulti-AccountSecurityControls

EnableBaselineRequest is a JSON Structure definition published by Amazon Control Tower, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

baselineIdentifier baselineVersion parameters tags targetIdentifier

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-control-tower/refs/heads/main/json-structure/enable-baseline-request-structure.json",
  "name": "EnableBaselineRequest",
  "description": "EnableBaselineRequest schema from AWS Control Tower API",
  "type": "object",
  "properties": {
    "baselineIdentifier": {
      "type": "string",
      "description": "The ARN of the baseline.",
      "example": "arn:aws:controltower:us-east-1::baseline/LZACCOUNTBASELINE"
    },
    "baselineVersion": {
      "type": "string",
      "description": "The specific version to be enabled.",
      "example": "2.0"
    },
    "parameters": {
      "type": "array",
      "description": "A list of key-value objects that specify enablement parameters.",
      "items": {
        "$ref": "#/components/schemas/EnabledBaselineParameter"
      }
    },
    "tags": {
      "type": "object",
      "description": "Tags to apply to the EnabledBaseline resource.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "targetIdentifier": {
      "type": "string",
      "description": "The ARN of the target organizational unit.",
      "example": "arn:aws:organizations::123456789012:ou/o-exampleorgid11/ou-exampleouid111"
    }
  },
  "required": [
    "baselineIdentifier",
    "baselineVersion",
    "targetIdentifier"
  ]
}