interface EvaluationFormQuestionScoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.EvaluationFormQuestionScoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_EvaluationFormQuestionScoringConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.EvaluationFormQuestionScoringConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.EvaluationFormQuestionScoringConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnEvaluationFormPropsMixin » 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/cfn-property-mixins';
const evaluationFormQuestionScoringConfigurationProperty: connect.CfnEvaluationFormPropsMixin.EvaluationFormQuestionScoringConfigurationProperty = {
isExcludedFromScoring: false,
pointsConfiguration: {
isBonus: false,
maxPointValue: 123,
minPointValue: 123,
},
scoreThresholds: [{
maxScorePercentage: 123,
minScorePercentage: 123,
performanceCategory: 'performanceCategory',
}],
};
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