Class CfnEvaluationForm.EvaluationFormSingleSelectQuestionOptionProperty
Information about the automation configuration in single select questions.
Inheritance
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EvaluationFormSingleSelectQuestionOptionProperty : Object, CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
Syntax (vb)
Public Class EvaluationFormSingleSelectQuestionOptionProperty
Inherits Object
Implements CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var evaluationFormSingleSelectQuestionOptionProperty = new EvaluationFormSingleSelectQuestionOptionProperty {
RefId = "refId",
Text = "text",
// the properties below are optional
AutomaticFail = false,
Score = 123
};
Synopsis
Constructors
Evaluation |
Properties
Automatic |
The flag to mark the option as automatic fail. |
Ref |
The identifier of the answer option. An identifier must be unique within the question. |
Score | The score assigned to the answer option. |
Text | The title of the answer option. |
Constructors
EvaluationFormSingleSelectQuestionOptionProperty()
public EvaluationFormSingleSelectQuestionOptionProperty()
Properties
AutomaticFail
The flag to mark the option as automatic fail.
public object AutomaticFail { get; set; }
Property Value
System.
Remarks
If an automatic fail answer is provided, the overall evaluation gets a score of 0.
RefId
The identifier of the answer option. An identifier must be unique within the question.
public string RefId { get; set; }
Property Value
System.
Remarks
Length Constraints : Minimum length of 1. Maximum length of 40.
Score
The score assigned to the answer option.
public Nullable<double> Score { get; set; }
Property Value
System.
Remarks
Text
The title of the answer option.
public string Text { get; set; }
Property Value
System.
Remarks
Length Constraints : Minimum length of 1. Maximum length of 128.