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 |
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 | Whether the question is excluded from scoring. |
| points | IResolvable | Question | |
| score | IResolvable | (IResolvable | Evaluation)[] | The score thresholds for the question. |
isExcludedFromScoring?
Type:
boolean | IResolvable
(optional)
Whether the question is excluded from scoring.
pointsConfiguration?
Type:
IResolvable | Question
(optional)
scoreThresholds?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
The score thresholds for the question.

.NET
Go
Java
Python
TypeScript