interface QuestionOptionPointsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_QuestionOptionPointsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnEvaluationFormPropsMixin » 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/cfn-property-mixins';
const questionOptionPointsConfigurationProperty: connect.CfnEvaluationFormPropsMixin.QuestionOptionPointsConfigurationProperty = {
isBonus: false,
pointValue: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Whether this option is a bonus. |
| point | 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.
pointValue?
Type:
number
(optional)
The point value for scoring.

.NET
Go
Java
Python
TypeScript