interface LambdaHookReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.LambdaHookReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#LambdaHookReference |
Java | software.amazon.awscdk.interfaces.cloudformation.LambdaHookReference |
Python | aws_cdk.interfaces.aws_cloudformation.LambdaHookReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » LambdaHookReference |
A reference to a LambdaHook 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 lambdaHookReference: interfaces_aws_cloudformation.LambdaHookReference = {
hookArn: 'hookArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| hook | string | The HookArn of the LambdaHook resource. |
hookArn
Type:
string
The HookArn of the LambdaHook resource.

.NET
Go
Java
Python
TypeScript