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: