interface EvaluationFormNumericQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormNumericQuestionOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const evaluationFormNumericQuestionOptionProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty = {
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
maxValue: 123,
minValue: 123,
score: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| automatic | boolean | IResolvable | The flag to mark the option as automatic fail. |
| automatic | IResolvable | Automatic | A configuration for automatic fail. |
| max | number | The maximum answer value of the range option. |
| min | number | The minimum answer value of the range option. |
| score? | number | The score assigned to answer values within 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)
A configuration for automatic fail.
maxValue?
Type:
number
(optional)
The maximum answer value of the range option.
minValue?
Type:
number
(optional)
The minimum answer value of the range option.
score?
Type:
number
(optional)
The score assigned to answer values within the range option.
Minimum : 0
Maximum : 10

.NET
Go
Java
Python
TypeScript