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

IcmpTypeCode

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

Describes the ICMP type and code.

interface IcmpTypeCode {
Code?: number | null;
Type?: number | null;
}

§Properties

§
Code?: number | null
[src]

The ICMP code. A value of -1 means all codes for the specified ICMP type.

§
Type?: number | null
[src]

The ICMP type. A value of -1 means all types.