interface ResourceVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.ResourceVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#ResourceVersionReference |
Java | software.amazon.awscdk.interfaces.cloudformation.ResourceVersionReference |
Python | aws_cdk.interfaces.aws_cloudformation.ResourceVersionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_cloudformation } from 'aws-cdk-lib/interfaces';
const resourceVersionReference: interfaces_aws_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