interface EvaluationFormNumericQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormNumericQuestionOptionProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormNumericQuestionOptionProperty |
Information about the option range used for scoring in numeric questions.
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 evaluationFormNumericQuestionOptionProperty: connect.CfnEvaluationForm.EvaluationFormNumericQuestionOptionProperty = {
maxValue: 123,
minValue: 123,
// the properties below are optional
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
score: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum answer value of the range option. |
| min | number | The minimum answer value of the range option. |
| automatic | boolean | IResolvable | The flag to mark the option as automatic fail. |
| automatic | IResolvable | Automatic | |
| score? | number | The score assigned to answer values within the range option. |
maxValue
Type:
number
The maximum answer value of the range option.
minValue
Type:
number
The minimum answer value of the range option.
automaticFail?
Type:
boolean | IResolvable
(optional)
The flag to mark the option as automatic fail.
If an automatic fail answer is provided, the overall evaluation gets a score of 0.
automaticFailConfiguration?
Type:
IResolvable | Automatic
(optional)
score?
Type:
number
(optional)
The score assigned to answer values within the range option.
Minimum : 0
Maximum : 10

.NET
Go
Java
Python
TypeScript