Interface CfnBudgetsAction.ISubscriberProperty
The subscriber to a budget notification.
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBudgetsAction.ISubscriberProperty
Syntax (vb)
Public Interface CfnBudgetsAction.ISubscriberProperty
Remarks
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:
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Budgets;
var subscriberProperty = new SubscriberProperty {
Address = "address",
Type = "type"
};
Synopsis
Properties
| Address | The address that AWS sends budget notifications to, either an SNS topic or an email. |
| Type | The type of notification that AWS sends to a subscriber. |
Properties
Address
The address that AWS sends budget notifications to, either an SNS topic or an email.
string Address { get; }
Property Value
Remarks
When you create a subscriber, the value of Address can't contain line breaks.
Type
The type of notification that AWS sends to a subscriber.
string Type { get; }