interface EvaluationFormScoreThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.EvaluationFormScoreThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_EvaluationFormScoreThresholdProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.EvaluationFormScoreThresholdProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.EvaluationFormScoreThresholdProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnEvaluationFormPropsMixin » EvaluationFormScoreThresholdProperty |
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 evaluationFormScoreThresholdProperty: connect.CfnEvaluationFormPropsMixin.EvaluationFormScoreThresholdProperty = {
maxScorePercentage: 123,
minScorePercentage: 123,
performanceCategory: 'performanceCategory',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum score percentage for this threshold. |
| min | number | The minimum score percentage for this threshold. |
| performance | string | The performance category name. |
maxScorePercentage?
Type:
number
(optional)
The maximum score percentage for this threshold.
minScorePercentage?
Type:
number
(optional)
The minimum score percentage for this threshold.
performanceCategory?
Type:
string
(optional)
The performance category name.

.NET
Go
Java
Python
TypeScript