interface EvaluationFormMultiSelectQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormMultiSelectQuestionOptionProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormMultiSelectQuestionOptionProperty |
An option for a multi-select 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 evaluationFormMultiSelectQuestionOptionProperty: connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty = {
refId: 'refId',
text: 'text',
// the properties below are optional
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
pointsConfiguration: {
pointValue: 123,
// the properties below are optional
isBonus: false,
},
score: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ref | string | Reference identifier for this option. |
| text | string | Display text for this option. |
| automatic | boolean | IResolvable | |
| automatic | IResolvable | Automatic | Information about automatic fail configuration for an evaluation form. |
| points | IResolvable | Question | |
| score? | number | The score of an answer option. |
refId
Type:
string
Reference identifier for this option.
text
Type:
string
Display text for this option.
automaticFail?
Type:
boolean | IResolvable
(optional)
automaticFailConfiguration?
Type:
IResolvable | Automatic
(optional)
Information about automatic fail configuration for an evaluation form.
pointsConfiguration?
Type:
IResolvable | Question
(optional)
score?
Type:
number
(optional)
The score of an answer option.

.NET
Go
Java
Python
TypeScript