{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-logging-configuration-schema.json",
"title": "LoggingConfiguration",
"description": "The LoggingConfiguration data type is used to set CloudWatch Logs options.",
"type": "object",
"properties": {
"level": {
"allOf": [
{
"$ref": "#/components/schemas/LogLevel"
},
{
"description": "Defines which category of execution history events are logged."
}
]
},
"includeExecutionData": {
"allOf": [
{
"$ref": "#/components/schemas/IncludeExecutionData"
},
{
"description": "Determines whether execution data is included in your log. When set to false, data is excluded."
}
]
},
"destinations": {
"allOf": [
{
"$ref": "#/components/schemas/LogDestinationList"
},
{
"description": "An array of objects that describes where your execution history events will be logged. Limited to size 1. Required, if your log level is not set to OFF."
}
]
}
}
}