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

TemplateSSMDocumentDetails

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

This API allows you to create a conformance pack template with an Amazon Web Services Systems Manager document (SSM document). To deploy a conformance pack using an SSM document, first create an SSM document with conformance pack content, and then provide the DocumentName in the PutConformancePack API. You can also provide the DocumentVersion.

The TemplateSSMDocumentDetails object contains the name of the SSM document and the version of the SSM document.

interface TemplateSSMDocumentDetails {
DocumentName: string;
DocumentVersion?: string | null;
}

§Properties

§
DocumentName: string
[src]

The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the document name, Config checks only your account and Amazon Web Services Region for the SSM document. If you want to use an SSM document from another Region or account, you must provide the ARN.

§
DocumentVersion?: string | null
[src]

The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version.

Note: This field is optional.