Interface ICfnModuleDefaultVersionProps
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
ExampleMetadata: fixture=_generated
Properties
Arn
The Amazon Resource Name (ARN) of the module version to set as the default version.
string? Arn { get; }
Property Value
Remarks
Conditional: You must specify either Arn
, or ModuleName
and VersionId
.
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
.