Show / Hide Table of Contents

Class CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty

Information about the option range used for scoring in numeric questions.

Inheritance
object
CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty
Implements
CfnEvaluationFormPropsMixin.IEvaluationFormNumericQuestionOptionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty : CfnEvaluationFormPropsMixin.IEvaluationFormNumericQuestionOptionProperty
Syntax (vb)
Public Class CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty Implements CfnEvaluationFormPropsMixin.IEvaluationFormNumericQuestionOptionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.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.Mixins.Preview.AWS.Connect.Mixins;

             var evaluationFormNumericQuestionOptionProperty = new EvaluationFormNumericQuestionOptionProperty {
                 AutomaticFail = false,
                 AutomaticFailConfiguration = new AutomaticFailConfigurationProperty {
                     TargetSection = "targetSection"
                 },
                 MaxValue = 123,
                 MinValue = 123,
                 Score = 123
             };

Synopsis

Constructors

EvaluationFormNumericQuestionOptionProperty()

Information about the option range used for scoring in numeric questions.

Properties

AutomaticFail

The flag to mark the option as automatic fail.

AutomaticFailConfiguration

A configuration for automatic fail.

MaxValue

The maximum answer value of the range option.

MinValue

The minimum answer value of the range option.

Score

The score assigned to answer values within the range option.

Constructors

EvaluationFormNumericQuestionOptionProperty()

Information about the option range used for scoring in numeric questions.

public EvaluationFormNumericQuestionOptionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionoption.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.Mixins.Preview.AWS.Connect.Mixins;

             var evaluationFormNumericQuestionOptionProperty = new EvaluationFormNumericQuestionOptionProperty {
                 AutomaticFail = false,
                 AutomaticFailConfiguration = new AutomaticFailConfigurationProperty {
                     TargetSection = "targetSection"
                 },
                 MaxValue = 123,
                 MinValue = 123,
                 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-evaluationformnumericquestionoption.html#cfn-connect-evaluationform-evaluationformnumericquestionoption-automaticfail

Type union: either bool or IResolvable

AutomaticFailConfiguration

A configuration for automatic fail.

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

object

Remarks

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

Type union: either IResolvable or CfnEvaluationFormPropsMixin.IAutomaticFailConfigurationProperty

MaxValue

The maximum answer value of the range option.

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

double?

Remarks

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

MinValue

The minimum answer value of the range option.

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

double?

Remarks

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

Score

The score assigned to answer values within the range 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-evaluationformnumericquestionoption.html#cfn-connect-evaluationform-evaluationformnumericquestionoption-score

Implements

CfnEvaluationFormPropsMixin.IEvaluationFormNumericQuestionOptionProperty
Back to top Generated by DocFX