interface SubscriberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetPropsMixin.SubscriberProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetPropsMixin_SubscriberProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetPropsMixin.SubscriberProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetPropsMixin.SubscriberProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetPropsMixin » SubscriberProperty |
The Subscriber property type specifies who to notify for a Billing and Cost Management budget notification.
The subscriber consists of a subscription type, and either an Amazon SNS topic or an email address.
For example, an email subscriber would have 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.CfnBudgetPropsMixin.SubscriberProperty = {
address: 'address',
subscriptionType: 'subscriptionType',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The address that AWS sends budget notifications to, either an SNS topic or an email. |
| subscription | 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.
subscriptionType?
Type:
string
(optional)
The type of notification that AWS sends to a subscriber.

.NET
Go
Java
Python
TypeScript