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,
                 AutomaticFailConfiguration = new AutomaticFailConfigurationProperty {
                     TargetSection = "targetSection"
                 },
                 PointsConfiguration = new QuestionOptionPointsConfigurationProperty {
                     PointValue = 123,

                     // the properties below are optional
                     IsBonus = 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.

AutomaticFailConfiguration

Whether automatic fail is configured on a single select question.

PointsConfiguration

Information about the points configuration for an answer option.

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,
                 AutomaticFailConfiguration = new AutomaticFailConfigurationProperty {
                     TargetSection = "targetSection"
                 },
                 PointsConfiguration = new QuestionOptionPointsConfigurationProperty {
                     PointValue = 123,

                     // the properties below are optional
                     IsBonus = 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

Type union: either bool or IResolvable

AutomaticFailConfiguration

Whether automatic fail is configured on a single select question.

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

object

Remarks

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

Type union: either IResolvable or CfnEvaluationForm.IAutomaticFailConfigurationProperty

PointsConfiguration

Information about the points configuration for an answer option.

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

object

Remarks

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

Type union: either IResolvable or CfnEvaluationForm.IQuestionOptionPointsConfigurationProperty

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