Table of Contents

Interface ICfnModuleDefaultVersionProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Properties for defining a CfnModuleDefaultVersion.

public interface ICfnModuleDefaultVersionProps

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

Properties

Arn

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

string? Arn { get; }

Property Value

string

Remarks

ModuleName

The name of the module.

string? ModuleName { get; }

Property Value

string

Remarks

VersionId

The ID for the specific version of the module.

string? VersionId { get; }

Property Value

string

Remarks