interface RuleOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnRuleGroupPropsMixin.RuleOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnRuleGroupPropsMixin_RuleOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnRuleGroupPropsMixin.RuleOptionProperty |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnRuleGroupPropsMixin.RuleOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » CfnRuleGroupPropsMixin » RuleOptionProperty |
Additional settings for a stateful rule.
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 ruleOptionProperty: networkfirewall_mixins.CfnRuleGroupPropsMixin.RuleOptionProperty = {
keyword: 'keyword',
settings: ['settings'],
};
Properties
| Name | Type | Description |
|---|---|---|
| keyword? | string | The Suricata rule option keywords. |
| settings? | string[] | The Suricata rule option settings. |
keyword?
Type:
string
(optional)
The Suricata rule option keywords.
For Network Firewall , the keyword signature ID (sid) is required in the format sid:112233 . The sid must be unique within the rule group. For information about Suricata rule option keywords, see Rule options .
settings?
Type:
string[]
(optional)
The Suricata rule option settings.
Settings have zero or more values, and the number of possible settings and required settings depends on the keyword. The format for Settings is number . For information about Suricata rule option settings, see Rule options .

.NET
Go
Java
Python
TypeScript