Class: Aws::DataZone::Types::AcceptChoice
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::AcceptChoice
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted.
Constant Summary collapse
- SENSITIVE =
[:edited_value]
Instance Attribute Summary collapse
-
#edited_value ⇒ String
The edit of the prediction.
-
#prediction_choice ⇒ Integer
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
-
#prediction_target ⇒ String
Specifies the target (for example, a column name) where a prediction can be accepted.
Instance Attribute Details
#edited_value ⇒ String
The edit of the prediction.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 33 class AcceptChoice < Struct.new( :edited_value, :prediction_choice, :prediction_target) SENSITIVE = [:edited_value] include Aws::Structure end |
#prediction_choice ⇒ Integer
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 33 class AcceptChoice < Struct.new( :edited_value, :prediction_choice, :prediction_target) SENSITIVE = [:edited_value] include Aws::Structure end |
#prediction_target ⇒ String
Specifies the target (for example, a column name) where a prediction can be accepted.
33 34 35 36 37 38 39 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 33 class AcceptChoice < Struct.new( :edited_value, :prediction_choice, :prediction_target) SENSITIVE = [:edited_value] include Aws::Structure end |