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

ProtocolsListData

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

An Firewall Manager protocols list.

interface ProtocolsListData {
CreateTime?: Date | number | null;
LastUpdateTime?: Date | number | null;
ListId?: string | null;
ListName: string;
ListUpdateToken?: string | null;
PreviousProtocolsList?: {
[key: string]: string[] | null | undefined;
}
| null;
ProtocolsList: string[];
}

§Properties

§
CreateTime?: Date | number | null
[src]

The time that the Firewall Manager protocols list was created.

§
LastUpdateTime?: Date | number | null
[src]

The time that the Firewall Manager protocols list was last updated.

§
ListId?: string | null
[src]

The ID of the Firewall Manager protocols list.

§
ListName: string
[src]

The name of the Firewall Manager protocols list.

§
ListUpdateToken?: string | null
[src]

A unique identifier for each update to the list. When you update the list, the update token must match the token of the current version of the application list. You can retrieve the update token by getting the list.

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

A map of previous version numbers to their corresponding protocol arrays.

§
ProtocolsList: string[]
[src]

An array of protocols in the Firewall Manager protocols list.