Interface CfnEvaluationForm.EvaluationReviewConfigurationProperty

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

@Stability(Stable) public static interface CfnEvaluationForm.EvaluationReviewConfigurationProperty 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.*;
 EvaluationReviewConfigurationProperty evaluationReviewConfigurationProperty = EvaluationReviewConfigurationProperty.builder()
         .reviewNotificationRecipients(List.of(EvaluationReviewNotificationRecipientProperty.builder()
                 .type("type")
                 .value(EvaluationReviewNotificationRecipientValueProperty.builder()
                         .userId("userId")
                         .build())
                 .build()))
         // the properties below are optional
         .eligibilityDays(123)
         .build();
 

See Also: