Interface ICfnModuleDefaultVersionMixinProps
Properties for CfnModuleDefaultVersionPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnModuleDefaultVersionMixinProps
Syntax (vb)
Public Interface ICfnModuleDefaultVersionMixinProps
Remarks
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.CfnPropertyMixins.AWS.CloudFormation;
var cfnModuleDefaultVersionMixinProps = new CfnModuleDefaultVersionMixinProps {
Arn = "arn",
ModuleName = "moduleName",
VersionId = "versionId"
};
Synopsis
Properties
| Arn | The Amazon Resource Name (ARN) of the module version to set as the default version. |
| ModuleName | The name of the module. |
| VersionId | The ID for the specific version of the module. |
Properties
Arn
The Amazon Resource Name (ARN) of the module version to set as the default version.
object? Arn { get; }
Property Value
Remarks
Conditional: You must specify either Arn , or ModuleName and VersionId .
Type union: either string or IModuleVersionRef
ModuleName
The name of the module.
string? ModuleName { get; }
Property Value
Remarks
Conditional: You must specify either Arn , or ModuleName and VersionId .
VersionId
The ID for the specific version of the module.
string? VersionId { get; }
Property Value
Remarks
Conditional: You must specify either Arn , or ModuleName and VersionId .