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

Ec2InstanceAggregationResponse

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

A response that contains the results of a finding aggregation by Amazon EC2 instance.

interface Ec2InstanceAggregationResponse {
accountId?: string | null;
ami?: string | null;
instanceId: string;
instanceTags?: {
[key: string]: string | null | undefined;
}
| null;
networkFindings?: number | null;
operatingSystem?: string | null;
severityCounts?: SeverityCounts | null;
}

§Properties

§
accountId?: string | null
[src]

The Amazon Web Services account the Amazon EC2 instance belongs to.

§
ami?: string | null
[src]

The Amazon Machine Image (AMI) of the Amazon EC2 instance.

§
instanceId: string
[src]

The Amazon EC2 instance ID.

§
instanceTags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags attached to the instance.

§
networkFindings?: number | null
[src]

The number of network findings for the Amazon EC2 instance.

§
operatingSystem?: string | null
[src]

The operating system of the Amazon EC2 instance.

§
severityCounts?: SeverityCounts | null
[src]

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