aws-cdk-lib.aws_connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty

interface EvaluationFormNumericQuestionPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormNumericQuestionPropertiesProperty
Javasoftware.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty
Pythonaws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty
TypeScript aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormNumericQuestionPropertiesProperty

Information about properties for a numeric question in an evaluation form.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const evaluationFormNumericQuestionPropertiesProperty: connect.CfnEvaluationForm.EvaluationFormNumericQuestionPropertiesProperty = {
  maxValue: 123,
  minValue: 123,

  // the properties below are optional
  automation: {
    propertyValue: {
      label: 'label',
    },
  },
  options: [{
    maxValue: 123,
    minValue: 123,

    // the properties below are optional
    automaticFail: false,
    score: 123,
  }],
};

Properties

NameTypeDescription
maxValuenumberThe maximum answer value.
minValuenumberThe minimum answer value.
automation?IResolvable | EvaluationFormNumericQuestionAutomationPropertyThe automation properties of the numeric question.
options?IResolvable | IResolvable | EvaluationFormNumericQuestionOptionProperty[]The scoring options of the numeric question.

maxValue

Type: number

The maximum answer value.


minValue

Type: number

The minimum answer value.


automation?

Type: IResolvable | EvaluationFormNumericQuestionAutomationProperty (optional)

The automation properties of the numeric question.


options?

Type: IResolvable | IResolvable | EvaluationFormNumericQuestionOptionProperty[] (optional)

The scoring options of the numeric question.