interface EvaluationFormItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormItemProperty |
Items that are part of the evaluation form.
The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
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';
declare const evaluationFormItemProperty_: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemProperty;
const evaluationFormItemProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemProperty = {
question: {
enablement: {
action: 'action',
condition: {
operands: [{
expression: {
comparator: 'comparator',
source: {
refId: 'refId',
type: 'type',
},
values: [{
refId: 'refId',
type: 'type',
}],
},
}],
operator: 'operator',
},
defaultAction: 'defaultAction',
},
instructions: 'instructions',
notApplicableEnabled: false,
questionType: 'questionType',
questionTypeProperties: {
multiSelect: {
automation: {
answerSource: {
sourceType: 'sourceType',
},
defaultOptionRefIds: ['defaultOptionRefIds'],
options: [{
ruleCategory: {
category: 'category',
condition: 'condition',
optionRefIds: ['optionRefIds'],
},
}],
},
displayAs: 'displayAs',
options: [{
refId: 'refId',
text: 'text',
}],
},
numeric: {
automation: {
answerSource: {
sourceType: 'sourceType',
},
propertyValue: {
label: 'label',
},
},
maxValue: 123,
minValue: 123,
options: [{
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
maxValue: 123,
minValue: 123,
score: 123,
}],
},
singleSelect: {
automation: {
answerSource: {
sourceType: 'sourceType',
},
defaultOptionRefId: 'defaultOptionRefId',
options: [{
ruleCategory: {
category: 'category',
condition: 'condition',
optionRefId: 'optionRefId',
},
}],
},
displayAs: 'displayAs',
options: [{
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
refId: 'refId',
score: 123,
text: 'text',
}],
},
text: {
automation: {
answerSource: {
sourceType: 'sourceType',
},
},
},
},
refId: 'refId',
title: 'title',
weight: 123,
},
section: {
instructions: 'instructions',
items: [evaluationFormItemProperty_],
refId: 'refId',
title: 'title',
weight: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| question? | IResolvable | Evaluation | The information of the question. |
| section? | IResolvable | Evaluation | The information of the section. |
question?
Type:
IResolvable | Evaluation
(optional)
The information of the question.
section?
Type:
IResolvable | Evaluation
(optional)
The information of the section.

.NET
Go
Java
Python
TypeScript