interface TargetFiltersProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CfnLambdaHook.TargetFiltersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnLambdaHook_TargetFiltersProperty |
Java | software.amazon.awscdk.services.cloudformation.CfnLambdaHook.TargetFiltersProperty |
Python | aws_cdk.aws_cloudformation.CfnLambdaHook.TargetFiltersProperty |
TypeScript | aws-cdk-lib » aws_cloudformation » CfnLambdaHook » TargetFiltersProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from 'aws-cdk-lib';
const targetFiltersProperty: cloudformation.CfnLambdaHook.TargetFiltersProperty = {
actions: ['actions'],
invocationPoints: ['invocationPoints'],
targetNames: ['targetNames'],
};
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. |
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.