Class CfnEvaluationFormPropsMixin.EvaluationFormNumericQuestionOptionProperty
Information about the option range used for scoring in numeric questions.
Inherited Members
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
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
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
Remarks
If an automatic fail answer is provided, the overall evaluation gets a score of 0.
Type union: either bool or IResolvable
AutomaticFailConfiguration
A configuration for automatic fail.
public object? AutomaticFailConfiguration { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnEvaluationFormPropsMixin.IAutomaticFailConfigurationProperty
MaxValue
The maximum answer value of the range option.
public double? MaxValue { get; set; }
Property Value
Remarks
MinValue
The minimum answer value of the range option.
public double? MinValue { get; set; }
Property Value
Remarks
Score
The score assigned to answer values within the range option.
public double? Score { get; set; }