@Stability(value=Stable)
public static interface CfnRuleGroup.RulesSourceListProperty
extends software.amazon.jsii.JsiiSerializable
For HTTPS traffic, domain filtering is SNI-based. It uses the server name indicator extension of the TLS handshake.
By default, Network Firewall domain list inspection only includes traffic coming from the VPC where you deploy the firewall. To inspect traffic from IP addresses outside of the deployment VPC, you set the HOME_NET rule variable to include the CIDR range of the deployment VPC plus the other CIDR ranges. For more information, see RuleGroup.RuleVariables in this guide and Stateful domain list rule groups in AWS Network Firewall in the Network Firewall Developer Guide
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.*;
RulesSourceListProperty rulesSourceListProperty = RulesSourceListProperty.builder()
.generatedRulesType("generatedRulesType")
.targets(List.of("targets"))
.targetTypes(List.of("targetTypes"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRuleGroup.RulesSourceListProperty.Builder
A builder for
CfnRuleGroup.RulesSourceListProperty |
static class |
CfnRuleGroup.RulesSourceListProperty.Jsii$Proxy
An implementation for
CfnRuleGroup.RulesSourceListProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRuleGroup.RulesSourceListProperty.Builder |
builder() |
String |
getGeneratedRulesType()
Whether you want to allow or deny access to the domains in your target list.
|
List<String> |
getTargets()
The domains that you want to inspect for in your traffic flows.
|
List<String> |
getTargetTypes()
The types of targets to inspect for.
|
@Stability(value=Stable) @NotNull String getGeneratedRulesType()
@Stability(value=Stable) @NotNull List<String> getTargets()
abc.example.com matches only the domain abc.example.com .. '. For example, .example.com matches example.com and matches all subdomains of example.com , such as abc.example.com and www.example.com .@Stability(value=Stable) @NotNull List<String> getTargetTypes()
Valid values are TLS_SNI and HTTP_HOST .
@Stability(value=Stable) static CfnRuleGroup.RulesSourceListProperty.Builder builder()
Copyright © 2022. All rights reserved.