Interface CfnConformancePack.TemplateSSMDocumentDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConformancePack.TemplateSSMDocumentDetailsProperty.Jsii$Proxy
Enclosing class:
CfnConformancePack

@Stability(Stable) public static interface CfnConformancePack.TemplateSSMDocumentDetailsProperty extends software.amazon.jsii.JsiiSerializable
This API allows you to create a conformance pack template with an AWS 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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.config.*;
 TemplateSSMDocumentDetailsProperty templateSSMDocumentDetailsProperty = TemplateSSMDocumentDetailsProperty.builder()
         .documentName("documentName")
         .documentVersion("documentVersion")
         .build();
 

See Also: