Amazon CodeBuild · Schema

CloudWatchLogsConfig

Information about CloudWatch Logs for a build project.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
status object
groupName object
streamName object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-cloud-watch-logs-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-cloud-watch-logs-config-schema.json",
  "title": "CloudWatchLogsConfig",
  "description": " Information about CloudWatch Logs for a build project. ",
  "type": "object",
  "properties": {
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogsConfigStatusType"
        },
        {
          "description": "<p>The current status of the logs in CloudWatch Logs for a build project. Valid values are:</p> <ul> <li> <p> <code>ENABLED</code>: CloudWatch Logs are enabled for this build project.</p> </li> <li> <p> <code>DISABLED</code>: CloudWatch Logs are not enabled for this build project.</p> </li> </ul>"
        }
      ]
    },
    "groupName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The group name of the logs in CloudWatch Logs. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html\">Working with Log Groups and Log Streams</a>. "
        }
      ]
    },
    "streamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The prefix of the stream name of the CloudWatch Logs. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html\">Working with Log Groups and Log Streams</a>. "
        }
      ]
    }
  },
  "required": [
    "status"
  ]
}