Class: Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Information about the automation configuration in single select questions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#automatic_failBoolean

The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.

Returns:

  • (Boolean)


6669
6670
6671
6672
6673
6674
6675
6676
# File 'lib/aws-sdk-connect/types.rb', line 6669

class EvaluationFormSingleSelectQuestionOption < Struct.new(
  :ref_id,
  :text,
  :score,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end

#ref_idString

The identifier of the answer option. An identifier must be unique within the question.

Returns:

  • (String)


6669
6670
6671
6672
6673
6674
6675
6676
# File 'lib/aws-sdk-connect/types.rb', line 6669

class EvaluationFormSingleSelectQuestionOption < Struct.new(
  :ref_id,
  :text,
  :score,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end

#scoreInteger

The score assigned to the answer option.

Returns:

  • (Integer)


6669
6670
6671
6672
6673
6674
6675
6676
# File 'lib/aws-sdk-connect/types.rb', line 6669

class EvaluationFormSingleSelectQuestionOption < Struct.new(
  :ref_id,
  :text,
  :score,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end

#textString

The title of the answer option.

Returns:

  • (String)


6669
6670
6671
6672
6673
6674
6675
6676
# File 'lib/aws-sdk-connect/types.rb', line 6669

class EvaluationFormSingleSelectQuestionOption < Struct.new(
  :ref_id,
  :text,
  :score,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end