Interface CfnEvaluationForm.EvaluationReviewNotificationRecipientProperty

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

@Stability(Stable) public static interface CfnEvaluationForm.EvaluationReviewNotificationRecipientProperty extends software.amazon.jsii.JsiiSerializable
Example:

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

See Also: