Represents the status of a logging configuration.
{ "$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-logging-configuration-status-schema.json", "title": "LoggingConfigurationStatus", "description": "Represents the status of a logging configuration.", "type": "object", "properties": { "statusCode": { "allOf": [ { "$ref": "#/components/schemas/LoggingConfigurationStatusCode" }, { "description": "Status code of the logging configuration." } ] }, "statusReason": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The reason for failure if any." } ] } }, "required": [ "statusCode" ] }