Show / Hide Table of Contents

Class CfnBudget.NotificationWithSubscribersProperty

A notification with subscribers.

Inheritance
object
CfnBudget.NotificationWithSubscribersProperty
Implements
CfnBudget.INotificationWithSubscribersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Budgets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBudget.NotificationWithSubscribersProperty : CfnBudget.INotificationWithSubscribersProperty
Syntax (vb)
Public Class CfnBudget.NotificationWithSubscribersProperty Implements CfnBudget.INotificationWithSubscribersProperty
Remarks

A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-notificationwithsubscribers.html

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 notificationWithSubscribersProperty = new NotificationWithSubscribersProperty {
                 Notification = new NotificationProperty {
                     ComparisonOperator = "comparisonOperator",
                     NotificationType = "notificationType",
                     Threshold = 123,

                     // the properties below are optional
                     ThresholdType = "thresholdType"
                 },
                 Subscribers = new [] { new SubscriberProperty {
                     Address = "address",
                     SubscriptionType = "subscriptionType"
                 } }
             };

Synopsis

Constructors

NotificationWithSubscribersProperty()

A notification with subscribers.

Properties

Notification

The notification that's associated with a budget.

Subscribers

A list of subscribers who are subscribed to this notification.

Constructors

NotificationWithSubscribersProperty()

A notification with subscribers.

public NotificationWithSubscribersProperty()
Remarks

A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-notificationwithsubscribers.html

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 notificationWithSubscribersProperty = new NotificationWithSubscribersProperty {
                 Notification = new NotificationProperty {
                     ComparisonOperator = "comparisonOperator",
                     NotificationType = "notificationType",
                     Threshold = 123,

                     // the properties below are optional
                     ThresholdType = "thresholdType"
                 },
                 Subscribers = new [] { new SubscriberProperty {
                     Address = "address",
                     SubscriptionType = "subscriptionType"
                 } }
             };

Properties

Notification

The notification that's associated with a budget.

public object Notification { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-notificationwithsubscribers.html#cfn-budgets-budget-notificationwithsubscribers-notification

Type union: either IResolvable or CfnBudget.INotificationProperty

Subscribers

A list of subscribers who are subscribed to this notification.

public object Subscribers { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-notificationwithsubscribers.html#cfn-budgets-budget-notificationwithsubscribers-subscribers

Type union: either IResolvable or (either IResolvable or CfnBudget.ISubscriberProperty)[]

Implements

CfnBudget.INotificationWithSubscribersProperty
Back to top Generated by DocFX