interface CfnEvaluationFormMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormMixinProps |
Properties for CfnEvaluationFormPropsMixin.
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 evaluationFormSectionProperty_: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormSectionProperty;
const cfnEvaluationFormMixinProps: connect_mixins.CfnEvaluationFormMixinProps = {
autoEvaluationConfiguration: {
enabled: false,
},
description: 'description',
instanceArn: 'instanceArn',
items: [{
section: {
instructions: 'instructions',
items: [{
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: evaluationFormSectionProperty_,
}],
refId: 'refId',
title: 'title',
weight: 123,
},
}],
languageConfiguration: {
formLanguage: 'formLanguage',
},
scoringStrategy: {
mode: 'mode',
status: 'status',
},
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
targetConfiguration: {
contactInteractionType: 'contactInteractionType',
},
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | IResolvable | Auto | The automatic evaluation configuration of an evaluation form. |
| description? | string | The description of the evaluation form. |
| instance | string | The identifier of the Amazon Connect instance. |
| items? | IResolvable | (IResolvable | Evaluation)[] | Items that are part of the evaluation form. |
| language | IResolvable | Evaluation | Configuration for language settings of this evaluation form. |
| scoring | IResolvable | Scoring | A scoring strategy of the evaluation form. |
| status? | string | The status of the evaluation form. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
| target | IResolvable | Evaluation | Configuration that specifies the target for this evaluation form. |
| title? | string | A title of the evaluation form. |
autoEvaluationConfiguration?
Type:
IResolvable | Auto
(optional)
The automatic evaluation configuration of an evaluation form.
description?
Type:
string
(optional)
The description of the evaluation form.
Length Constraints : Minimum length of 0. Maximum length of 1024.
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
items?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
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.
Minimum size : 1
Maximum size : 100
languageConfiguration?
Type:
IResolvable | Evaluation
(optional)
Configuration for language settings of this evaluation form.
scoringStrategy?
Type:
IResolvable | Scoring
(optional)
A scoring strategy of the evaluation form.
status?
Type:
string
(optional, default: "DRAFT")
The status of the evaluation form.
Allowed values : DRAFT | ACTIVE
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.
targetConfiguration?
Type:
IResolvable | Evaluation
(optional)
Configuration that specifies the target for this evaluation form.
title?
Type:
string
(optional)
A title of the evaluation form.

.NET
Go
Java
Python
TypeScript