Class: Aws::DataZone::Types::AcceptRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::AcceptRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Specifies the rule and the threshold under which a prediction can be accepted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule ⇒ String
Specifies whether you want to accept the top prediction for all targets or none.
-
#threshold ⇒ Float
The confidence score that specifies the condition at which a prediction can be accepted.
Instance Attribute Details
#rule ⇒ String
Specifies whether you want to accept the top prediction for all targets or none.
122 123 124 125 126 127 |
# File 'lib/aws-sdk-datazone/types.rb', line 122 class AcceptRule < Struct.new( :rule, :threshold) SENSITIVE = [] include Aws::Structure end |
#threshold ⇒ Float
The confidence score that specifies the condition at which a prediction can be accepted.
122 123 124 125 126 127 |
# File 'lib/aws-sdk-datazone/types.rb', line 122 class AcceptRule < Struct.new( :rule, :threshold) SENSITIVE = [] include Aws::Structure end |