Interface CfnBudget.SubscriberProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnBudget.SubscriberProperty.Jsii$Proxy
- Enclosing class:
 - CfnBudget
 
@Stability(Stable)
public static interface CfnBudget.SubscriberProperty
extends software.amazon.jsii.JsiiSerializable
The 
Subscriber property type specifies who to notify for a Billing and Cost Management budget notification.
 The subscriber consists of a subscription type, and either an Amazon SNS topic or an email address.
For example, an email subscriber would have the following parameters:
- A 
subscriptionTypeofEMAIL - An 
addressofexample@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")
         .subscriptionType("subscriptionType")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBudget.SubscriberPropertystatic final classAn implementation forCfnBudget.SubscriberProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()The address that AWS sends budget notifications to, either an SNS topic or an email.The type of notification that AWS sends to a subscriber.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getAddress
The address that AWS sends budget notifications to, either an SNS topic or an email.When you create a subscriber, the value of
Addresscan't contain line breaks. - 
getSubscriptionType
The type of notification that AWS sends to a subscriber. - 
builder
 
 -