Interface CfnFirewallRuleGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFirewallRuleGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:38.482Z")
@Stability(Stable)
public interface CfnFirewallRuleGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnFirewallRuleGroup
.
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.route53resolver.*; CfnFirewallRuleGroupProps cfnFirewallRuleGroupProps = CfnFirewallRuleGroupProps.builder() .firewallRules(List.of(FirewallRuleProperty.builder() .action("action") .priority(123) // the properties below are optional .blockOverrideDnsType("blockOverrideDnsType") .blockOverrideDomain("blockOverrideDomain") .blockOverrideTtl(123) .blockResponse("blockResponse") .confidenceThreshold("confidenceThreshold") .dnsThreatProtection("dnsThreatProtection") .firewallDomainListId("firewallDomainListId") .firewallDomainRedirectionAction("firewallDomainRedirectionAction") .firewallThreatProtectionId("firewallThreatProtectionId") .qtype("qtype") .build())) .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFirewallRuleGroupProps
static final class
An implementation forCfnFirewallRuleGroupProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFirewallRules
A list of the rules that you have defined.- See Also:
-
getName
The name of the rule group.- See Also:
-
getTags
A list of the tag keys and values that you want to associate with the rule group.- See Also:
-
builder
- Returns:
- a
CfnFirewallRuleGroupProps.Builder
ofCfnFirewallRuleGroupProps
-