interface VersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lambda.VersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslambda#VersionReference |
Java | software.amazon.awscdk.interfaces.lambda.VersionReference |
Python | aws_cdk.interfaces.aws_lambda.VersionReference |
TypeScript | aws-cdk-lib » interfaces » aws_lambda » VersionReference |
A reference to a Version resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as interfaces_aws_lambda } from 'aws-cdk-lib/interfaces';
const versionReference: interfaces_aws_lambda.VersionReference = {
functionArn: 'functionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The FunctionArn of the Version resource. |
functionArn
Type:
string
The FunctionArn of the Version resource.

.NET
Go
Java
Python
TypeScript