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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.EvaluationReviewNotificationRecipientProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getType()The type of notification recipient.getValue()Returns union: eitherIResolvableorCfnEvaluationForm.EvaluationReviewNotificationRecipientValuePropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of notification recipient.- See Also:
-
getValue
Returns union: eitherIResolvableorCfnEvaluationForm.EvaluationReviewNotificationRecipientValueProperty- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationReviewNotificationRecipientProperty.Builder builder()
-