Amazon CodeBuild · JSON Structure

Amazon Codebuild Create Report Group Input Structure

CreateReportGroupInput schema from Amazon CodeBuild

Type: object Properties: 4 Required: 3
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

CreateReportGroupInput is a JSON Structure definition published by Amazon CodeBuild, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name type exportConfig tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-create-report-group-input-structure.json",
  "name": "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"
  ]
}