interface ScoringStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_ScoringStrategyProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const scoringStrategyProperty: connect_mixins.CfnEvaluationFormPropsMixin.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
(optional)
The scoring mode of the evaluation form.
Allowed values : QUESTION_ONLY | SECTION_ONLY
status?
Type:
string
(optional)
The scoring status of the evaluation form.
Allowed values : ENABLED | DISABLED

.NET
Go
Java
Python
TypeScript