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

RepositoryAggregationResponse

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

A response that contains details on the results of a finding aggregation by repository.

interface RepositoryAggregationResponse {
accountId?: string | null;
affectedImages?: number | null;
repository: string;
severityCounts?: SeverityCounts | null;
}

§Properties

§
accountId?: string | null
[src]

The ID of the Amazon Web Services account associated with the findings.

§
affectedImages?: number | null
[src]

The number of container images impacted by the findings.

§
repository: string
[src]

The name of the repository associated with the findings.

§
severityCounts?: SeverityCounts | null
[src]

An object that represent the count of matched findings per severity.