interface SubscriberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetsActionPropsMixin.SubscriberProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetsActionPropsMixin_SubscriberProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetsActionPropsMixin.SubscriberProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetsActionPropsMixin.SubscriberProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetsActionPropsMixin » SubscriberProperty |
The subscriber to a budget notification.
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:
- A
subscriptionTypeofEMAIL - An
addressofexample@example.com
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 subscriberProperty: budgets_mixins.CfnBudgetsActionPropsMixin.SubscriberProperty = {
address: 'address',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The address that AWS sends budget notifications to, either an SNS topic or an email. |
| type? | string | The type of notification that AWS sends to a subscriber. |
address?
Type:
string
(optional)
The address that AWS sends budget notifications to, either an SNS topic or an email.
When you create a subscriber, the value of Address can't contain line breaks.
type?
Type:
string
(optional)
The type of notification that AWS sends to a subscriber.

.NET
Go
Java
Python
TypeScript