Table of Contents

Class CfnModuleDefaultVersionProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Properties for defining a CfnModuleDefaultVersion.

public class CfnModuleDefaultVersionProps : ICfnModuleDefaultVersionProps
Inheritance
CfnModuleDefaultVersionProps
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK;
             var cfnModuleDefaultVersionProps = new CfnModuleDefaultVersionProps {
                 Arn = "arn",
                 ModuleName = "moduleName",
                 VersionId = "versionId"
             };

Remarks

Constructors

CfnModuleDefaultVersionProps()

public CfnModuleDefaultVersionProps()

Properties

Arn

The Amazon Resource Name (ARN) of the module version to set as the default version.

public string? Arn { get; set; }

Property Value

string

Remarks

ModuleName

The name of the module.

public string? ModuleName { get; set; }

Property Value

string

Remarks

VersionId

The ID for the specific version of the module.

public string? VersionId { get; set; }

Property Value

string

Remarks