Interface CfnRuleGroup.ActionDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuleGroup.ActionDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnRuleGroup

@Stability(Stable) public static interface CfnRuleGroup.ActionDefinitionProperty extends software.amazon.jsii.JsiiSerializable
A custom action to use in stateless rule actions settings.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.networkfirewall.*;
 ActionDefinitionProperty actionDefinitionProperty = ActionDefinitionProperty.builder()
         .publishMetricAction(PublishMetricActionProperty.builder()
                 .dimensions(List.of(DimensionProperty.builder()
                         .value("value")
                         .build()))
                 .build())
         .build();
 

See Also: