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

UpdateDocumentRequest

import type { UpdateDocumentRequest } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface UpdateDocumentRequest {
Attachments?: AttachmentsSource[] | null;
Content: string;
DisplayName?: string | null;
DocumentFormat?: DocumentFormat | null;
DocumentVersion?: string | null;
Name: string;
TargetType?: string | null;
VersionName?: string | null;
}

§Properties

§
Attachments?: AttachmentsSource[] | null
[src]

A list of key-value pairs that describe attachments to a version of a document.

§
Content: string
[src]

A valid JSON or YAML string.

§
DisplayName?: string | null
[src]

The friendly name of the SSM document that you want to update. This value can differ for each version of the document. If you don't specify a value for this parameter in your request, the existing value is applied to the new document version.

§
DocumentFormat?: DocumentFormat | null
[src]

Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format.

§
DocumentVersion?: string | null
[src]

The version of the document that you want to update. Currently, Systems Manager supports updating only the latest version of the document. You can specify the version number of the latest version or use the $LATEST variable.

§
Name: string
[src]

The name of the SSM document that you want to update.

§
TargetType?: string | null
[src]

Specify a new target type for the document.

§
VersionName?: string | null
[src]

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