interface EvaluationFormNumericQuestionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormNumericQuestionPropertiesProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty |
TypeScript | aws-cdk-lib » 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 { aws_connect as connect } from 'aws-cdk-lib';
const evaluationFormNumericQuestionPropertiesProperty: connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty = {
maxValue: 123,
minValue: 123,
// the properties below are optional
automation: {
answerSource: {
sourceType: 'sourceType',
},
propertyValue: {
label: 'label',
},
},
options: [{
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. |
| 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.

.NET
Go
Java
Python
TypeScript