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

TitleAggregationResponse

import type { TitleAggregationResponse } 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 title.

interface TitleAggregationResponse {
accountId?: string | null;
severityCounts?: SeverityCounts | null;
title: string;
vulnerabilityId?: string | null;
}

§Properties

§
accountId?: string | null
[src]

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

§
severityCounts?: SeverityCounts | null
[src]

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

§
title: string
[src]

The title that the findings were aggregated on.

§
vulnerabilityId?: string | null
[src]

The vulnerability ID of the finding.