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 |
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 { 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 | The flag to mark the option as a bonus option. |
| point | number | The point value for scoring. |
isBonus?
Type:
boolean | IResolvable
(optional)
The flag to mark the option as a bonus option.
pointValue?
Type:
number
(optional)
The point value for scoring.

.NET
Go
Java
Python
TypeScript