Interface CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty.Jsii$Proxy
- Enclosing class:
- CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty
extends software.amazon.jsii.JsiiSerializable
Information about the option range used for scoring in numeric questions.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.connect.*;
EvaluationFormNumericQuestionOptionProperty evaluationFormNumericQuestionOptionProperty = EvaluationFormNumericQuestionOptionProperty.builder()
.maxValue(123)
.minValue(123)
// the properties below are optional
.automaticFail(false)
.score(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxValue
The maximum answer value of the range option. -
getMinValue
The minimum answer value of the range option. -
getAutomaticFail
The flag to mark the option as automatic fail.If an automatic fail answer is provided, the overall evaluation gets a score of 0.
-
getScore
The score assigned to answer values within the range option.Minimum : 0
Maximum : 10
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty.Builder builder()
-