Amazon CodeBuild · Schema
UpdateReportGroupInput
UpdateReportGroupInput schema from Amazon CodeBuild
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting
Properties
| Name | Type | Description |
|---|---|---|
| arn | 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-update-report-group-input-schema.json",
"title": "UpdateReportGroupInput",
"description": "UpdateReportGroupInput schema from Amazon CodeBuild",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/NonEmptyString"
},
{
"description": " The ARN of the report group to update. "
}
]
},
"exportConfig": {
"allOf": [
{
"$ref": "#/components/schemas/ReportExportConfig"
},
{
"description": "<p> Used to specify an updated export type. Valid values are: </p> <ul> <li> <p> <code>S3</code>: The report results are exported to an S3 bucket. </p> </li> <li> <p> <code>NO_EXPORT</code>: The report results are not exported. </p> </li> </ul>"
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "<p> An updated 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": [
"arn"
]
}