Class: Aws::SecurityHub::Types::AwsWafRateBasedRuleMatchPredicate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsWafRateBasedRuleMatchPredicate
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsWafRateBasedRuleMatchPredicate data as a hash:
{
data_id: "NonEmptyString",
negated: false,
type: "NonEmptyString",
}
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.
24648 24649 24650 24651 24652 24653 24654 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24648 class AwsWafRateBasedRuleMatchPredicate < 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.
24648 24649 24650 24651 24652 24653 24654 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24648 class AwsWafRateBasedRuleMatchPredicate < Struct.new( :data_id, :negated, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of predicate.
24648 24649 24650 24651 24652 24653 24654 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24648 class AwsWafRateBasedRuleMatchPredicate < Struct.new( :data_id, :negated, :type) SENSITIVE = [] include Aws::Structure end |