interface RuleVariablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnRuleGroupPropsMixin.RuleVariablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnRuleGroupPropsMixin_RuleVariablesProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnRuleGroupPropsMixin.RuleVariablesProperty |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnRuleGroupPropsMixin.RuleVariablesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » CfnRuleGroupPropsMixin » RuleVariablesProperty |
Settings that are available for use in the rules in the rule group 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 { mixins as networkfirewall_mixins } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const ruleVariablesProperty: networkfirewall_mixins.CfnRuleGroupPropsMixin.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.

.NET
Go
Java
Python
TypeScript