Show / Hide Table of Contents

Class BudgetNotificationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
BudgetNotificationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Budgets.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class BudgetNotificationArgs : ResourceArgs

Constructors

View Source

BudgetNotificationArgs()

Declaration
public BudgetNotificationArgs()

Properties

View Source

ComparisonOperator

(Required) Comparison operator to use to evaluate the condition. Can be LESS_THAN, EQUAL_TO or GREATER_THAN.

Declaration
public Input<string> ComparisonOperator { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NotificationType

(Required) What kind of budget value to notify on. Can be ACTUAL or FORECASTED

Declaration
public Input<string> NotificationType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SubscriberEmailAddresses

(Optional) E-Mail addresses to notify. Either this or subscriber_sns_topic_arns is required.

Declaration
public InputList<string> SubscriberEmailAddresses { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

SubscriberSnsTopicArns

(Optional) SNS topics to notify. Either this or subscriber_email_addresses is required.

Declaration
public InputList<string> SubscriberSnsTopicArns { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Threshold

(Required) Threshold when the notification should be sent.

Declaration
public Input<double> Threshold { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

ThresholdType

(Required) What kind of threshold is defined. Can be PERCENTAGE OR ABSOLUTE_VALUE.

Declaration
public Input<string> ThresholdType { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.