interface ScoringStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.ScoringStrategyProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.ScoringStrategyProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.ScoringStrategyProperty |
TypeScript | @aws-cdk/aws-connect » CfnEvaluationForm » ScoringStrategyProperty |
A scoring strategy of the evaluation form.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
const scoringStrategyProperty: connect.CfnEvaluationForm.ScoringStrategyProperty = {
mode: 'mode',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode | string | The scoring mode of the evaluation form. |
| status | string | The scoring status of the evaluation form. |
mode
Type:
string
The scoring mode of the evaluation form.
Allowed values : QUESTION_ONLY | SECTION_ONLY
status
Type:
string
The scoring status of the evaluation form.
Allowed values : ENABLED | DISABLED

.NET
Java
Python
TypeScript