Class CfnLambdaHookPropsMixin.TargetFiltersProperty
The TargetFilters property type specifies the target filters for the Hook.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnLambdaHookPropsMixin.TargetFiltersProperty : CfnLambdaHookPropsMixin.ITargetFiltersProperty
Syntax (vb)
Public Class CfnLambdaHookPropsMixin.TargetFiltersProperty Implements CfnLambdaHookPropsMixin.ITargetFiltersProperty
Remarks
For more information, see CloudFormation Hook target filters .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins;
var targetFiltersProperty = new TargetFiltersProperty {
Actions = new [] { "actions" },
InvocationPoints = new [] { "invocationPoints" },
TargetNames = new [] { "targetNames" },
Targets = new [] { new HookTargetProperty {
Action = "action",
InvocationPoint = "invocationPoint",
TargetName = "targetName"
} }
};
Synopsis
Constructors
| TargetFiltersProperty() | The |
Properties
| Actions | List of actions that the hook is going to target. |
| InvocationPoints | List of invocation points that the hook is going to target. |
| TargetNames | List of type names that the hook is going to target. |
| Targets | List of hook targets. |
Constructors
TargetFiltersProperty()
The TargetFilters property type specifies the target filters for the Hook.
public TargetFiltersProperty()
Remarks
For more information, see CloudFormation Hook target filters .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins;
var targetFiltersProperty = new TargetFiltersProperty {
Actions = new [] { "actions" },
InvocationPoints = new [] { "invocationPoints" },
TargetNames = new [] { "targetNames" },
Targets = new [] { new HookTargetProperty {
Action = "action",
InvocationPoint = "invocationPoint",
TargetName = "targetName"
} }
};
Properties
Actions
List of actions that the hook is going to target.
public string[]? Actions { get; set; }
Property Value
string[]
Remarks
InvocationPoints
List of invocation points that the hook is going to target.
public string[]? InvocationPoints { get; set; }
Property Value
string[]
Remarks
TargetNames
List of type names that the hook is going to target.
public string[]? TargetNames { get; set; }
Property Value
string[]
Remarks
Targets
List of hook targets.
public object? Targets { get; set; }