Budget Notification Args
data class BudgetNotificationArgs(val comparisonOperator: Output<String>, val notificationType: Output<String>, val subscriberEmailAddresses: Output<List<String>>? = null, val subscriberSnsTopicArns: Output<List<String>>? = null, val threshold: Output<Double>, val thresholdType: Output<String>) : ConvertibleToJava<BudgetNotificationArgs>
Constructors
Properties
Link copied to clipboard
(Required) Comparison operator to use to evaluate the condition. Can be LESS_THAN
, EQUAL_TO
or GREATER_THAN
.
Link copied to clipboard
(Required) What kind of budget value to notify on. Can be ACTUAL
or FORECASTED
Link copied to clipboard
(Optional) E-Mail addresses to notify. Either this or subscriber_sns_topic_arns
is required.
Link copied to clipboard
(Optional) SNS topics to notify. Either this or subscriber_email_addresses
is required.
Link copied to clipboard
(Required) What kind of threshold is defined. Can be PERCENTAGE
OR ABSOLUTE_VALUE
.