Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty
Automation configuration for multi-select questions.
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty : CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationProperty
Syntax (vb)
Public Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty Implements CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationProperty
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 evaluationFormMultiSelectQuestionAutomationProperty = 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" }
};
Synopsis
Constructors
| EvaluationFormMultiSelectQuestionAutomationProperty() | Automation configuration for multi-select questions. |
Properties
| AnswerSource | A question automation answer. |
| DefaultOptionRefIds | Reference IDs of default options. |
| Options | Automation options for the multi-select question. |
Constructors
EvaluationFormMultiSelectQuestionAutomationProperty()
Automation configuration for multi-select questions.
public EvaluationFormMultiSelectQuestionAutomationProperty()
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 evaluationFormMultiSelectQuestionAutomationProperty = 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" }
};
Properties
AnswerSource
A question automation answer.
public object? AnswerSource { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnEvaluationForm.IEvaluationFormQuestionAutomationAnswerSourceProperty
DefaultOptionRefIds
Reference IDs of default options.
public string[]? DefaultOptionRefIds { get; set; }
Property Value
string[]
Remarks
Options
Automation options for the multi-select question.
public object Options { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationOptionProperty)[]