Class CfnBudget.NotificationWithSubscribersProperty
A notification with subscribers.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBudget.NotificationWithSubscribersProperty : CfnBudget.INotificationWithSubscribersProperty
Syntax (vb)
Public Class CfnBudget.NotificationWithSubscribersProperty Implements CfnBudget.INotificationWithSubscribersProperty
Remarks
A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Budgets;
var notificationWithSubscribersProperty = new NotificationWithSubscribersProperty {
Notification = new NotificationProperty {
ComparisonOperator = "comparisonOperator",
NotificationType = "notificationType",
Threshold = 123,
// the properties below are optional
ThresholdType = "thresholdType"
},
Subscribers = new [] { new SubscriberProperty {
Address = "address",
SubscriptionType = "subscriptionType"
} }
};
Synopsis
Constructors
| NotificationWithSubscribersProperty() | A notification with subscribers. |
Properties
| Notification | The notification that's associated with a budget. |
| Subscribers | A list of subscribers who are subscribed to this notification. |
Constructors
NotificationWithSubscribersProperty()
A notification with subscribers.
public NotificationWithSubscribersProperty()
Remarks
A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Budgets;
var notificationWithSubscribersProperty = new NotificationWithSubscribersProperty {
Notification = new NotificationProperty {
ComparisonOperator = "comparisonOperator",
NotificationType = "notificationType",
Threshold = 123,
// the properties below are optional
ThresholdType = "thresholdType"
},
Subscribers = new [] { new SubscriberProperty {
Address = "address",
SubscriptionType = "subscriptionType"
} }
};
Properties
Notification
The notification that's associated with a budget.
public object Notification { get; set; }
Property Value
Remarks
Subscribers
A list of subscribers who are subscribed to this notification.
public object Subscribers { get; set; }