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::Budget; use Moose; has BudgetLimit => (is => 'ro', isa => 'Paws::Budgets::Spend'); has BudgetName => (is => 'ro', isa => 'Str', required => 1); has BudgetType => (is => 'ro', isa => 'Str', required => 1); has CalculatedSpend => (is => 'ro', isa => 'Paws::Budgets::CalculatedSpend'); has CostFilters => (is => 'ro', isa => 'Paws::Budgets::CostFilters'); has CostTypes => (is => 'ro', isa => 'Paws::Budgets::CostTypes'); has LastUpdatedTime => (is => 'ro', isa => 'Str'); has PlannedBudgetLimits => (is => 'ro', isa => 'Paws::Budgets::PlannedBudgetLimits'); has TimePeriod => (is => 'ro', isa => 'Paws::Budgets::TimePeriod'); has TimeUnit => (is => 'ro', isa => 'Str', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::Budgets::Budget =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::Budget object: $service_obj->Method(Att1 => { BudgetLimit => $value, ..., TimeUnit => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Budgets::Budget object: $result = $service_obj->Method(...); $result->Att1->BudgetLimit =head1 DESCRIPTION Represents the output of the C operation. The content consists of the detailed metadata and data file information, and the current status of the C object. This is the ARN pattern for a budget: C =head1 ATTRIBUTES =head2 BudgetLimit => L The total amount of cost, usage, RI utilization, RI coverage, Savings Plans utilization, or Savings Plans coverage that you want to track with your budget. C is required for cost or usage budgets, but optional for RI or Savings Plans utilization or coverage budgets. RI and Savings Plans utilization or coverage budgets default to C<100>, which is the only valid value for RI or Savings Plans utilization or coverage budgets. You can't use C with C for C and C actions. =head2 B BudgetName => Str The name of a budget. The name must be unique within an account. The C<:> and C<\> characters aren't allowed in C. =head2 B BudgetType => Str Whether this budget tracks costs, usage, RI utilization, RI coverage, Savings Plans utilization, or Savings Plans coverage. =head2 CalculatedSpend => L The actual and forecasted cost or usage that the budget tracks. =head2 CostFilters => L The cost filters, such as service or tag, that are applied to a budget. AWS Budgets supports the following services as a filter for RI budgets: =over =item * Amazon Elastic Compute Cloud - Compute =item * Amazon Redshift =item * Amazon Relational Database Service =item * Amazon ElastiCache =item * Amazon Elasticsearch Service =back =head2 CostTypes => L The types of costs that are included in this C budget. C, C, C, C, and C budgets do not have C. =head2 LastUpdatedTime => Str The last time that you updated this budget. =head2 PlannedBudgetLimits => L A map containing multiple C, including current or future limits. C is available for cost or usage budget and supports monthly and quarterly C. For monthly budgets, provide 12 months of C values. This must start from the current month and include the next 11 months. The C is the start of the month, C in epoch seconds. For quarterly budgets, provide 4 quarters of C value entries in standard calendar quarter increments. This must start from the current quarter and include the next 3 quarters. The C is the start of the quarter, C in epoch seconds. If the planned budget expires before 12 months for monthly or 4 quarters for quarterly, provide the C values only for the remaining periods. If the budget begins at a date in the future, provide C values from the start date of the budget. After all of the C values in C are used, the budget continues to use the last limit as the C. At that point, the planned budget provides the same experience as a fixed budget. C and C response along with C will also contain C representing the current month or quarter limit present in C. This only applies to budgets created with C. Budgets created without C will only contain C, and no C. =head2 TimePeriod => L The period of time that is covered by a budget. The period has a start date and an end date. The start date must come before the end date. The end date must come before C<06/15/87 00:00 UTC>. If you create your budget and don't specify a start date, AWS defaults to the start of your chosen time period (DAILY, MONTHLY, QUARTERLY, or ANNUALLY). For example, if you created your budget on January 24, 2018, chose C, and didn't set a start date, AWS set your start date to C<01/24/18 00:00 UTC>. If you chose C, AWS set your start date to C<01/01/18 00:00 UTC>. If you didn't specify an end date, AWS set your end date to C<06/15/87 00:00 UTC>. The defaults are the same for the AWS Billing and Cost Management console and the API. You can change either date with the C operation. After the end date, AWS deletes the budget and all associated notifications and subscribers. =head2 B TimeUnit => Str The length of time until a budget resets the actual and forecasted spend. =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