interface EvaluationFormSingleSelectQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormSingleSelectQuestionOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionOptionProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormSingleSelectQuestionOptionProperty |
Information about the automation configuration in single select questions.
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 evaluationFormSingleSelectQuestionOptionProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionOptionProperty = {
automaticFail: false,
automaticFailConfiguration: {
targetSection: 'targetSection',
},
refId: 'refId',
score: 123,
text: 'text',
};
Properties
| Name | Type | Description |
|---|---|---|
| automatic | boolean | IResolvable | The flag to mark the option as automatic fail. |
| automatic | IResolvable | Automatic | Whether automatic fail is configured on a single select question. |
| ref | string | The identifier of the answer option. An identifier must be unique within the question. |
| score? | number | The score assigned to the answer option. |
| text? | string | The title of the answer option. |
automaticFail?
Type:
boolean | IResolvable
(optional)
The flag to mark the option as automatic fail.
If an automatic fail answer is provided, the overall evaluation gets a score of 0.
automaticFailConfiguration?
Type:
IResolvable | Automatic
(optional)
Whether automatic fail is configured on a single select question.
refId?
Type:
string
(optional)
The identifier of the answer option. An identifier must be unique within the question.
Length Constraints : Minimum length of 1. Maximum length of 40.
score?
Type:
number
(optional)
The score assigned to the answer option.
Minimum : 0
Maximum : 10
text?
Type:
string
(optional)
The title of the answer option.
Length Constraints : Minimum length of 1. Maximum length of 128.

.NET
Go
Java
Python
TypeScript