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

Action

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

Describes an action. For more information, see AWS FIS actions in the AWS Fault Injection Simulator User Guide.

interface Action {
description?: string | null;
id?: string | null;
parameters?: {
[key: string]: ActionParameter | null | undefined;
}
| 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.

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

The action parameters, if applicable.

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

The tags for the action.

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

The supported targets for the action.