Class: Aws::SecurityHub::Types::WafExcludedRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::WafExcludedRule
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass WafExcludedRule data as a hash:
{
rule_id: "NonEmptyString",
}
Details about a rule to exclude from a rule group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_id ⇒ String
The unique identifier for the rule to exclude from the rule group.
Instance Attribute Details
#rule_id ⇒ String
The unique identifier for the rule to exclude from the rule group.
26799 26800 26801 26802 26803 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26799 class WafExcludedRule < Struct.new( :rule_id) SENSITIVE = [] include Aws::Structure end |