interface SubscriberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Budgets.CfnBudgetsActionPropsMixin.SubscriberProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbudgets#CfnBudgetsActionPropsMixin_SubscriberProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.budgets.CfnBudgetsActionPropsMixin.SubscriberProperty |
Python | aws_cdk.cfn_property_mixins.aws_budgets.CfnBudgetsActionPropsMixin.SubscriberProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_budgets » 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 { aws_budgets as budgets } from '@aws-cdk/cfn-property-mixins';
const subscriberProperty: budgets.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