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

AppsListData

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

An Firewall Manager applications list.

interface AppsListData {
AppsList: App[];
CreateTime?: Date | number | null;
LastUpdateTime?: Date | number | null;
ListId?: string | null;
ListName: string;
ListUpdateToken?: string | null;
PreviousAppsList?: {
[key: string]: App[] | null | undefined;
}
| null;
}

§Properties

§
AppsList: App[]
[src]

An array of applications in the Firewall Manager applications list.

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

The time that the Firewall Manager applications list was created.

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

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

§
ListId?: string | null
[src]

The ID of the Firewall Manager applications list.

§
ListName: string
[src]

The name of the Firewall Manager applications 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.

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

A map of previous version numbers to their corresponding App object arrays.