interface EvaluationFormQuestionScoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormQuestionScoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormQuestionScoringConfigurationProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormQuestionScoringConfigurationProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormQuestionScoringConfigurationProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormQuestionScoringConfigurationProperty |
Scoring configuration for a question in an evaluation form.
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 evaluationFormQuestionScoringConfigurationProperty: connect.CfnEvaluationForm.EvaluationFormQuestionScoringConfigurationProperty = {
isExcludedFromScoring: false,
pointsConfiguration: {
isBonus: false,
maxPointValue: 123,
minPointValue: 123,
},
scoreThresholds: [{
performanceCategory: 'performanceCategory',
// the properties below are optional
maxScorePercentage: 123,
minScorePercentage: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | The flag to exclude the question from scoring. |
| points | IResolvable | Question | Information about the points configuration for a question. |
| score | IResolvable | (IResolvable | Evaluation)[] | The score thresholds for performance categories. |
isExcludedFromScoring?
Type:
boolean | IResolvable
(optional)
The flag to exclude the question from scoring.
pointsConfiguration?
Type:
IResolvable | Question
(optional)
Information about the points configuration for a question.
scoreThresholds?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
The score thresholds for performance categories.

.NET
Go
Java
Python
TypeScript