Class: Aws::FraudDetector::Types::Rule
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::Rule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-frauddetector/types.rb
Overview
A rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detector_id ⇒ String
The detector for which the rule is associated.
-
#rule_id ⇒ String
The rule ID.
-
#rule_version ⇒ String
The rule version.
Instance Attribute Details
#detector_id ⇒ String
The detector for which the rule is associated.
4101 4102 4103 4104 4105 4106 4107 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4101 class Rule < Struct.new( :detector_id, :rule_id, :rule_version) SENSITIVE = [] include Aws::Structure end |