Interface CfnBudgetsAction.SubscriberProperty

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

@Stability(Stable) public static interface CfnBudgetsAction.SubscriberProperty extends software.amazon.jsii.JsiiSerializable
The subscriber to a budget notification.

The subscriber consists of a subscription type and either an Amazon SNS topic or an email address.

For example, an email subscriber has the following parameters:

  • A subscriptionType of EMAIL
  • An address of example@example.com

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.budgets.*;
 SubscriberProperty subscriberProperty = SubscriberProperty.builder()
         .address("address")
         .type("type")
         .build();
 

See Also: