interface ResourceVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.ResourceVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#ResourceVersionReference |
Java | software.amazon.awscdk.services.cloudformation.ResourceVersionReference |
Python | aws_cdk.aws_cloudformation.ResourceVersionReference |
TypeScript | aws-cdk-lib » aws_cloudformation » ResourceVersionReference |
A reference to a ResourceVersion 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 resourceVersionReference: cloudformation.ResourceVersionReference = {
resourceVersionArn: 'resourceVersionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The Arn of the ResourceVersion resource. |
resourceVersionArn
Type:
string
The Arn of the ResourceVersion resource.

.NET
Go
Java
Python
TypeScript