Amazon CodeBuild · Schema
DeleteReportGroupInput
DeleteReportGroupInput schema from Amazon CodeBuild
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| deleteReports | 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-delete-report-group-input-schema.json",
"title": "DeleteReportGroupInput",
"description": "DeleteReportGroupInput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/NonEmptyString"
},
{
"description": "The ARN of the report group to delete. "
}
]
},
"deleteReports": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "<p>If <code>true</code>, deletes any reports that belong to a report group before deleting the report group. </p> <p>If <code>false</code>, you must delete any reports in the report group. Use <a href=\"https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html\">ListReportsForReportGroup</a> to get the reports in a report group. Use <a href=\"https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html\">DeleteReport</a> to delete the reports. If you call <code>DeleteReportGroup</code> for a report group that contains one or more reports, an exception is thrown. </p>"
}
]
}
},
"required": [
"arn"
]
}