@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-15T10:24:45.574Z") @Stability(value=Experimental) public interface FirewallRuleGroupAssociationOptions 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.alpha.*;
import software.amazon.awscdk.services.ec2.*;
Vpc vpc;
FirewallRuleGroupAssociationOptions firewallRuleGroupAssociationOptions = FirewallRuleGroupAssociationOptions.builder()
.priority(123)
.vpc(vpc)
// the properties below are optional
.mutationProtection(false)
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
FirewallRuleGroupAssociationOptions.Builder
A builder for
FirewallRuleGroupAssociationOptions |
static class |
FirewallRuleGroupAssociationOptions.Jsii$Proxy
An implementation for
FirewallRuleGroupAssociationOptions |
| Modifier and Type | Method and Description |
|---|---|
static FirewallRuleGroupAssociationOptions.Builder |
builder() |
default Boolean |
getMutationProtection()
(experimental) If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
|
default String |
getName()
(experimental) The name of the association.
|
Number |
getPriority()
(experimental) The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC.
|
IVpc |
getVpc()
(experimental) The VPC that to associate with the rule group.
|
@Stability(value=Experimental) @Nullable default Boolean getMutationProtection()
Default: true
@Stability(value=Experimental) @Nullable default String getName()
Default: - a CloudFormation generated name
@Stability(value=Experimental) @NotNull Number getPriority()
DNS Firewall filters VPC traffic starting from rule group with the lowest numeric priority setting.
This value must be greater than 100 and less than 9,000
@Stability(value=Experimental) @NotNull IVpc getVpc()
@Stability(value=Experimental) static FirewallRuleGroupAssociationOptions.Builder builder()
Copyright © 2021. All rights reserved.