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

DescribeCodeCoveragesInput

import type { DescribeCodeCoveragesInput } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";
interface DescribeCodeCoveragesInput {
maxLineCoveragePercentage?: number | null;
maxResults?: number | null;
minLineCoveragePercentage?: number | null;
nextToken?: string | null;
reportArn: string;
sortOrder?: SortOrderType | null;
}

§Properties

§
maxLineCoveragePercentage?: number | null
[src]

The maximum line coverage percentage to report.

§
maxResults?: number | null
[src]

The maximum number of results to return.

§
minLineCoveragePercentage?: number | null
[src]

The minimum line coverage percentage to report.

§
nextToken?: string | null
[src]

The nextToken value returned from a previous call to DescribeCodeCoverages. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

§
reportArn: string
[src]

The ARN of the report for which test cases are returned.

§

Specifies how the results are sorted. Possible values are:

FILE_PATH: The results are sorted by file path.

LINE_COVERAGE_PERCENTAGE: The results are sorted by the percentage of lines that are covered.

§
sortOrder?: SortOrderType | null
[src]

Specifies if the results are sorted in ascending or descending order.