interface QuestionOptionPointsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.QuestionOptionPointsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_QuestionOptionPointsConfigurationProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.QuestionOptionPointsConfigurationProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.QuestionOptionPointsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » QuestionOptionPointsConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const questionOptionPointsConfigurationProperty: connect.CfnEvaluationForm.QuestionOptionPointsConfigurationProperty = {
pointValue: 123,
// the properties below are optional
isBonus: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| point | number | The point value for scoring. |
| is | boolean | IResolvable | Whether this option is a bonus. |
pointValue
Type:
number
The point value for scoring.
isBonus?
Type:
boolean | IResolvable
(optional)
Whether this option is a bonus.
Note: Bonus options are not supported for multi-select questions. This property should only be set to true for single-select and numeric question options.

.NET
Go
Java
Python
TypeScript