interface ScoringStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_ScoringStrategyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.ScoringStrategyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const scoringStrategyProperty: connect.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