interface NotificationWithSubscribersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Budgets.CfnBudget.NotificationWithSubscribersProperty |
Java | software.amazon.awscdk.services.budgets.CfnBudget.NotificationWithSubscribersProperty |
Python | aws_cdk.aws_budgets.CfnBudget.NotificationWithSubscribersProperty |
TypeScript | @aws-cdk/aws-budgets » CfnBudget » NotificationWithSubscribersProperty |
A notification with subscribers.
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 * as budgets from '@aws-cdk/aws-budgets';
const notificationWithSubscribersProperty: budgets.CfnBudget.NotificationWithSubscribersProperty = {
notification: {
comparisonOperator: 'comparisonOperator',
notificationType: 'notificationType',
threshold: 123,
// the properties below are optional
thresholdType: 'thresholdType',
},
subscribers: [{
address: 'address',
subscriptionType: 'subscriptionType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | IResolvable | Notification | The notification that's associated with a budget. |
| subscribers | IResolvable | IResolvable | Subscriber[] | A list of subscribers who are subscribed to this notification. |
notification
Type:
IResolvable | Notification
The notification that's associated with a budget.
subscribers
Type:
IResolvable | IResolvable | Subscriber[]
A list of subscribers who are subscribed to this notification.

.NET
Java
Python
TypeScript