Show / Hide Table of Contents

Class CfnDocument.DocumentRequiresProperty

An SSM document required by the current document.

Inheritance
object
CfnDocument.DocumentRequiresProperty
Implements
CfnDocument.IDocumentRequiresProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDocument.DocumentRequiresProperty : CfnDocument.IDocumentRequiresProperty
Syntax (vb)
Public Class CfnDocument.DocumentRequiresProperty Implements CfnDocument.IDocumentRequiresProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html

ExampleMetadata: fixture=_generated

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"
             };

Synopsis

Constructors

DocumentRequiresProperty()

An SSM document required by the current document.

Properties

Name

The name of the required SSM document.

Version

The document version required by the current document.

Constructors

DocumentRequiresProperty()

An SSM document required by the current document.

public DocumentRequiresProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html

ExampleMetadata: fixture=_generated

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"
             };

Properties

Name

The name of the required SSM document.

public string? Name { get; set; }
Property Value

string

Remarks

The name can be an Amazon Resource Name (ARN).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html#cfn-ssm-document-documentrequires-name

Version

The document version required by the current document.

public string? Version { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html#cfn-ssm-document-documentrequires-version

Implements

CfnDocument.IDocumentRequiresProperty
Back to top Generated by DocFX