interface NotificationWithSubscribersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetPropsMixin.NotificationWithSubscribersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetPropsMixin_NotificationWithSubscribersProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetPropsMixin.NotificationWithSubscribersProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetPropsMixin.NotificationWithSubscribersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetPropsMixin » 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 { mixins as budgets_mixins } from '@aws-cdk/mixins-preview/aws-budgets';
const notificationWithSubscribersProperty: budgets_mixins.CfnBudgetPropsMixin.NotificationWithSubscribersProperty = {
notification: {
comparisonOperator: 'comparisonOperator',
notificationType: 'notificationType',
threshold: 123,
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
(optional)
The notification that's associated with a budget.
subscribers?
Type:
IResolvable | (IResolvable | Subscriber)[]
(optional)
A list of subscribers who are subscribed to this notification.

.NET
Go
Java
Python
TypeScript