interface EvaluationReviewConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationReviewConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationReviewConfigurationProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationReviewConfigurationProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationReviewConfigurationProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationReviewConfigurationProperty |
Configuration settings for evaluation reviews.
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 evaluationReviewConfigurationProperty: connect.CfnEvaluationForm.EvaluationReviewConfigurationProperty = {
reviewNotificationRecipients: [{
type: 'type',
value: {
userId: 'userId',
},
}],
// the properties below are optional
eligibilityDays: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| review | IResolvable | (IResolvable | Evaluation)[] | List of recipients who should be notified when a review is requested. |
| eligibility | number | Number of days during which a request for review can be submitted for evaluations created from this form. |
reviewNotificationRecipients
Type:
IResolvable | (IResolvable | Evaluation)[]
List of recipients who should be notified when a review is requested.
eligibilityDays?
Type:
number
(optional)
Number of days during which a request for review can be submitted for evaluations created from this form.

.NET
Go
Java
Python
TypeScript