Package software.amazon.awscdk
Interface CfnModuleVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModuleVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:48.199Z")
@Stability(Stable)
public interface CfnModuleVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnModuleVersion
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; CfnModuleVersionProps cfnModuleVersionProps = CfnModuleVersionProps.builder() .moduleName("moduleName") .modulePackage("modulePackage") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModuleVersionProps
static final class
An implementation forCfnModuleVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the module being registered.A URL to the S3 bucket containing the package that contains the template fragment and schema files for the module version to register.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getModuleName
The name of the module being registered.- See Also:
-
getModulePackage
A URL to the S3 bucket containing the package that contains the template fragment and schema files for the module version to register.For more information, see Module structure and requirements in the AWS CloudFormation Command Line Interface (CLI) User Guide .
To register the module version, you must have
s3:GetObject
permissions to access the S3 objects.- See Also:
-
builder
- Returns:
- a
CfnModuleVersionProps.Builder
ofCfnModuleVersionProps
-