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

SsmAutomation

import type { SsmAutomation } from "https://aws-api.deno.dev/v0.4/services/ssmincidents.ts?docs=full";

Details about the Systems Manager automation document that will be used as a runbook during an incident.

interface SsmAutomation {
documentName: string;
documentVersion?: string | null;
dynamicParameters?: {
[key: string]: DynamicSsmParameterValue | null | undefined;
}
| null;
parameters?: {
[key: string]: string[] | null | undefined;
}
| null;
roleArn: string;
targetAccount?: SsmTargetAccount | null;
}

§Properties

§
documentName: string
[src]

The automation document's name.

§
documentVersion?: string | null
[src]

The automation document's version to use when running.

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

The key-value pair to resolve dynamic parameter values when processing a Systems Manager Automation runbook.

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

The key-value pair parameters to use when running the automation document.

§
roleArn: string
[src]

The Amazon Resource Name (ARN) of the role that the automation document will assume when running commands.

§
targetAccount?: SsmTargetAccount | null
[src]

The account that the automation document will be run in. This can be in either the management account or an application account.