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

GetDocumentRequest

import type { GetDocumentRequest } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface GetDocumentRequest {
DocumentFormat?: DocumentFormat | null;
DocumentVersion?: string | null;
Name: string;
VersionName?: string | null;
}

§Properties

§
DocumentFormat?: DocumentFormat | null
[src]

Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default format.

§
DocumentVersion?: string | null
[src]

The document version for which you want information.

§
Name: string
[src]

The name of the SSM document.

§
VersionName?: string | null
[src]

An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document and can't be changed.