Show / Hide Table of Contents

Class CfnEvaluationForm.EvaluationFormSingleSelectQuestionOptionProperty

Information about the automation configuration in single select questions.

Inheritance
object
CfnEvaluationForm.EvaluationFormSingleSelectQuestionOptionProperty
Implements
CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
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.EvaluationFormSingleSelectQuestionOptionProperty : CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
Syntax (vb)
Public Class CfnEvaluationForm.EvaluationFormSingleSelectQuestionOptionProperty Implements CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionoption.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 evaluationFormSingleSelectQuestionOptionProperty = new EvaluationFormSingleSelectQuestionOptionProperty {
                 RefId = "refId",
                 Text = "text",

                 // the properties below are optional
                 AutomaticFail = false,
                 Score = 123
             };

Synopsis

Constructors

EvaluationFormSingleSelectQuestionOptionProperty()

Information about the automation configuration in single select questions.

Properties

AutomaticFail

The flag to mark the option as automatic fail.

RefId

The identifier of the answer option. An identifier must be unique within the question.

Score

The score assigned to the answer option.

Text

The title of the answer option.

Constructors

EvaluationFormSingleSelectQuestionOptionProperty()

Information about the automation configuration in single select questions.

public EvaluationFormSingleSelectQuestionOptionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionoption.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 evaluationFormSingleSelectQuestionOptionProperty = new EvaluationFormSingleSelectQuestionOptionProperty {
                 RefId = "refId",
                 Text = "text",

                 // the properties below are optional
                 AutomaticFail = false,
                 Score = 123
             };

Properties

AutomaticFail

The flag to mark the option as automatic fail.

public object? AutomaticFail { get; set; }
Property Value

object

Remarks

If an automatic fail answer is provided, the overall evaluation gets a score of 0.

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

RefId

The identifier of the answer option. An identifier must be unique within the question.

public string RefId { get; set; }
Property Value

string

Remarks

Length Constraints : Minimum length of 1. Maximum length of 40.

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

Score

The score assigned to the answer option.

public double? Score { get; set; }
Property Value

double?

Remarks

Minimum : 0

Maximum : 10

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

Text

The title of the answer option.

public string Text { get; set; }
Property Value

string

Remarks

Length Constraints : Minimum length of 1. Maximum length of 128.

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

Implements

CfnEvaluationForm.IEvaluationFormSingleSelectQuestionOptionProperty
Back to top Generated by DocFX