Amazon Control Tower · JSON Structure

Baseline Operation Structure

An operation performed on a baseline.

Type: object Properties: 6
ComplianceGovernanceLanding ZoneMulti-AccountSecurityControls

BaselineOperation is a JSON Structure definition published by Amazon Control Tower, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

endTime operationIdentifier operationType startTime status statusMessage

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/baseline-operation-structure.json",
  "name": "BaselineOperation",
  "description": "An operation performed on a baseline.",
  "type": "object",
  "properties": {
    "endTime": {
      "type": "datetime"
    },
    "operationIdentifier": {
      "type": "string"
    },
    "operationType": {
      "type": "string",
      "enum": [
        "ENABLE_BASELINE",
        "DISABLE_BASELINE",
        "UPDATE_ENABLED_BASELINE",
        "RESET_ENABLED_BASELINE"
      ]
    },
    "startTime": {
      "type": "datetime"
    },
    "status": {
      "type": "string",
      "enum": [
        "SUCCEEDED",
        "FAILED",
        "IN_PROGRESS"
      ]
    },
    "statusMessage": {
      "type": "string"
    }
  }
}