Show / Hide Table of Contents

Class CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty

Inheritance
object
CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty
Implements
CfnEvaluationForm.IEvaluationFormMultiSelectQuestionPropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-automation

Type union: either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionAutomationProperty

DisplayAs

The display mode of the multi-select question.

public string? DisplayAs { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-displayas

Options

The list of options for the question.

public object Options { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html#cfn-connect-evaluationform-evaluationformmultiselectquestionproperties-options

Type union: either IResolvable or (either IResolvable or CfnEvaluationForm.IEvaluationFormMultiSelectQuestionOptionProperty)[]

Implements

CfnEvaluationForm.IEvaluationFormMultiSelectQuestionPropertiesProperty
Back to top Generated by DocFX