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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEvaluationForm.EvaluationReviewConfigurationPropertystatic final classAn implementation forCfnEvaluationForm.EvaluationReviewConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReviewNotificationRecipients
List of recipients who should be notified when a review is requested.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationForm.EvaluationReviewNotificationRecipientProperty>- See Also:
-
getEligibilityDays
Number of days during which a request for review can be submitted for evaluations created from this form.- See Also:
-
builder
-