@aws-sdk/client-budgets 3.382.0 → 3.385.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-types/Budgets.d.ts +26 -26
- package/dist-types/BudgetsClient.d.ts +26 -26
- package/dist-types/commands/CreateBudgetActionCommand.d.ts +8 -9
- package/dist-types/commands/CreateBudgetCommand.d.ts +13 -14
- package/dist-types/commands/CreateNotificationCommand.d.ts +7 -8
- package/dist-types/commands/CreateSubscriberCommand.d.ts +7 -8
- package/dist-types/commands/DeleteBudgetActionCommand.d.ts +9 -10
- package/dist-types/commands/DeleteBudgetCommand.d.ts +5 -6
- package/dist-types/commands/DeleteNotificationCommand.d.ts +9 -10
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +10 -11
- package/dist-types/commands/DescribeBudgetActionCommand.d.ts +9 -10
- package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +11 -12
- package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +9 -10
- package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +9 -10
- package/dist-types/commands/DescribeBudgetCommand.d.ts +8 -9
- package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +6 -7
- package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +4 -5
- package/dist-types/commands/DescribeBudgetsCommand.d.ts +8 -9
- package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +6 -7
- package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +7 -8
- package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +4 -5
- package/dist-types/commands/UpdateBudgetActionCommand.d.ts +21 -22
- package/dist-types/commands/UpdateBudgetCommand.d.ts +8 -9
- package/dist-types/commands/UpdateNotificationCommand.d.ts +10 -11
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +8 -9
- package/dist-types/index.d.ts +26 -26
- package/dist-types/models/models_0.d.ts +106 -89
- package/package.json +3 -3
|
@@ -213,16 +213,16 @@ export type SubscriptionType = (typeof SubscriptionType)[keyof typeof Subscripti
|
|
|
213
213
|
/**
|
|
214
214
|
* @public
|
|
215
215
|
* <p>The subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon SNS topic or an email address.</p>
|
|
216
|
-
*
|
|
217
|
-
*
|
|
216
|
+
* <p>For example, an email subscriber has the following parameters:</p>
|
|
217
|
+
* <ul>
|
|
218
218
|
* <li>
|
|
219
|
-
*
|
|
219
|
+
* <p>A <code>subscriptionType</code> of <code>EMAIL</code>
|
|
220
220
|
* </p>
|
|
221
|
-
*
|
|
221
|
+
* </li>
|
|
222
222
|
* <li>
|
|
223
|
-
*
|
|
223
|
+
* <p>An <code>address</code> of <code>example@example.com</code>
|
|
224
224
|
* </p>
|
|
225
|
-
*
|
|
225
|
+
* </li>
|
|
226
226
|
* </ul>
|
|
227
227
|
*/
|
|
228
228
|
export interface Subscriber {
|
|
@@ -234,7 +234,7 @@ export interface Subscriber {
|
|
|
234
234
|
/**
|
|
235
235
|
* @public
|
|
236
236
|
* <p>The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.</p>
|
|
237
|
-
*
|
|
237
|
+
* <p>When you create a subscriber, the value of <code>Address</code> can't contain line breaks.</p>
|
|
238
238
|
*/
|
|
239
239
|
Address: string | undefined;
|
|
240
240
|
}
|
|
@@ -250,7 +250,8 @@ export interface Action {
|
|
|
250
250
|
ActionId: string | undefined;
|
|
251
251
|
/**
|
|
252
252
|
* @public
|
|
253
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
253
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
254
|
+
* substring, aren't allowed.</p>
|
|
254
255
|
*/
|
|
255
256
|
BudgetName: string | undefined;
|
|
256
257
|
/**
|
|
@@ -374,7 +375,7 @@ export interface HistoricalOptions {
|
|
|
374
375
|
/**
|
|
375
376
|
* @public
|
|
376
377
|
* <p>The number of budget periods included in the moving-average calculation that determines your auto-adjusted budget amount. The maximum value depends on the <code>TimeUnit</code> granularity of the budget:</p>
|
|
377
|
-
*
|
|
378
|
+
* <ul>
|
|
378
379
|
* <li>
|
|
379
380
|
* <p>For the <code>DAILY</code> granularity, the maximum value is <code>60</code>.</p>
|
|
380
381
|
* </li>
|
|
@@ -393,8 +394,8 @@ export interface HistoricalOptions {
|
|
|
393
394
|
/**
|
|
394
395
|
* @public
|
|
395
396
|
* <p>The integer that describes how many budget periods in your <code>BudgetAdjustmentPeriod</code> are included in the calculation of your current <code>BudgetLimit</code>. If the first budget period in your <code>BudgetAdjustmentPeriod</code> has no cost data, then that budget period isn’t included in the average that determines your budget limit. </p>
|
|
396
|
-
*
|
|
397
|
-
*
|
|
397
|
+
* <p>For example, if you set <code>BudgetAdjustmentPeriod</code> as <code>4</code> quarters, but your account had no cost data in the first quarter, then only the last three quarters are included in the calculation. In this scenario, <code>LookBackAvailablePeriods</code> returns <code>3</code>. </p>
|
|
398
|
+
* <p>You can’t set your own <code>LookBackAvailablePeriods</code>. The value is automatically calculated from the <code>BudgetAdjustmentPeriod</code> and your historical cost data.</p>
|
|
398
399
|
*/
|
|
399
400
|
LookBackAvailablePeriods?: number;
|
|
400
401
|
}
|
|
@@ -422,17 +423,17 @@ export interface AutoAdjustData {
|
|
|
422
423
|
/**
|
|
423
424
|
* @public
|
|
424
425
|
* <p>The amount of cost or usage that's measured for a budget.</p>
|
|
425
|
-
*
|
|
426
|
+
* <p>For example, a <code>Spend</code> for <code>3 GB</code> of S3 usage has the following
|
|
426
427
|
* parameters:</p>
|
|
427
|
-
*
|
|
428
|
+
* <ul>
|
|
428
429
|
* <li>
|
|
429
|
-
*
|
|
430
|
+
* <p>An <code>Amount</code> of <code>3</code>
|
|
430
431
|
* </p>
|
|
431
|
-
*
|
|
432
|
+
* </li>
|
|
432
433
|
* <li>
|
|
433
|
-
*
|
|
434
|
+
* <p>A <code>unit</code> of <code>GB</code>
|
|
434
435
|
* </p>
|
|
435
|
-
*
|
|
436
|
+
* </li>
|
|
436
437
|
* </ul>
|
|
437
438
|
*/
|
|
438
439
|
export interface Spend {
|
|
@@ -471,7 +472,7 @@ export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
|
|
|
471
472
|
* how much you've used, cost, usage, RI units, or Savings Plans units and the
|
|
472
473
|
* <code>forecastedSpend</code> tracks how much that you're predicted to spend based on
|
|
473
474
|
* your historical usage profile.</p>
|
|
474
|
-
*
|
|
475
|
+
* <p>For example, if it's the 20th of the month and you have spent <code>50</code> dollars on
|
|
475
476
|
* Amazon EC2, your <code>actualSpend</code> is <code>50 USD</code>, and your
|
|
476
477
|
* <code>forecastedSpend</code> is <code>75 USD</code>.</p>
|
|
477
478
|
*/
|
|
@@ -491,7 +492,7 @@ export interface CalculatedSpend {
|
|
|
491
492
|
/**
|
|
492
493
|
* @public
|
|
493
494
|
* <p>The types of cost that are included in a <code>COST</code> budget, such as tax and subscriptions.</p>
|
|
494
|
-
*
|
|
495
|
+
* <p>
|
|
495
496
|
* <code>USAGE</code>, <code>RI_UTILIZATION</code>, <code>RI_COVERAGE</code>,
|
|
496
497
|
* <code>SAVINGS_PLANS_UTILIZATION</code>, and <code>SAVINGS_PLANS_COVERAGE</code>
|
|
497
498
|
* budgets don't have <code>CostTypes</code>.</p>
|
|
@@ -500,67 +501,67 @@ export interface CostTypes {
|
|
|
500
501
|
/**
|
|
501
502
|
* @public
|
|
502
503
|
* <p>Specifies whether a budget includes taxes.</p>
|
|
503
|
-
*
|
|
504
|
+
* <p>The default value is <code>true</code>.</p>
|
|
504
505
|
*/
|
|
505
506
|
IncludeTax?: boolean;
|
|
506
507
|
/**
|
|
507
508
|
* @public
|
|
508
509
|
* <p>Specifies whether a budget includes subscriptions.</p>
|
|
509
|
-
*
|
|
510
|
+
* <p>The default value is <code>true</code>.</p>
|
|
510
511
|
*/
|
|
511
512
|
IncludeSubscription?: boolean;
|
|
512
513
|
/**
|
|
513
514
|
* @public
|
|
514
515
|
* <p>Specifies whether a budget uses a blended rate.</p>
|
|
515
|
-
*
|
|
516
|
+
* <p>The default value is <code>false</code>.</p>
|
|
516
517
|
*/
|
|
517
518
|
UseBlended?: boolean;
|
|
518
519
|
/**
|
|
519
520
|
* @public
|
|
520
521
|
* <p>Specifies whether a budget includes refunds.</p>
|
|
521
|
-
*
|
|
522
|
+
* <p>The default value is <code>true</code>.</p>
|
|
522
523
|
*/
|
|
523
524
|
IncludeRefund?: boolean;
|
|
524
525
|
/**
|
|
525
526
|
* @public
|
|
526
527
|
* <p>Specifies whether a budget includes credits.</p>
|
|
527
|
-
*
|
|
528
|
+
* <p>The default value is <code>true</code>.</p>
|
|
528
529
|
*/
|
|
529
530
|
IncludeCredit?: boolean;
|
|
530
531
|
/**
|
|
531
532
|
* @public
|
|
532
533
|
* <p>Specifies whether a budget includes upfront RI costs.</p>
|
|
533
|
-
*
|
|
534
|
+
* <p>The default value is <code>true</code>.</p>
|
|
534
535
|
*/
|
|
535
536
|
IncludeUpfront?: boolean;
|
|
536
537
|
/**
|
|
537
538
|
* @public
|
|
538
539
|
* <p>Specifies whether a budget includes recurring fees such as monthly RI fees.</p>
|
|
539
|
-
*
|
|
540
|
+
* <p>The default value is <code>true</code>.</p>
|
|
540
541
|
*/
|
|
541
542
|
IncludeRecurring?: boolean;
|
|
542
543
|
/**
|
|
543
544
|
* @public
|
|
544
545
|
* <p>Specifies whether a budget includes non-RI subscription costs.</p>
|
|
545
|
-
*
|
|
546
|
+
* <p>The default value is <code>true</code>.</p>
|
|
546
547
|
*/
|
|
547
548
|
IncludeOtherSubscription?: boolean;
|
|
548
549
|
/**
|
|
549
550
|
* @public
|
|
550
551
|
* <p>Specifies whether a budget includes support subscription fees.</p>
|
|
551
|
-
*
|
|
552
|
+
* <p>The default value is <code>true</code>.</p>
|
|
552
553
|
*/
|
|
553
554
|
IncludeSupport?: boolean;
|
|
554
555
|
/**
|
|
555
556
|
* @public
|
|
556
557
|
* <p>Specifies whether a budget includes discounts.</p>
|
|
557
|
-
*
|
|
558
|
+
* <p>The default value is <code>true</code>.</p>
|
|
558
559
|
*/
|
|
559
560
|
IncludeDiscount?: boolean;
|
|
560
561
|
/**
|
|
561
562
|
* @public
|
|
562
563
|
* <p>Specifies whether a budget uses the amortized rate.</p>
|
|
563
|
-
*
|
|
564
|
+
* <p>The default value is <code>false</code>.</p>
|
|
564
565
|
*/
|
|
565
566
|
UseAmortized?: boolean;
|
|
566
567
|
}
|
|
@@ -573,13 +574,13 @@ export interface TimePeriod {
|
|
|
573
574
|
/**
|
|
574
575
|
* @public
|
|
575
576
|
* <p>The start date for a budget. If you created your budget and didn't specify a start date, Amazon Web Services 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 <code>DAILY</code>, and didn't set a start date, Amazon Web Services set your start date to <code>01/24/18 00:00 UTC</code>. If you chose <code>MONTHLY</code>, Amazon Web Services set your start date to <code>01/01/18 00:00 UTC</code>. The defaults are the same for the Billing and Cost Management console and the API.</p>
|
|
576
|
-
*
|
|
577
|
+
* <p>You can change your start date with the <code>UpdateBudget</code> operation.</p>
|
|
577
578
|
*/
|
|
578
579
|
Start?: Date;
|
|
579
580
|
/**
|
|
580
581
|
* @public
|
|
581
582
|
* <p>The end date for a budget. If you didn't specify an end date, Amazon Web Services set your end date to <code>06/15/87 00:00 UTC</code>. The defaults are the same for the Billing and Cost Management console and the API.</p>
|
|
582
|
-
*
|
|
583
|
+
* <p>After the end date, Amazon Web Services deletes the budget and all the associated
|
|
583
584
|
* notifications and subscribers. You can change your end date with the
|
|
584
585
|
* <code>UpdateBudget</code> operation.</p>
|
|
585
586
|
*/
|
|
@@ -602,22 +603,24 @@ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
|
602
603
|
/**
|
|
603
604
|
* @public
|
|
604
605
|
* <p>Represents the output of the <code>CreateBudget</code> operation. The content consists of the detailed metadata and data file information, and the current status of the <code>budget</code> object.</p>
|
|
605
|
-
*
|
|
606
|
-
*
|
|
606
|
+
* <p>This is the Amazon Resource Name (ARN) pattern for a budget: </p>
|
|
607
|
+
* <p>
|
|
607
608
|
* <code>arn:aws:budgets::AccountId:budget/budgetName</code>
|
|
608
609
|
* </p>
|
|
609
610
|
*/
|
|
610
611
|
export interface Budget {
|
|
611
612
|
/**
|
|
612
613
|
* @public
|
|
613
|
-
* <p>The name of a budget. The name must be unique within an account. The <code>:</code> and
|
|
614
|
+
* <p>The name of a budget. The name must be unique within an account. The <code>:</code> and
|
|
615
|
+
* <code>\</code> characters, and the "/action/" substring, aren't allowed in
|
|
616
|
+
* <code>BudgetName</code>.</p>
|
|
614
617
|
*/
|
|
615
618
|
BudgetName: string | undefined;
|
|
616
619
|
/**
|
|
617
620
|
* @public
|
|
618
621
|
* <p>The total amount of cost, usage, RI utilization, RI coverage, Savings Plans utilization, or
|
|
619
622
|
* Savings Plans coverage that you want to track with your budget.</p>
|
|
620
|
-
*
|
|
623
|
+
* <p>
|
|
621
624
|
* <code>BudgetLimit</code> is required for cost or usage budgets, but optional for RI or
|
|
622
625
|
* Savings Plans utilization or coverage budgets. RI and Savings Plans utilization or
|
|
623
626
|
* coverage budgets default to <code>100</code>. This is the only valid value for RI or
|
|
@@ -629,20 +632,20 @@ export interface Budget {
|
|
|
629
632
|
/**
|
|
630
633
|
* @public
|
|
631
634
|
* <p>A map containing multiple <code>BudgetLimit</code>, including current or future limits.</p>
|
|
632
|
-
*
|
|
635
|
+
* <p>
|
|
633
636
|
* <code>PlannedBudgetLimits</code> is available for cost or usage budget and supports both
|
|
634
637
|
* monthly and quarterly <code>TimeUnit</code>. </p>
|
|
635
|
-
*
|
|
636
|
-
*
|
|
638
|
+
* <p>For monthly budgets, provide 12 months of <code>PlannedBudgetLimits</code> values. This must start from the current month and include the next 11 months. The <code>key</code> is the start of the month, <code>UTC</code> in epoch seconds. </p>
|
|
639
|
+
* <p>For quarterly budgets, provide four quarters of <code>PlannedBudgetLimits</code> value
|
|
637
640
|
* entries in standard calendar quarter increments. This must start from the current
|
|
638
641
|
* quarter and include the next three quarters. The <code>key</code> is the start of the
|
|
639
642
|
* quarter, <code>UTC</code> in epoch seconds. </p>
|
|
640
|
-
*
|
|
643
|
+
* <p>If the planned budget expires before 12 months for monthly or four quarters for quarterly,
|
|
641
644
|
* provide the <code>PlannedBudgetLimits</code> values only for the remaining
|
|
642
645
|
* periods.</p>
|
|
643
|
-
*
|
|
644
|
-
*
|
|
645
|
-
*
|
|
646
|
+
* <p>If the budget begins at a date in the future, provide <code>PlannedBudgetLimits</code> values from the start date of the budget. </p>
|
|
647
|
+
* <p>After all of the <code>BudgetLimit</code> values in <code>PlannedBudgetLimits</code> are used, the budget continues to use the last limit as the <code>BudgetLimit</code>. At that point, the planned budget provides the same experience as a fixed budget. </p>
|
|
648
|
+
* <p>
|
|
646
649
|
* <code>DescribeBudget</code> and <code>DescribeBudgets</code> response along with
|
|
647
650
|
* <code>PlannedBudgetLimits</code> also contain <code>BudgetLimit</code> representing
|
|
648
651
|
* the current month or quarter limit present in <code>PlannedBudgetLimits</code>. This
|
|
@@ -655,30 +658,30 @@ export interface Budget {
|
|
|
655
658
|
/**
|
|
656
659
|
* @public
|
|
657
660
|
* <p>The cost filters, such as <code>Region</code>, <code>Service</code>, <code>member account</code>, <code>Tag</code>, or <code>Cost Category</code>, that are applied to a budget.</p>
|
|
658
|
-
*
|
|
659
|
-
*
|
|
661
|
+
* <p>Amazon Web Services Budgets supports the following services as a <code>Service</code> filter for RI budgets:</p>
|
|
662
|
+
* <ul>
|
|
660
663
|
* <li>
|
|
661
|
-
*
|
|
662
|
-
*
|
|
664
|
+
* <p>Amazon EC2</p>
|
|
665
|
+
* </li>
|
|
663
666
|
* <li>
|
|
664
|
-
*
|
|
665
|
-
*
|
|
667
|
+
* <p>Amazon Redshift</p>
|
|
668
|
+
* </li>
|
|
666
669
|
* <li>
|
|
667
|
-
*
|
|
668
|
-
*
|
|
670
|
+
* <p>Amazon Relational Database Service</p>
|
|
671
|
+
* </li>
|
|
669
672
|
* <li>
|
|
670
|
-
*
|
|
671
|
-
*
|
|
673
|
+
* <p>Amazon ElastiCache</p>
|
|
674
|
+
* </li>
|
|
672
675
|
* <li>
|
|
673
|
-
*
|
|
674
|
-
*
|
|
676
|
+
* <p>Amazon OpenSearch Service</p>
|
|
677
|
+
* </li>
|
|
675
678
|
* </ul>
|
|
676
679
|
*/
|
|
677
680
|
CostFilters?: Record<string, string[]>;
|
|
678
681
|
/**
|
|
679
682
|
* @public
|
|
680
683
|
* <p>The types of costs that are included in this <code>COST</code> budget.</p>
|
|
681
|
-
*
|
|
684
|
+
* <p>
|
|
682
685
|
* <code>USAGE</code>, <code>RI_UTILIZATION</code>, <code>RI_COVERAGE</code>, <code>SAVINGS_PLANS_UTILIZATION</code>, and <code>SAVINGS_PLANS_COVERAGE</code> budgets do not have <code>CostTypes</code>.</p>
|
|
683
686
|
*/
|
|
684
687
|
CostTypes?: CostTypes;
|
|
@@ -692,15 +695,15 @@ export interface Budget {
|
|
|
692
695
|
* <p>The period of time that's covered by a budget. You setthe start date and end date. The start
|
|
693
696
|
* date must come before the end date. The end date must come before <code>06/15/87 00:00
|
|
694
697
|
* UTC</code>. </p>
|
|
695
|
-
*
|
|
698
|
+
* <p>If you create your budget and don't specify a start date, Amazon Web Services defaults to the
|
|
696
699
|
* start of your chosen time period (DAILY, MONTHLY, QUARTERLY, or ANNUALLY). For example,
|
|
697
700
|
* if you created your budget on January 24, 2018, chose <code>DAILY</code>, and didn't set
|
|
698
701
|
* a start date, Amazon Web Services set your start date to <code>01/24/18 00:00 UTC</code>.
|
|
699
702
|
* If you chose <code>MONTHLY</code>, Amazon Web Services set your start date to
|
|
700
703
|
* <code>01/01/18 00:00 UTC</code>. If you didn't specify an end date, Amazon Web Services set your end date to <code>06/15/87 00:00 UTC</code>. The defaults are the same for
|
|
701
704
|
* the Billing and Cost Management console and the API. </p>
|
|
702
|
-
*
|
|
703
|
-
*
|
|
705
|
+
* <p>You can change either date with the <code>UpdateBudget</code> operation.</p>
|
|
706
|
+
* <p>After the end date, Amazon Web Services deletes the budget and all the associated
|
|
704
707
|
* notifications and subscribers.</p>
|
|
705
708
|
*/
|
|
706
709
|
TimePeriod?: TimePeriod;
|
|
@@ -754,25 +757,25 @@ export type NotificationState = (typeof NotificationState)[keyof typeof Notifica
|
|
|
754
757
|
/**
|
|
755
758
|
* @public
|
|
756
759
|
* <p>A notification that's associated with a budget. A budget can have up to ten notifications. </p>
|
|
757
|
-
*
|
|
758
|
-
*
|
|
759
|
-
*
|
|
760
|
+
* <p>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.</p>
|
|
761
|
+
* <p>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:</p>
|
|
762
|
+
* <ul>
|
|
760
763
|
* <li>
|
|
761
|
-
*
|
|
764
|
+
* <p>A notificationType of <code>ACTUAL</code>
|
|
762
765
|
* </p>
|
|
763
|
-
*
|
|
766
|
+
* </li>
|
|
764
767
|
* <li>
|
|
765
|
-
*
|
|
768
|
+
* <p>A <code>thresholdType</code> of <code>PERCENTAGE</code>
|
|
766
769
|
* </p>
|
|
767
|
-
*
|
|
770
|
+
* </li>
|
|
768
771
|
* <li>
|
|
769
|
-
*
|
|
772
|
+
* <p>A <code>comparisonOperator</code> of <code>GREATER_THAN</code>
|
|
770
773
|
* </p>
|
|
771
|
-
*
|
|
774
|
+
* </li>
|
|
772
775
|
* <li>
|
|
773
|
-
*
|
|
776
|
+
* <p>A notification <code>threshold</code> of <code>80</code>
|
|
774
777
|
* </p>
|
|
775
|
-
*
|
|
778
|
+
* </li>
|
|
776
779
|
* </ul>
|
|
777
780
|
*/
|
|
778
781
|
export interface Notification {
|
|
@@ -919,9 +922,8 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
919
922
|
}
|
|
920
923
|
/**
|
|
921
924
|
* @public
|
|
922
|
-
* <p>
|
|
923
|
-
*
|
|
924
|
-
* </p>
|
|
925
|
+
* <p>The number of API requests has exceeded the maximum allowed API request throttling limit
|
|
926
|
+
* for the account.</p>
|
|
925
927
|
*/
|
|
926
928
|
export declare class ThrottlingException extends __BaseException {
|
|
927
929
|
readonly name: "ThrottlingException";
|
|
@@ -947,7 +949,8 @@ export interface CreateBudgetActionRequest {
|
|
|
947
949
|
AccountId: string | undefined;
|
|
948
950
|
/**
|
|
949
951
|
* @public
|
|
950
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
952
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
953
|
+
* substring, aren't allowed.</p>
|
|
951
954
|
*/
|
|
952
955
|
BudgetName: string | undefined;
|
|
953
956
|
/**
|
|
@@ -1003,7 +1006,8 @@ export interface CreateBudgetActionResponse {
|
|
|
1003
1006
|
AccountId: string | undefined;
|
|
1004
1007
|
/**
|
|
1005
1008
|
* @public
|
|
1006
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1009
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1010
|
+
* substring, aren't allowed.</p>
|
|
1007
1011
|
*/
|
|
1008
1012
|
BudgetName: string | undefined;
|
|
1009
1013
|
/**
|
|
@@ -1128,7 +1132,8 @@ export interface DeleteBudgetActionRequest {
|
|
|
1128
1132
|
AccountId: string | undefined;
|
|
1129
1133
|
/**
|
|
1130
1134
|
* @public
|
|
1131
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1135
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1136
|
+
* substring, aren't allowed.</p>
|
|
1132
1137
|
*/
|
|
1133
1138
|
BudgetName: string | undefined;
|
|
1134
1139
|
/**
|
|
@@ -1150,7 +1155,8 @@ export interface DeleteBudgetActionResponse {
|
|
|
1150
1155
|
AccountId: string | undefined;
|
|
1151
1156
|
/**
|
|
1152
1157
|
* @public
|
|
1153
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1158
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1159
|
+
* substring, aren't allowed.</p>
|
|
1154
1160
|
*/
|
|
1155
1161
|
BudgetName: string | undefined;
|
|
1156
1162
|
/**
|
|
@@ -1274,7 +1280,8 @@ export interface DescribeBudgetActionRequest {
|
|
|
1274
1280
|
AccountId: string | undefined;
|
|
1275
1281
|
/**
|
|
1276
1282
|
* @public
|
|
1277
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1283
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1284
|
+
* substring, aren't allowed.</p>
|
|
1278
1285
|
*/
|
|
1279
1286
|
BudgetName: string | undefined;
|
|
1280
1287
|
/**
|
|
@@ -1296,7 +1303,8 @@ export interface DescribeBudgetActionResponse {
|
|
|
1296
1303
|
AccountId: string | undefined;
|
|
1297
1304
|
/**
|
|
1298
1305
|
* @public
|
|
1299
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1306
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1307
|
+
* substring, aren't allowed.</p>
|
|
1300
1308
|
*/
|
|
1301
1309
|
BudgetName: string | undefined;
|
|
1302
1310
|
/**
|
|
@@ -1318,7 +1326,8 @@ export interface DescribeBudgetActionHistoriesRequest {
|
|
|
1318
1326
|
AccountId: string | undefined;
|
|
1319
1327
|
/**
|
|
1320
1328
|
* @public
|
|
1321
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1329
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1330
|
+
* substring, aren't allowed.</p>
|
|
1322
1331
|
*/
|
|
1323
1332
|
BudgetName: string | undefined;
|
|
1324
1333
|
/**
|
|
@@ -1427,7 +1436,8 @@ export interface DescribeBudgetActionsForBudgetRequest {
|
|
|
1427
1436
|
AccountId: string | undefined;
|
|
1428
1437
|
/**
|
|
1429
1438
|
* @public
|
|
1430
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1439
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1440
|
+
* substring, aren't allowed.</p>
|
|
1431
1441
|
*/
|
|
1432
1442
|
BudgetName: string | undefined;
|
|
1433
1443
|
/**
|
|
@@ -1494,7 +1504,8 @@ export interface BudgetNotificationsForAccount {
|
|
|
1494
1504
|
Notifications?: Notification[];
|
|
1495
1505
|
/**
|
|
1496
1506
|
* @public
|
|
1497
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1507
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1508
|
+
* substring, aren't allowed.</p>
|
|
1498
1509
|
*/
|
|
1499
1510
|
BudgetName?: string;
|
|
1500
1511
|
}
|
|
@@ -1543,7 +1554,8 @@ export interface DescribeBudgetPerformanceHistoryRequest {
|
|
|
1543
1554
|
AccountId: string | undefined;
|
|
1544
1555
|
/**
|
|
1545
1556
|
* @public
|
|
1546
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1557
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1558
|
+
* substring, aren't allowed.</p>
|
|
1547
1559
|
*/
|
|
1548
1560
|
BudgetName: string | undefined;
|
|
1549
1561
|
/**
|
|
@@ -1590,13 +1602,14 @@ export interface BudgetedAndActualAmounts {
|
|
|
1590
1602
|
export interface BudgetPerformanceHistory {
|
|
1591
1603
|
/**
|
|
1592
1604
|
* @public
|
|
1593
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1605
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1606
|
+
* substring, aren't allowed.</p>
|
|
1594
1607
|
*/
|
|
1595
1608
|
BudgetName?: string;
|
|
1596
1609
|
/**
|
|
1597
1610
|
* @public
|
|
1598
1611
|
* <p> The type of a budget. It must be one of the following types: </p>
|
|
1599
|
-
*
|
|
1612
|
+
* <p>
|
|
1600
1613
|
* <code>COST</code>, <code>USAGE</code>, <code>RI_UTILIZATION</code>, <code>RI_COVERAGE</code>, <code>SAVINGS_PLANS_UTILIZATION</code>, or <code>SAVINGS_PLANS_COVERAGE</code>.</p>
|
|
1601
1614
|
*/
|
|
1602
1615
|
BudgetType?: BudgetType | string;
|
|
@@ -1789,7 +1802,8 @@ export interface ExecuteBudgetActionRequest {
|
|
|
1789
1802
|
AccountId: string | undefined;
|
|
1790
1803
|
/**
|
|
1791
1804
|
* @public
|
|
1792
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1805
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1806
|
+
* substring, aren't allowed.</p>
|
|
1793
1807
|
*/
|
|
1794
1808
|
BudgetName: string | undefined;
|
|
1795
1809
|
/**
|
|
@@ -1818,7 +1832,8 @@ export interface ExecuteBudgetActionResponse {
|
|
|
1818
1832
|
AccountId: string | undefined;
|
|
1819
1833
|
/**
|
|
1820
1834
|
* @public
|
|
1821
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1835
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1836
|
+
* substring, aren't allowed.</p>
|
|
1822
1837
|
*/
|
|
1823
1838
|
BudgetName: string | undefined;
|
|
1824
1839
|
/**
|
|
@@ -1869,7 +1884,8 @@ export interface UpdateBudgetActionRequest {
|
|
|
1869
1884
|
AccountId: string | undefined;
|
|
1870
1885
|
/**
|
|
1871
1886
|
* @public
|
|
1872
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1887
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1888
|
+
* substring, aren't allowed.</p>
|
|
1873
1889
|
*/
|
|
1874
1890
|
BudgetName: string | undefined;
|
|
1875
1891
|
/**
|
|
@@ -1925,7 +1941,8 @@ export interface UpdateBudgetActionResponse {
|
|
|
1925
1941
|
AccountId: string | undefined;
|
|
1926
1942
|
/**
|
|
1927
1943
|
* @public
|
|
1928
|
-
* <p> A string that represents the budget name. The ":" and "\" characters
|
|
1944
|
+
* <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
|
|
1945
|
+
* substring, aren't allowed.</p>
|
|
1929
1946
|
*/
|
|
1930
1947
|
BudgetName: string | undefined;
|
|
1931
1948
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-budgets",
|
|
3
3
|
"description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|