Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReportGroup

import type { ReportGroup } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

interface ReportGroup {
arn?: string | null;
created?: Date | number | null;
exportConfig?: ReportExportConfig | null;
lastModified?: Date | number | null;
name?: string | null;
status?: ReportGroupStatusType | null;
tags?: Tag[] | null;
type?: ReportType | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the ReportGroup.

§
created?: Date | number | null
[src]

The date and time this ReportGroup was created.

§
exportConfig?: ReportExportConfig | null
[src]

Information about the destination where the raw data of this ReportGroup is exported.

§
lastModified?: Date | number | null
[src]

The date and time this ReportGroup was last modified.

§
name?: string | null
[src]

The name of the ReportGroup.

§

The status of the report group. This property is read-only.

This can be one of the following values:

ACTIVE: The report group is active.

DELETING: The report group is in the process of being deleted.

§
tags?: Tag[] | null
[src]

A list of tag key and value pairs associated with this report group.

These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

§
type?: ReportType | null
[src]

The type of the ReportGroup. This can be one of the following values:

CODE_COVERAGE: The report group contains code coverage reports.

TEST: The report group contains test reports.