Interface CfnModuleDefaultVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModuleDefaultVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:34.090Z")
@Stability(Stable)
public interface CfnModuleDefaultVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnModuleDefaultVersion.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudformation.*;
CfnModuleDefaultVersionProps cfnModuleDefaultVersionProps = CfnModuleDefaultVersionProps.builder()
.arn("arn")
.moduleName("moduleName")
.versionId("versionId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModuleDefaultVersionPropsstatic final classAn implementation forCfnModuleDefaultVersionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The Amazon Resource Name (ARN) of the module version to set as the default version.Conditional: You must specify either
Arn, orModuleNameandVersionId.- See Also:
-
getModuleName
The name of the module.Conditional: You must specify either
Arn, orModuleNameandVersionId.- See Also:
-
getVersionId
The ID for the specific version of the module.Conditional: You must specify either
Arn, orModuleNameandVersionId.- See Also:
-
builder
-