Show / Hide Table of Contents

Class CfnBudget.SubscriberProperty

The Subscriber property type specifies who to notify for a Billing and Cost Management budget notification.

Inheritance
object
CfnBudget.SubscriberProperty
Implements
CfnBudget.ISubscriberProperty
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.SubscriberProperty : CfnBudget.ISubscriberProperty
Syntax (vb)
Public Class CfnBudget.SubscriberProperty Implements CfnBudget.ISubscriberProperty
Remarks

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:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-subscriber.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 subscriberProperty = new SubscriberProperty {
                     Address = "address",
                     SubscriptionType = "subscriptionType"
                 };

    Synopsis

    Constructors

    SubscriberProperty()

    The Subscriber property type specifies who to notify for a Billing and Cost Management budget notification.

    Properties

    Address

    The address that AWS sends budget notifications to, either an SNS topic or an email.

    SubscriptionType

    The type of notification that AWS sends to a subscriber.

    Constructors

    SubscriberProperty()

    The Subscriber property type specifies who to notify for a Billing and Cost Management budget notification.

    public SubscriberProperty()
    Remarks

    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:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-subscriber.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 subscriberProperty = new SubscriberProperty {
                       Address = "address",
                       SubscriptionType = "subscriptionType"
                   };

      Properties

      Address

      The address that AWS sends budget notifications to, either an SNS topic or an email.

      public string Address { get; set; }
      Property Value

      string

      Remarks

      When you create a subscriber, the value of Address can't contain line breaks.

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

      SubscriptionType

      The type of notification that AWS sends to a subscriber.

      public string SubscriptionType { get; set; }
      Property Value

      string

      Remarks

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

      Implements

      CfnBudget.ISubscriberProperty
      Back to top Generated by DocFX