Class: Aws::DataZone::Types::AcceptChoice

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#edited_valueString

The edit of the prediction.

Returns:

  • (String)


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_choiceInteger

Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.

Returns:

  • (Integer)


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_targetString

Specifies the target (for example, a column name) where a prediction can be accepted.

Returns:

  • (String)


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