aws-cdk-lib.aws_budgets.CfnBudgetsAction.SubscriberProperty

interface SubscriberProperty

LanguageType name
.NETAmazon.CDK.AWS.Budgets.CfnBudgetsAction.SubscriberProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbudgets#CfnBudgetsAction_SubscriberProperty
Javasoftware.amazon.awscdk.services.budgets.CfnBudgetsAction.SubscriberProperty
Pythonaws_cdk.aws_budgets.CfnBudgetsAction.SubscriberProperty
TypeScript aws-cdk-lib » aws_budgets » CfnBudgetsAction » 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 subscriptionType of EMAIL
  • An address of example@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-lib';
const subscriberProperty: budgets.CfnBudgetsAction.SubscriberProperty = {
  address: 'address',
  type: 'type',
};

Properties

NameTypeDescription
addressstringThe address that AWS sends budget notifications to, either an SNS topic or an email.
typestringThe type of notification that AWS sends to a subscriber.

address

Type: string

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

The type of notification that AWS sends to a subscriber.