Class CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionAutomationProperty
Automation configuration for multi-select questions.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionAutomationProperty : CfnEvaluationFormPropsMixin.IEvaluationFormMultiSelectQuestionAutomationProperty
Syntax (vb)
Public Class CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionAutomationProperty Implements CfnEvaluationFormPropsMixin.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.Mixins.Preview.AWS.Connect.Mixins;
var evaluationFormMultiSelectQuestionAutomationProperty = new EvaluationFormMultiSelectQuestionAutomationProperty {
AnswerSource = new EvaluationFormQuestionAutomationAnswerSourceProperty {
SourceType = "sourceType"
},
DefaultOptionRefIds = new [] { "defaultOptionRefIds" },
Options = new [] { new EvaluationFormMultiSelectQuestionAutomationOptionProperty {
RuleCategory = new MultiSelectQuestionRuleCategoryAutomationProperty {
Category = "category",
Condition = "condition",
OptionRefIds = new [] { "optionRefIds" }
}
} }
};
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.Mixins.Preview.AWS.Connect.Mixins;
var evaluationFormMultiSelectQuestionAutomationProperty = new EvaluationFormMultiSelectQuestionAutomationProperty {
AnswerSource = new EvaluationFormQuestionAutomationAnswerSourceProperty {
SourceType = "sourceType"
},
DefaultOptionRefIds = new [] { "defaultOptionRefIds" },
Options = new [] { new EvaluationFormMultiSelectQuestionAutomationOptionProperty {
RuleCategory = new MultiSelectQuestionRuleCategoryAutomationProperty {
Category = "category",
Condition = "condition",
OptionRefIds = new [] { "optionRefIds" }
}
} }
};
Properties
AnswerSource
A question automation answer.
public object? AnswerSource { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnEvaluationFormPropsMixin.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 CfnEvaluationFormPropsMixin.IEvaluationFormMultiSelectQuestionAutomationOptionProperty)[]