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 |
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 | 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