Interface CfnEvaluationFormPropsMixin.EvaluationReviewNotificationRecipientProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEvaluationFormPropsMixin.EvaluationReviewNotificationRecipientProperty.Jsii$Proxy
Enclosing class:
CfnEvaluationFormPropsMixin

@Stability(Stable) public static interface CfnEvaluationFormPropsMixin.EvaluationReviewNotificationRecipientProperty extends software.amazon.jsii.JsiiSerializable
Information about a recipient who should be notified when an evaluation review is requested.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
 EvaluationReviewNotificationRecipientProperty evaluationReviewNotificationRecipientProperty = EvaluationReviewNotificationRecipientProperty.builder()
         .type("type")
         .value(EvaluationReviewNotificationRecipientValueProperty.builder()
                 .userId("userId")
                 .build())
         .build();
 

See Also: