interface PolicyVariablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnFirewallPolicyPropsMixin.PolicyVariablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnFirewallPolicyPropsMixin_PolicyVariablesProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnFirewallPolicyPropsMixin.PolicyVariablesProperty |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnFirewallPolicyPropsMixin.PolicyVariablesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » CfnFirewallPolicyPropsMixin » PolicyVariablesProperty |
Contains variables that you can use to override default Suricata settings in your firewall policy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkfirewall_mixins } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const policyVariablesProperty: networkfirewall_mixins.CfnFirewallPolicyPropsMixin.PolicyVariablesProperty = {
ruleVariables: {
ruleVariablesKey: {
definition: ['definition'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | IResolvable | { [string]: IResolvable | IPSet } | The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata HOME_NET variable. |
ruleVariables?
Type:
IResolvable | { [string]: IResolvable | IPSet }
(optional)
The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata HOME_NET variable.
If your firewall uses an inspection VPC, you might want to override the HOME_NET variable with the CIDRs of your home networks. If you don't override HOME_NET with your own CIDRs, Network Firewall by default uses the CIDR of your inspection VPC.

.NET
Go
Java
Python
TypeScript