Interface CfnRuleGroup.StatelessRulesAndCustomActionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.StatelessRulesAndCustomActionsProperty.Jsii$Proxy
- Enclosing class:
CfnRuleGroup
@Stability(Stable)
public static interface CfnRuleGroup.StatelessRulesAndCustomActionsProperty
extends software.amazon.jsii.JsiiSerializable
Stateless inspection criteria.
Each stateless rule group uses exactly one of these data types to define its stateless rules.
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.*;
StatelessRulesAndCustomActionsProperty statelessRulesAndCustomActionsProperty = StatelessRulesAndCustomActionsProperty.builder()
.statelessRules(List.of(StatelessRuleProperty.builder()
.priority(123)
.ruleDefinition(RuleDefinitionProperty.builder()
.actions(List.of("actions"))
.matchAttributes(MatchAttributesProperty.builder()
.destinationPorts(List.of(PortRangeProperty.builder()
.fromPort(123)
.toPort(123)
.build()))
.destinations(List.of(AddressProperty.builder()
.addressDefinition("addressDefinition")
.build()))
.protocols(List.of(123))
.sourcePorts(List.of(PortRangeProperty.builder()
.fromPort(123)
.toPort(123)
.build()))
.sources(List.of(AddressProperty.builder()
.addressDefinition("addressDefinition")
.build()))
.tcpFlags(List.of(TCPFlagFieldProperty.builder()
.flags(List.of("flags"))
// the properties below are optional
.masks(List.of("masks"))
.build()))
.build())
.build())
.build()))
// the properties below are optional
.customActions(List.of(CustomActionProperty.builder()
.actionDefinition(ActionDefinitionProperty.builder()
.publishMetricAction(PublishMetricActionProperty.builder()
.dimensions(List.of(DimensionProperty.builder()
.value("value")
.build()))
.build())
.build())
.actionName("actionName")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.StatelessRulesAndCustomActionsPropertystatic final classAn implementation forCfnRuleGroup.StatelessRulesAndCustomActionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatelessRules
Defines the set of stateless rules for use in a stateless rule group.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRuleGroup.StatelessRuleProperty>- See Also:
-
getCustomActions
Defines an array of individual custom action definitions that are available for use by the stateless rules in thisStatelessRulesAndCustomActionsspecification.You name each custom action that you define, and then you can use it by name in your stateless rule definition
Actionsspecification.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRuleGroup.CustomActionProperty>- See Also:
-
builder
-