PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::Budgets::Notification; use Moose; has ComparisonOperator => (is => 'ro', isa => 'Str', required => 1); has NotificationState => (is => 'ro', isa => 'Str'); has NotificationType => (is => 'ro', isa => 'Str', required => 1); has Threshold => (is => 'ro', isa => 'Num', required => 1); has ThresholdType => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::Budgets::Notification =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Budgets::Notification object: $service_obj->Method(Att1 => { ComparisonOperator => $value, ..., ThresholdType => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Budgets::Notification object: $result = $service_obj->Method(...); $result->Att1->ComparisonOperator =head1 DESCRIPTION A notification that is associated with a budget. A budget can have up to ten notifications. Each notification must have at least one subscriber. A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers. For example, if you have a budget for 200 dollars and you want to be notified when you go over 160 dollars, create a notification with the following parameters: =over =item * A notificationType of C =item * A C of C =item * A C of C =item * A notification C of C<80> =back =head1 ATTRIBUTES =head2 B ComparisonOperator => Str The comparison that is used for this notification. =head2 NotificationState => Str Whether this notification is in alarm. If a budget notification is in the C state, you have passed the set threshold for the budget. =head2 B NotificationType => Str Whether the notification is for how much you have spent (C) or for how much you're forecasted to spend (C). =head2 B Threshold => Num The threshold that is associated with a notification. Thresholds are always a percentage, and many customers find value being alerted between 50% - 200% of the budgeted amount. The maximum limit for your threshold is 1,000,000% above the budgeted amount. =head2 ThresholdType => Str The type of threshold for a notification. For C thresholds, AWS notifies you when you go over or are forecasted to go over your total cost threshold. For C thresholds, AWS notifies you when you go over or are forecasted to go over a certain percentage of your forecasted spend. For example, if you have a budget for 200 dollars and you have a C threshold of 80%, AWS notifies you when you go over 160 dollars. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut