@Stability(value=Stable)
public static interface CfnRuleGroup.StatelessRulesAndCustomActionsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRuleGroup.StatelessRulesAndCustomActionsProperty.Builder
A builder for
CfnRuleGroup.StatelessRulesAndCustomActionsProperty |
static class |
CfnRuleGroup.StatelessRulesAndCustomActionsProperty.Jsii$Proxy
An implementation for
CfnRuleGroup.StatelessRulesAndCustomActionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRuleGroup.StatelessRulesAndCustomActionsProperty.Builder |
builder() |
default Object |
getCustomActions()
Defines an array of individual custom action definitions that are available for use by the stateless rules in this `StatelessRulesAndCustomActions` specification.
|
Object |
getStatelessRules()
Defines the set of stateless rules for use in a stateless rule group.
|
@Stability(value=Stable) @NotNull Object getStatelessRules()
@Stability(value=Stable) @Nullable default Object getCustomActions()
You name each custom action that you define, and then you can use it by name in your stateless rule RuleGroup.RuleDefinition Actions specification.
@Stability(value=Stable) static CfnRuleGroup.StatelessRulesAndCustomActionsProperty.Builder builder()
Copyright © 2022. All rights reserved.