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

ActionSummary

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

Provides a summary of an action.

interface ActionSummary {
description?: string | null;
id?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
targets?: {
[key: string]: ActionTarget | null | undefined;
}
| null;
}

§Properties

§
description?: string | null
[src]

The description for the action.

§
id?: string | null
[src]

The ID of the action.

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

The tags for the action.

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

The targets for the action.