Amazon CodeBuild · Schema
ReportGroup
A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| name | object | |
| type | object | |
| exportConfig | object | |
| created | object | |
| lastModified | object | |
| tags | object | |
| status | object |
JSON Schema
{
"$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-report-group-schema.json",
"title": "ReportGroup",
"description": "A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files. ",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/NonEmptyString"
},
{
"description": "The ARN of the <code>ReportGroup</code>. "
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/ReportGroupName"
},
{
"description": "The name of the <code>ReportGroup</code>. "
}
]
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/ReportType"
},
{
"description": "<p>The type of the <code>ReportGroup</code>. This can be one of the following values:</p> <dl> <dt>CODE_COVERAGE</dt> <dd> <p>The report group contains code coverage reports.</p> </dd> <dt>TEST</dt> <dd> <p>The report group contains test reports.</p> </dd> </dl>"
}
]
},
"exportConfig": {
"allOf": [
{
"$ref": "#/components/schemas/ReportExportConfig"
},
{
"description": "Information about the destination where the raw data of this <code>ReportGroup</code> is exported. "
}
]
},
"created": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time this <code>ReportGroup</code> was created. "
}
]
},
"lastModified": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time this <code>ReportGroup</code> was last modified. "
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "<p>A list of tag key and value pairs associated with this report group. </p> <p>These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.</p>"
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/ReportGroupStatusType"
},
{
"description": "<p>The status of the report group. This property is read-only.</p> <p>This can be one of the following values:</p> <dl> <dt>ACTIVE</dt> <dd> <p>The report group is active.</p> </dd> <dt>DELETING</dt> <dd> <p>The report group is in the process of being deleted.</p> </dd> </dl>"
}
]
}
}
}