interface HookTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnGuardHookPropsMixin.HookTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnGuardHookPropsMixin_HookTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnGuardHookPropsMixin.HookTargetProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnGuardHookPropsMixin.HookTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnGuardHookPropsMixin » HookTargetProperty |
Hook targets are the destination where hooks will be invoked against.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const hookTargetProperty: cloudformation_mixins.CfnGuardHookPropsMixin.HookTargetProperty = {
action: 'action',
invocationPoint: 'invocationPoint',
targetName: 'targetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | Target actions are the type of operation hooks will be executed at. |
| invocation | string | Invocation points are the point in provisioning workflow where hooks will be executed. |
| target | string | Type name of hook target. |
action?
Type:
string
(optional)
Target actions are the type of operation hooks will be executed at.
invocationPoint?
Type:
string
(optional)
Invocation points are the point in provisioning workflow where hooks will be executed.
targetName?
Type:
string
(optional)
Type name of hook target.
Hook targets are the destination where hooks will be invoked against.

.NET
Go
Java
Python
TypeScript