interface StackNamesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.CfnLambdaHook.StackNamesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnLambdaHook_StackNamesProperty |
Java | software.amazon.awscdk.CfnLambdaHook.StackNamesProperty |
Python | aws_cdk.CfnLambdaHook.StackNamesProperty |
TypeScript | aws-cdk-lib » CfnLambdaHook » StackNamesProperty |
List of stack names as filters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const stackNamesProperty: cdk.CfnLambdaHook.StackNamesProperty = {
exclude: ['exclude'],
include: ['include'],
};
Properties
Name | Type | Description |
---|---|---|
exclude? | string[] | List of stack names that the hook is going to be excluded from. |
include? | string[] | List of stack names that the hook is going to target. |
exclude?
Type:
string[]
(optional)
List of stack names that the hook is going to be excluded from.
include?
Type:
string[]
(optional)
List of stack names that the hook is going to target.