interface TargetFiltersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnLambdaHookPropsMixin.TargetFiltersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnLambdaHookPropsMixin_TargetFiltersProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnLambdaHookPropsMixin.TargetFiltersProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnLambdaHookPropsMixin.TargetFiltersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnLambdaHookPropsMixin » TargetFiltersProperty |
The TargetFilters property type specifies the target filters for the Hook.
For more information, see CloudFormation Hook target filters .
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 targetFiltersProperty: cloudformation_mixins.CfnLambdaHookPropsMixin.TargetFiltersProperty = {
actions: ['actions'],
invocationPoints: ['invocationPoints'],
targetNames: ['targetNames'],
targets: [{
action: 'action',
invocationPoint: 'invocationPoint',
targetName: 'targetName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | List of actions that the hook is going to target. |
| invocation | string[] | List of invocation points that the hook is going to target. |
| target | string[] | List of type names that the hook is going to target. |
| targets? | IResolvable | (IResolvable | Hook)[] | List of hook targets. |
actions?
Type:
string[]
(optional)
List of actions that the hook is going to target.
invocationPoints?
Type:
string[]
(optional)
List of invocation points that the hook is going to target.
targetNames?
Type:
string[]
(optional)
List of type names that the hook is going to target.
targets?
Type:
IResolvable | (IResolvable | Hook)[]
(optional)
List of hook targets.

.NET
Go
Java
Python
TypeScript