Class: Aws::DataZone::Types::RejectRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::RejectRule
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Specifies the rule and the threshold under which a prediction can be rejected.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule ⇒ String
Specifies whether you want to reject the top prediction for all targets or none.
-
#threshold ⇒ Float
The confidence score that specifies the condition at which a prediction can be rejected.
Instance Attribute Details
#rule ⇒ String
Specifies whether you want to reject the top prediction for all targets or none.
12313 12314 12315 12316 12317 12318 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12313 class RejectRule < Struct.new( :rule, :threshold) SENSITIVE = [] include Aws::Structure end |
#threshold ⇒ Float
The confidence score that specifies the condition at which a prediction can be rejected.
12313 12314 12315 12316 12317 12318 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12313 class RejectRule < Struct.new( :rule, :threshold) SENSITIVE = [] include Aws::Structure end |