Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty
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() |
Properties
| AnswerSource | A question automation answer. |
| DefaultOptionRefIds | The list of reference id. |
| Options | The answer options for the automation. |
Constructors
EvaluationFormMultiSelectQuestionAutomationProperty()
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
The list of reference id.
public string[]? DefaultOptionRefIds { get; set; }
Property Value
string[]
Remarks
Options
The answer options for the automation.
public object Options { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationOptionProperty)[]