Interface CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnEvaluationForm

@Stability(Stable) public static interface CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Information about properties for a numeric question in an evaluation form.

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.*;
 EvaluationFormNumericQuestionPropertiesProperty evaluationFormNumericQuestionPropertiesProperty = EvaluationFormNumericQuestionPropertiesProperty.builder()
         .maxValue(123)
         .minValue(123)
         // the properties below are optional
         .automation(EvaluationFormNumericQuestionAutomationProperty.builder()
                 .propertyValue(NumericQuestionPropertyValueAutomationProperty.builder()
                         .label("label")
                         .build())
                 .build())
         .options(List.of(EvaluationFormNumericQuestionOptionProperty.builder()
                 .maxValue(123)
                 .minValue(123)
                 // the properties below are optional
                 .automaticFail(false)
                 .score(123)
                 .build()))
         .build();
 

See Also: