Interface CfnLambdaHook.ITargetFiltersProperty
The TargetFilters
property type specifies the target filters for the Hook.
Namespace: Amazon.CDK.AWS.CloudFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITargetFiltersProperty
Syntax (vb)
Public Interface ITargetFiltersProperty
Remarks
For more information, see AWS 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.AWS.CloudFormation;
var targetFiltersProperty = new TargetFiltersProperty {
Targets = new [] { new HookTargetProperty {
Action = "action",
InvocationPoint = "invocationPoint",
TargetName = "targetName"
} },
// the properties below are optional
Actions = new [] { "actions" },
InvocationPoints = new [] { "invocationPoints" },
TargetNames = new [] { "targetNames" }
};
Synopsis
Properties
Actions | List of actions that the hook is going to target. |
Invocation |
List of invocation points that the hook is going to target. |
Target |
List of type names that the hook is going to target. |
Targets | List of hook targets. |
Properties
Actions
List of actions that the hook is going to target.
virtual string[] Actions { get; }
Property Value
System.
Remarks
InvocationPoints
List of invocation points that the hook is going to target.
virtual string[] InvocationPoints { get; }
Property Value
System.
Remarks
TargetNames
List of type names that the hook is going to target.
virtual string[] TargetNames { get; }
Property Value
System.
Remarks
Targets
List of hook targets.
object Targets { get; }
Property Value
System.