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 ObjectReturns union: eitherBooleanorIResolvabledefault ObjectInformation about automatic fail configuration for an evaluation form.default ObjectReturns union: eitherIResolvableorCfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationPropertydefault 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
Returns union: eitherBooleanorIResolvable- See Also:
-
getAutomaticFailConfiguration
Information about automatic fail configuration for an evaluation form.Returns union: either
IResolvableorCfnEvaluationFormPropsMixin.AutomaticFailConfigurationProperty- See Also:
-
getPointsConfiguration
Returns union: eitherIResolvableorCfnEvaluationFormPropsMixin.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()
-