interface EvaluationFormNumericQuestionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormNumericQuestionPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const evaluationFormNumericQuestionPropertiesProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionPropertiesProperty = {
automation: {
answerSource: {
sourceType: 'sourceType',
},
propertyValue: {
label: 'label',
},
},
maxValue: 123,
minValue: 123,
options: [{
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
maxValue: 123,
minValue: 123,
score: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| automation? | IResolvable | Evaluation | The automation properties of the numeric question. |
| max | number | The maximum answer value. |
| min | number | The minimum answer value. |
| options? | IResolvable | (IResolvable | Evaluation)[] | The scoring options of the numeric question. |
automation?
Type:
IResolvable | Evaluation
(optional)
The automation properties of the numeric question.
maxValue?
Type:
number
(optional)
The maximum answer value.
minValue?
Type:
number
(optional)
The minimum answer value.
options?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
The scoring options of the numeric question.

.NET
Go
Java
Python
TypeScript