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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An 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.- See Also:
-
getMinValue
The minimum answer value of the range option.- See Also:
-
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.
- See Also:
-
getScore
The score assigned to answer values within the range option.Minimum : 0
Maximum : 10
- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty.Builder builder()
-