interface EvaluationFormSingleSelectQuestionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormSingleSelectQuestionPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormSingleSelectQuestionPropertiesProperty |
Information about the options 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 evaluationFormSingleSelectQuestionPropertiesProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionPropertiesProperty = {
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',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| automation? | IResolvable | Evaluation | The display mode of the single select question. |
| display | string | The display mode of the single select question. |
| options? | IResolvable | (IResolvable | Evaluation)[] | The answer options of the single select question. |
automation?
Type:
IResolvable | Evaluation
(optional)
The display mode of the single select question.
displayAs?
Type:
string
(optional)
The display mode of the single select question.
Allowed values : DROPDOWN | RADIO
options?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
The answer options of the single select question.
Minimum : 2
Maximum : 256

.NET
Go
Java
Python
TypeScript