interface QuestionPointsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.QuestionPointsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_QuestionPointsConfigurationProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.QuestionPointsConfigurationProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.QuestionPointsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » QuestionPointsConfigurationProperty |
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 questionPointsConfigurationProperty: connect.CfnEvaluationForm.QuestionPointsConfigurationProperty = {
isBonus: false,
maxPointValue: 123,
minPointValue: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Whether the question is a bonus question. |
| max | number | The point value for scoring. |
| min | number | The point value for scoring. |
isBonus?
Type:
boolean | IResolvable
(optional)
Whether the question is a bonus question.
maxPointValue?
Type:
number
(optional)
The point value for scoring.
minPointValue?
Type:
number
(optional)
The point value for scoring.

.NET
Go
Java
Python
TypeScript