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
ofEMAIL
- An
address
ofexample@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBudgetsAction.SubscriberProperty
static final class
An implementation forCfnBudgetsAction.SubscriberProperty
-
Method Summary
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
Address
can't contain line breaks. -
getType
The type of notification that AWS sends to a subscriber. -
builder
-