@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.701Z") @Stability(value=Stable) public interface CfnFirewallRuleGroupProps extends software.amazon.jsii.JsiiSerializable
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")
.firewallDomainListId("firewallDomainListId")
.priority(123)
// the properties below are optional
.blockOverrideDnsType("blockOverrideDnsType")
.blockOverrideDomain("blockOverrideDomain")
.blockOverrideTtl(123)
.blockResponse("blockResponse")
.build()))
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFirewallRuleGroupProps.Builder
A builder for
CfnFirewallRuleGroupProps |
static class |
CfnFirewallRuleGroupProps.Jsii$Proxy
An implementation for
CfnFirewallRuleGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFirewallRuleGroupProps.Builder |
builder() |
default Object |
getFirewallRules()
A list of the rules that you have defined.
|
default String |
getName()
The name of the rule group.
|
default List<CfnTag> |
getTags()
A list of the tag keys and values that you want to associate with the rule group.
|
@Stability(value=Stable) @Nullable default Object getFirewallRules()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnFirewallRuleGroupProps.Builder builder()
CfnFirewallRuleGroupProps.Builder of CfnFirewallRuleGroupPropsCopyright © 2022. All rights reserved.