Interface CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationFormPropsMixin
@Stability(Stable)
public static interface CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty
extends software.amazon.jsii.JsiiSerializable
An option for a multi-select 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.cfnpropertymixins.services.connect.*;
EvaluationFormMultiSelectQuestionOptionProperty evaluationFormMultiSelectQuestionOptionProperty = EvaluationFormMultiSelectQuestionOptionProperty.builder()
.automaticFail(false)
.automaticFailConfiguration(AutomaticFailConfigurationProperty.builder()
.targetSection("targetSection")
.build())
.pointsConfiguration(QuestionOptionPointsConfigurationProperty.builder()
.isBonus(false)
.pointValue(123)
.build())
.refId("refId")
.score(123)
.text("text")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe flag to mark the option as automatic fail.default ObjectInformation about automatic fail configuration for an evaluation form.default ObjectInformation about the points configuration for an answer option.default StringgetRefId()Reference identifier for this option.default NumbergetScore()The score of an answer option.default StringgetText()Display text for this option.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.
Returns union: either
BooleanorIResolvable- See Also:
-
getAutomaticFailConfiguration
Information about automatic fail configuration for an evaluation form.Returns union: either
IResolvableorCfnEvaluationFormPropsMixin.AutomaticFailConfigurationProperty- See Also:
-
getPointsConfiguration
Information about the points configuration for an answer option.Returns union: either
IResolvableorCfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationProperty- See Also:
-
getRefId
Reference identifier for this option.- See Also:
-
getScore
The score of an answer option.- See Also:
-
getText
Display text for this option.- See Also:
-
builder
@Stability(Stable) static CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty.Builder builder()
-