Represents the input of a CreateAlertManagerDefinition operation.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-prometheus/refs/heads/main/json-schema/amazon-managed-prometheus-create-alert-manager-definition-request-schema.json", "title": "CreateAlertManagerDefinitionRequest", "description": "Represents the input of a CreateAlertManagerDefinition operation.", "type": "object", "properties": { "data": { "allOf": [ { "$ref": "#/components/schemas/AlertManagerDefinitionData" }, { "description": "The alert manager definition data." } ] }, "clientToken": { "allOf": [ { "$ref": "#/components/schemas/IdempotencyToken" }, { "description": "Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request." } ] } }, "required": [ "data" ] }