public static interface CfnBudgetsAction.SubscriberProperty
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:
subscriptionType
of EMAIL
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnBudgetsAction.SubscriberProperty.Builder
A builder for
CfnBudgetsAction.SubscriberProperty |
static class |
CfnBudgetsAction.SubscriberProperty.Jsii$Proxy
An implementation for
CfnBudgetsAction.SubscriberProperty |
Modifier and Type | Method and Description |
---|---|
static CfnBudgetsAction.SubscriberProperty.Builder |
builder() |
java.lang.String |
getAddress()
The address that AWS sends budget notifications to, either an SNS topic or an email.
|
java.lang.String |
getType()
The type of notification that AWS sends to a subscriber.
|
java.lang.String getAddress()
When you create a subscriber, the value of Address
can't contain line breaks.
java.lang.String getType()
static CfnBudgetsAction.SubscriberProperty.Builder builder()