Amazon CodeBuild · Schema
CreateReportGroupInput
CreateReportGroupInput schema from Amazon CodeBuild
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting
Properties
| Name | Type | Description |
|---|---|---|
| name | object | |
| type | object | |
| exportConfig | object | |
| tags | 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-create-report-group-input-schema.json",
"title": "CreateReportGroupInput",
"description": "CreateReportGroupInput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/ReportGroupName"
},
{
"description": " The name of the report group. "
}
]
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/ReportType"
},
{
"description": " The type of report group. "
}
]
},
"exportConfig": {
"allOf": [
{
"$ref": "#/components/schemas/ReportExportConfig"
},
{
"description": " A <code>ReportExportConfig</code> object that contains information about where the report group test results are exported. "
}
]
},
"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>"
}
]
}
},
"required": [
"name",
"type",
"exportConfig"
]
}