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

PutSourceServerActionRequest

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

§Properties

§
actionID: string
[src]

Source server post migration custom action ID.

§
actionName: string
[src]

Source server post migration custom action name.

§
active?: boolean | null
[src]

Source server post migration custom action active status.

§
documentIdentifier: string
[src]

Source server post migration custom action document identifier.

§
documentVersion?: string | null
[src]

Source server post migration custom action document version.

§
mustSucceedForCutover?: boolean | null
[src]

Source server post migration custom action must succeed for cutover.

§
order: number
[src]

Source server post migration custom action order.

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

Source server post migration custom action parameters.

§
sourceServerID: string
[src]

Source server ID.

§
timeoutSeconds?: number | null
[src]

Source server post migration custom action timeout in seconds.