Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty : CfnEvaluationForm.IEvaluationFormMultiSelectQuestionPropertiesProperty
Syntax (vb)
Public Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty Implements CfnEvaluationForm.IEvaluationFormMultiSelectQuestionPropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var evaluationFormMultiSelectQuestionPropertiesProperty = new EvaluationFormMultiSelectQuestionPropertiesProperty {
Options = new [] { new EvaluationFormMultiSelectQuestionOptionProperty {
RefId = "refId",
Text = "text"
} },
// the properties below are optional
Automation = new EvaluationFormMultiSelectQuestionAutomationProperty {
Options = new [] { new EvaluationFormMultiSelectQuestionAutomationOptionProperty {
RuleCategory = new MultiSelectQuestionRuleCategoryAutomationProperty {
Category = "category",
Condition = "condition",
OptionRefIds = new [] { "optionRefIds" }
}
} },
// the properties below are optional
AnswerSource = new EvaluationFormQuestionAutomationAnswerSourceProperty {
SourceType = "sourceType"
},
DefaultOptionRefIds = new [] { "defaultOptionRefIds" }
},
DisplayAs = "displayAs"
};
Synopsis
Constructors
| EvaluationFormMultiSelectQuestionPropertiesProperty() |
Properties
| Automation | |
| DisplayAs | The display mode of the multi-select question. |
| Options | The list of options for the question. |
Constructors
EvaluationFormMultiSelectQuestionPropertiesProperty()
public EvaluationFormMultiSelectQuestionPropertiesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var evaluationFormMultiSelectQuestionPropertiesProperty = new EvaluationFormMultiSelectQuestionPropertiesProperty {
Options = new [] { new EvaluationFormMultiSelectQuestionOptionProperty {
RefId = "refId",
Text = "text"
} },
// the properties below are optional
Automation = new EvaluationFormMultiSelectQuestionAutomationProperty {
Options = new [] { new EvaluationFormMultiSelectQuestionAutomationOptionProperty {
RuleCategory = new MultiSelectQuestionRuleCategoryAutomationProperty {
Category = "category",
Condition = "condition",
OptionRefIds = new [] { "optionRefIds" }
}
} },
// the properties below are optional
AnswerSource = new EvaluationFormQuestionAutomationAnswerSourceProperty {
SourceType = "sourceType"
},
DefaultOptionRefIds = new [] { "defaultOptionRefIds" }
},
DisplayAs = "displayAs"
};
Properties
Automation
public object? Automation { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationProperty
DisplayAs
The display mode of the multi-select question.
public string? DisplayAs { get; set; }
Property Value
Remarks
Options
The list of options for the question.
public object Options { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionOptionProperty)[]