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

.NET
Go
Java
Python
TypeScript