Package software.amazon.awscdk
Interface CfnModuleVersionProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnModuleVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:30.874Z")
@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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModuleVersionPropsstatic final classAn implementation forCfnModuleVersionProps
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The name of the module being registered.A URL to the S3 bucket for 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- 
getModuleNameThe name of the module being registered.- See Also:
 
- 
getModulePackageA URL to the S3 bucket for 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:GetObjectpermissions to access the S3 objects.- See Also:
 
- 
builder- Returns:
- a CfnModuleVersionProps.BuilderofCfnModuleVersionProps
 
 
-