interface RuleVariablesProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.NetworkFirewall.CfnRuleGroup.RuleVariablesProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkfirewall#CfnRuleGroup_RuleVariablesProperty |
![]() | software.amazon.awscdk.services.networkfirewall.CfnRuleGroup.RuleVariablesProperty |
![]() | aws_cdk.aws_networkfirewall.CfnRuleGroup.RuleVariablesProperty |
![]() | aws-cdk-lib » aws_networkfirewall » CfnRuleGroup » RuleVariablesProperty |
Settings that are available for use in the rules in the RuleGroup
where this is defined.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkfirewall as networkfirewall } from 'aws-cdk-lib';
const ruleVariablesProperty: networkfirewall.CfnRuleGroup.RuleVariablesProperty = {
ipSets: {
ipSetsKey: {
definition: ['definition'],
},
},
portSets: {
portSetsKey: {
definition: ['definition'],
},
},
};
Properties
Name | Type | Description |
---|---|---|
ip | IResolvable | { [string]: IResolvable | IPSet } | A list of IP addresses and address ranges, in CIDR notation. |
port | IResolvable | { [string]: IResolvable | Port } | A list of port ranges. |
ipSets?
Type:
IResolvable
| { [string]:
IResolvable
|
IPSet
}
(optional)
A list of IP addresses and address ranges, in CIDR notation.
portSets?
Type:
IResolvable
| { [string]:
IResolvable
|
Port
}
(optional)
A list of port ranges.