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()
.answerSource(EvaluationFormQuestionAutomationAnswerSourceProperty.builder()
.sourceType("sourceType")
.build())
.propertyValue(NumericQuestionPropertyValueAutomationProperty.builder()
.label("label")
.build())
.build())
.options(List.of(EvaluationFormNumericQuestionOptionProperty.builder()
.maxValue(123)
.minValue(123)
// the properties below are optional
.automaticFail(false)
.automaticFailConfiguration(AutomaticFailConfigurationProperty.builder()
.targetSection("targetSection")
.build())
.score(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxValue
The maximum answer value.- See Also:
-
getMinValue
The minimum answer value.- See Also:
-
getAutomation
The automation properties of the numeric question.Returns union: either
IResolvableorCfnEvaluationForm.EvaluationFormNumericQuestionAutomationProperty- See Also:
-
getOptions
The scoring options of the numeric question.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty>- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty.Builder builder()
-