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

AnalysisPacketHeader

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

Describes a header. Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.

interface AnalysisPacketHeader {
DestinationAddresses: string[];
DestinationPortRanges: PortRange[];
Protocol?: string | null;
SourceAddresses: string[];
SourcePortRanges: PortRange[];
}

§Properties

§
DestinationAddresses: string[]
[src]

The destination addresses.

§
DestinationPortRanges: PortRange[]
[src]

The destination port ranges.

§
Protocol?: string | null
[src]

The protocol.

§
SourceAddresses: string[]
[src]

The source addresses.

§
SourcePortRanges: PortRange[]
[src]

The source port ranges.