Interface CfnEvaluationForm.QuestionOptionPointsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.QuestionOptionPointsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.QuestionOptionPointsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Information about the points configuration for an answer option.
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.*;
QuestionOptionPointsConfigurationProperty questionOptionPointsConfigurationProperty = QuestionOptionPointsConfigurationProperty.builder()
.pointValue(123)
// the properties below are optional
.isBonus(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.QuestionOptionPointsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPointValue
The point value for scoring.- See Also:
-
getIsBonus
The flag to mark the option as a bonus option.Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.QuestionOptionPointsConfigurationProperty.Builder builder()
-