Interface CfnAnomalySubscription.SubscriberProperty

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

@Stability(Stable) public static interface CfnAnomalySubscription.SubscriberProperty extends software.amazon.jsii.JsiiSerializable
The recipient of AnomalySubscription notifications.

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.ce.*;
 SubscriberProperty subscriberProperty = SubscriberProperty.builder()
         .address("address")
         .type("type")
         // the properties below are optional
         .status("status")
         .build();