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

AmiAggregationResponse

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

A response that contains the results of a finding aggregation by AMI.

interface AmiAggregationResponse {
accountId?: string | null;
affectedInstances?: number | null;
ami: string;
severityCounts?: SeverityCounts | null;
}

§Properties

§
accountId?: string | null
[src]

The Amazon Web Services account ID that the AMI belongs.

§
affectedInstances?: number | null
[src]

The IDs of Amazon EC2 instances using this AMI.

§
ami: string
[src]

The ID of the AMI that findings were aggregated for.

§
severityCounts?: SeverityCounts | null
[src]

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