@Stability(value=Stable)
public static interface CfnBudget.NotificationWithSubscribersProperty
extends software.amazon.jsii.JsiiSerializable
A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.
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.*;
NotificationWithSubscribersProperty notificationWithSubscribersProperty = NotificationWithSubscribersProperty.builder()
.notification(NotificationProperty.builder()
.comparisonOperator("comparisonOperator")
.notificationType("notificationType")
.threshold(123)
// the properties below are optional
.thresholdType("thresholdType")
.build())
.subscribers(List.of(SubscriberProperty.builder()
.address("address")
.subscriptionType("subscriptionType")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBudget.NotificationWithSubscribersProperty.Builder
A builder for
CfnBudget.NotificationWithSubscribersProperty |
static class |
CfnBudget.NotificationWithSubscribersProperty.Jsii$Proxy
An implementation for
CfnBudget.NotificationWithSubscribersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBudget.NotificationWithSubscribersProperty.Builder |
builder() |
Object |
getNotification()
The notification that's associated with a budget.
|
Object |
getSubscribers()
A list of subscribers who are subscribed to this notification.
|
@Stability(value=Stable) @NotNull Object getNotification()
@Stability(value=Stable) @NotNull Object getSubscribers()
@Stability(value=Stable) static CfnBudget.NotificationWithSubscribersProperty.Builder builder()
Copyright © 2022. All rights reserved.