{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-cloud-watch-logs-config-structure.json", "name": "CloudWatchLogsConfig", "description": " Information about CloudWatch Logs for a build project. ", "type": "object", "properties": { "status": { "allOf": [ { "$ref": "#/components/schemas/LogsConfigStatusType" }, { "description": "

The current status of the logs in CloudWatch Logs for a build project. Valid values are:

" } ] }, "groupName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The group name of the logs in CloudWatch Logs. For more information, see Working with Log Groups and Log Streams. " } ] }, "streamName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The prefix of the stream name of the CloudWatch Logs. For more information, see Working with Log Groups and Log Streams. " } ] } }, "required": [ "status" ] }