Class: Aws::SecurityHub::Types::AwsWafRegionalRateBasedRuleMatchPredicate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsWafRegionalRateBasedRuleMatchPredicate
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Details for a match predicate. A predicate might look for characteristics such as specific IP addresses, geographic locations, or sizes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_id ⇒ String
The unique identifier for the predicate.
-
#negated ⇒ Boolean
If set to ‘true`, then the rule actions are performed on requests that match the predicate settings.
-
#type ⇒ String
The type of predicate.
Instance Attribute Details
#data_id ⇒ String
The unique identifier for the predicate.
21418 21419 21420 21421 21422 21423 21424 |
# File 'lib/aws-sdk-securityhub/types.rb', line 21418 class AwsWafRegionalRateBasedRuleMatchPredicate < Struct.new( :data_id, :negated, :type) SENSITIVE = [] include Aws::Structure end |
#negated ⇒ Boolean
If set to ‘true`, then the rule actions are performed on requests that match the predicate settings.
If set to ‘false`, then the rule actions are performed on all requests except those that match the predicate settings.
21418 21419 21420 21421 21422 21423 21424 |
# File 'lib/aws-sdk-securityhub/types.rb', line 21418 class AwsWafRegionalRateBasedRuleMatchPredicate < Struct.new( :data_id, :negated, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of predicate. Valid values are as follows:
-
‘ByteMatch`
-
‘GeoMatch`
-
‘IPMatch`
-
‘RegexMatch`
-
‘SizeConstraint`
-
‘SqlInjectionMatch`
-
‘XssMatch`
21418 21419 21420 21421 21422 21423 21424 |
# File 'lib/aws-sdk-securityhub/types.rb', line 21418 class AwsWafRegionalRateBasedRuleMatchPredicate < Struct.new( :data_id, :negated, :type) SENSITIVE = [] include Aws::Structure end |