interface EvaluationFormScoreThresholdProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormScoreThresholdProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormScoreThresholdProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormScoreThresholdProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormScoreThresholdProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » 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-lib';
const evaluationFormScoreThresholdProperty: connect.CfnEvaluationForm.EvaluationFormScoreThresholdProperty = {
performanceCategory: 'performanceCategory',
// the properties below are optional
maxScorePercentage: 123,
minScorePercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| performance | string | The performance category name. |
| max | number | The maximum score percentage for this threshold. |
| min | number | The minimum score percentage for this threshold. |
performanceCategory
Type:
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.

.NET
Go
Java
Python
TypeScript