EnabledControlParameter

A key-value pair for a control parameter.

ComplianceGovernanceLanding ZoneMulti-AccountSecurityControls

Properties

Name Type Description
key string The parameter key.
value object The parameter value.
View JSON Schema on GitHub

JSON Schema

enabled-control-parameter-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/enabled-control-parameter-schema.json",
  "title": "EnabledControlParameter",
  "description": "A key-value pair for a control parameter.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The parameter key.",
      "example": "AllowedRegions"
    },
    "value": {
      "description": "The parameter value."
    }
  },
  "required": [
    "key",
    "value"
  ]
}