Amazon CodeBuild · JSON Structure

Amazon Codebuild Get Report Group Trend Input Structure

GetReportGroupTrendInput schema from Amazon CodeBuild

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

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

Properties

reportGroupArn numOfReports trendField

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-get-report-group-trend-input-structure.json",
  "name": "GetReportGroupTrendInput",
  "description": "GetReportGroupTrendInput schema from Amazon CodeBuild",
  "type": "object",
  "properties": {
    "reportGroupArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ARN of the report group that contains the reports to analyze."
        }
      ]
    },
    "numOfReports": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PageSize"
        },
        {
          "description": "<p>The number of reports to analyze. This operation always retrieves the most recent reports.</p> <p>If this parameter is omitted, the most recent 100 reports are analyzed.</p>"
        }
      ]
    },
    "trendField": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReportGroupTrendFieldType"
        },
        {
          "description": "<p>The test report value to accumulate. This must be one of the following values:</p> <dl> <dt>Test reports:</dt> <dd> <dl> <dt>DURATION</dt> <dd> <p>Accumulate the test run times for the specified reports.</p> </dd> <dt>PASS_RATE</dt> <dd> <p>Accumulate the percentage of tests that passed for the specified test reports.</p> </dd> <dt>TOTAL</dt> <dd> <p>Accumulate the total number of tests for the specified test reports.</p> </dd> </dl> </dd> </dl> <dl> <dt>Code coverage reports:</dt> <dd> <dl> <dt>BRANCH_COVERAGE</dt> <dd> <p>Accumulate the branch coverage percentages for the specified test reports.</p> </dd> <dt>BRANCHES_COVERED</dt> <dd> <p>Accumulate the branches covered values for the specified test reports.</p> </dd> <dt>BRANCHES_MISSED</dt> <dd> <p>Accumulate the branches missed values for the specified test reports.</p> </dd> <dt>LINE_COVERAGE</dt> <dd> <p>Accumulate the line coverage percentages for the specified test reports.</p> </dd> <dt>LINES_COVERED</dt> <dd> <p>Accumulate the lines covered values for the specified test reports.</p> </dd> <dt>LINES_MISSED</dt> <dd> <p>Accumulate the lines not covered values for the specified test reports.</p> </dd> </dl> </dd> </dl>"
        }
      ]
    }
  },
  "required": [
    "reportGroupArn",
    "trendField"
  ]
}