interface CfnModuleVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnModuleVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnModuleVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnModuleVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnModuleVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnModuleVersionMixinProps |
Properties for CfnModuleVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const cfnModuleVersionMixinProps: cloudformation_mixins.CfnModuleVersionMixinProps = {
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 for the package that contains the template fragment and schema files for the module version to register. |
moduleName?
Type:
string
(optional)
The name of the module being registered.
modulePackage?
Type:
string
(optional)
A 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 CloudFormation Command Line Interface (CLI) User Guide .
To register the module version, you must have
s3:GetObjectpermissions to access the S3 objects.

.NET
Go
Java
Python
TypeScript