Table of Contents

Interface CfnDocument.IDocumentRequiresProperty

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

An SSM document required by the current document.

public interface CfnDocument.IDocumentRequiresProperty

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SSM;

             var documentRequiresProperty = new DocumentRequiresProperty {
                 Name = "name",
                 Version = "version"
             };

Remarks

Properties

Name

The name of the required SSM document.

string? Name { get; }

Property Value

string

Remarks

Version

The document version required by the current document.

string? Version { get; }

Property Value

string

Remarks