interface EvaluationFormNumericQuestionPropertiesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
TypeScript | @aws-cdk/aws-connect » CfnEvaluationForm » EvaluationFormNumericQuestionPropertiesProperty |
Information about properties for a numeric 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 * as connect from '@aws-cdk/aws-connect';
const evaluationFormNumericQuestionPropertiesProperty: connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty = {
maxValue: 123,
minValue: 123,
// the properties below are optional
automation: {
propertyValue: {
label: 'label',
},
},
options: [{
maxValue: 123,
minValue: 123,
// the properties below are optional
automaticFail: false,
score: 123,
}],
};
Properties
Name | Type | Description |
---|---|---|
max | number | The maximum answer value. |
min | number | The minimum answer value. |
automation? | IResolvable | Evaluation | The automation properties of the numeric question. |
options? | IResolvable | IResolvable | Evaluation [] | The scoring options of the numeric question. |
maxValue
Type:
number
The maximum answer value.
minValue
Type:
number
The minimum answer value.
automation?
Type:
IResolvable
|
Evaluation
(optional)
The automation properties of the numeric question.
options?
Type:
IResolvable
|
IResolvable
|
Evaluation
[]
(optional)
The scoring options of the numeric question.