Package software.amazon.awscdk.core
Interface CfnModuleDefaultVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModuleDefaultVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:54.867Z")
@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.core.*; CfnModuleDefaultVersionProps cfnModuleDefaultVersionProps = CfnModuleDefaultVersionProps.builder() .arn("arn") .moduleName("moduleName") .versionId("versionId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModuleDefaultVersionProps
static final class
An 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
, orModuleName
andVersionId
. -
getModuleName
The name of the module.Conditional: You must specify either
Arn
, orModuleName
andVersionId
. -
getVersionId
The ID for the specific version of the module.Conditional: You must specify either
Arn
, orModuleName
andVersionId
. -
builder
-