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

SsmDocument

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

AWS Systems Manager Document.

interface SsmDocument {
actionName: string;
mustSucceedForCutover?: boolean | null;
parameters?: {
[key: string]: SsmParameterStoreParameter[] | null | undefined;
}
| null;
ssmDocumentName: string;
timeoutSeconds?: number | null;
}

§Properties

§
actionName: string
[src]

User-friendly name for the AWS Systems Manager Document.

§
mustSucceedForCutover?: boolean | null
[src]

If true, Cutover will not be enabled if the document has failed.

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

AWS Systems Manager Document parameters.

§
ssmDocumentName: string
[src]

AWS Systems Manager Document name or full ARN.

§
timeoutSeconds?: number | null
[src]

AWS Systems Manager Document timeout seconds.