interface CfnModuleVersionProps
Language | Type name |
---|---|
![]() | Amazon.CDK.CfnModuleVersionProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2#CfnModuleVersionProps |
![]() | software.amazon.awscdk.CfnModuleVersionProps |
![]() | aws_cdk.CfnModuleVersionProps |
![]() | aws-cdk-lib » CfnModuleVersionProps |
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 * as cdk from 'aws-cdk-lib';
const cfnModuleVersionProps: cdk.CfnModuleVersionProps = {
moduleName: 'moduleName',
modulePackage: 'modulePackage',
};
Properties
Name | Type | Description |
---|---|---|
module | string | The name of the module being registered. |
module | string | A URL to the S3 bucket containing the package that contains the template fragment and schema files for the module version to register. |
moduleName
Type:
string
The name of the module being registered.
modulePackage
Type:
string
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.