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

PutTemplateActionRequest

import type { PutTemplateActionRequest } from "https://aws-api.deno.dev/v0.4/services/mgn.ts?docs=full";
interface PutTemplateActionRequest {
actionID: string;
actionName: string;
active?: boolean | null;
documentIdentifier: string;
documentVersion?: string | null;
launchConfigurationTemplateID: string;
mustSucceedForCutover?: boolean | null;
operatingSystem?: string | null;
order: number;
parameters?: {
[key: string]: SsmParameterStoreParameter[] | null | undefined;
}
| null;
timeoutSeconds?: number | null;
}

§Properties

§
actionID: string
[src]

Template post migration custom action ID.

§
actionName: string
[src]

Template post migration custom action name.

§
active?: boolean | null
[src]

Template post migration custom action active status.

§
documentIdentifier: string
[src]

Template post migration custom action document identifier.

§
documentVersion?: string | null
[src]

Template post migration custom action document version.

§
launchConfigurationTemplateID: string
[src]

Launch configuration template ID.

§
mustSucceedForCutover?: boolean | null
[src]

Template post migration custom action must succeed for cutover.

§
operatingSystem?: string | null
[src]

Operating system eligible for this template post migration custom action.

§
order: number
[src]

Template post migration custom action order.

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

Template post migration custom action parameters.

§
timeoutSeconds?: number | null
[src]

Template post migration custom action timeout in seconds.