interface ModuleVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.ModuleVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#ModuleVersionReference |
Java | software.amazon.awscdk.services.cloudformation.ModuleVersionReference |
Python | aws_cdk.aws_cloudformation.ModuleVersionReference |
TypeScript | aws-cdk-lib » aws_cloudformation » ModuleVersionReference |
A reference to a ModuleVersion resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from 'aws-cdk-lib';
const moduleVersionReference: cloudformation.ModuleVersionReference = {
moduleVersionArn: 'moduleVersionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| module | string | The Arn of the ModuleVersion resource. |
moduleVersionArn
Type:
string
The Arn of the ModuleVersion resource.

.NET
Go
Java
Python
TypeScript