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

DeleteDocumentRequest

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

§Properties

§
DocumentVersion?: string | null
[src]

The version of the document that you want to delete. If not provided, all versions of the document are deleted.

§
Force?: boolean | null
[src]

Some SSM document types require that you specify a Force flag before you can delete the document. For example, you must specify a Force flag to delete a document of type ApplicationConfigurationSchema. You can restrict access to the Force flag in an Identity and Access Management (IAM) policy.

§
Name: string
[src]

The name of the document.

§
VersionName?: string | null
[src]

The version name of the document that you want to delete. If not provided, all versions of the document are deleted.