@aws-sdk/client-budgets 3.131.0 → 3.142.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateBudgetActionCommand.js +2 -2
  4. package/dist-cjs/commands/CreateBudgetCommand.js +2 -2
  5. package/dist-cjs/commands/CreateNotificationCommand.js +2 -2
  6. package/dist-cjs/commands/CreateSubscriberCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteBudgetActionCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteBudgetCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteNotificationCommand.js +2 -2
  10. package/dist-cjs/commands/DeleteSubscriberCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeBudgetActionCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeBudgetActionHistoriesCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeBudgetActionsForAccountCommand.js +2 -2
  14. package/dist-cjs/commands/DescribeBudgetActionsForBudgetCommand.js +2 -2
  15. package/dist-cjs/commands/DescribeBudgetCommand.js +2 -2
  16. package/dist-cjs/commands/DescribeBudgetNotificationsForAccountCommand.js +2 -2
  17. package/dist-cjs/commands/DescribeBudgetPerformanceHistoryCommand.js +2 -2
  18. package/dist-cjs/commands/DescribeBudgetsCommand.js +2 -2
  19. package/dist-cjs/commands/DescribeNotificationsForBudgetCommand.js +2 -2
  20. package/dist-cjs/commands/DescribeSubscribersForNotificationCommand.js +2 -2
  21. package/dist-cjs/commands/ExecuteBudgetActionCommand.js +2 -2
  22. package/dist-cjs/commands/UpdateBudgetActionCommand.js +2 -2
  23. package/dist-cjs/commands/UpdateBudgetCommand.js +2 -2
  24. package/dist-cjs/commands/UpdateNotificationCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateSubscriberCommand.js +2 -2
  26. package/dist-cjs/models/models_0.js +289 -423
  27. package/dist-cjs/protocols/Aws_json1_1.js +115 -208
  28. package/dist-es/commands/CreateBudgetActionCommand.js +3 -3
  29. package/dist-es/commands/CreateBudgetCommand.js +3 -3
  30. package/dist-es/commands/CreateNotificationCommand.js +3 -3
  31. package/dist-es/commands/CreateSubscriberCommand.js +3 -3
  32. package/dist-es/commands/DeleteBudgetActionCommand.js +3 -3
  33. package/dist-es/commands/DeleteBudgetCommand.js +3 -3
  34. package/dist-es/commands/DeleteNotificationCommand.js +3 -3
  35. package/dist-es/commands/DeleteSubscriberCommand.js +3 -3
  36. package/dist-es/commands/DescribeBudgetActionCommand.js +3 -3
  37. package/dist-es/commands/DescribeBudgetActionHistoriesCommand.js +3 -3
  38. package/dist-es/commands/DescribeBudgetActionsForAccountCommand.js +3 -3
  39. package/dist-es/commands/DescribeBudgetActionsForBudgetCommand.js +3 -3
  40. package/dist-es/commands/DescribeBudgetCommand.js +3 -3
  41. package/dist-es/commands/DescribeBudgetNotificationsForAccountCommand.js +3 -3
  42. package/dist-es/commands/DescribeBudgetPerformanceHistoryCommand.js +3 -3
  43. package/dist-es/commands/DescribeBudgetsCommand.js +3 -3
  44. package/dist-es/commands/DescribeNotificationsForBudgetCommand.js +3 -3
  45. package/dist-es/commands/DescribeSubscribersForNotificationCommand.js +3 -3
  46. package/dist-es/commands/ExecuteBudgetActionCommand.js +3 -3
  47. package/dist-es/commands/UpdateBudgetActionCommand.js +3 -3
  48. package/dist-es/commands/UpdateBudgetCommand.js +3 -3
  49. package/dist-es/commands/UpdateNotificationCommand.js +3 -3
  50. package/dist-es/commands/UpdateSubscriberCommand.js +3 -3
  51. package/dist-es/models/models_0.js +69 -270
  52. package/dist-es/protocols/Aws_json1_1.js +185 -209
  53. package/dist-types/models/models_0.d.ts +268 -402
  54. package/dist-types/ts3.4/models/models_0.d.ts +134 -268
  55. package/package.json +6 -6
@@ -20,10 +20,6 @@ export interface ActionThreshold {
20
20
 
21
21
  ActionThresholdType: ThresholdType | string | undefined;
22
22
  }
23
- export declare namespace ActionThreshold {
24
-
25
- const filterSensitiveLog: (obj: ActionThreshold) => any;
26
- }
27
23
  export declare enum ActionType {
28
24
  IAM = "APPLY_IAM_POLICY",
29
25
  SCP = "APPLY_SCP_POLICY",
@@ -44,10 +40,6 @@ export interface IamActionDefinition {
44
40
 
45
41
  Users?: string[];
46
42
  }
47
- export declare namespace IamActionDefinition {
48
-
49
- const filterSensitiveLog: (obj: IamActionDefinition) => any;
50
- }
51
43
 
52
44
  export interface ScpActionDefinition {
53
45
 
@@ -55,10 +47,6 @@ export interface ScpActionDefinition {
55
47
 
56
48
  TargetIds: string[] | undefined;
57
49
  }
58
- export declare namespace ScpActionDefinition {
59
-
60
- const filterSensitiveLog: (obj: ScpActionDefinition) => any;
61
- }
62
50
  export declare enum ActionSubType {
63
51
  STOP_EC2 = "STOP_EC2_INSTANCES",
64
52
  STOP_RDS = "STOP_RDS_INSTANCES"
@@ -72,10 +60,6 @@ export interface SsmActionDefinition {
72
60
 
73
61
  InstanceIds: string[] | undefined;
74
62
  }
75
- export declare namespace SsmActionDefinition {
76
-
77
- const filterSensitiveLog: (obj: SsmActionDefinition) => any;
78
- }
79
63
 
80
64
  export interface Definition {
81
65
 
@@ -85,10 +69,6 @@ export interface Definition {
85
69
 
86
70
  SsmActionDefinition?: SsmActionDefinition;
87
71
  }
88
- export declare namespace Definition {
89
-
90
- const filterSensitiveLog: (obj: Definition) => any;
91
- }
92
72
  export declare enum NotificationType {
93
73
  ACTUAL = "ACTUAL",
94
74
  FORECASTED = "FORECASTED"
@@ -116,10 +96,6 @@ export interface Subscriber {
116
96
 
117
97
  Address: string | undefined;
118
98
  }
119
- export declare namespace Subscriber {
120
-
121
- const filterSensitiveLog: (obj: Subscriber) => any;
122
- }
123
99
 
124
100
  export interface Action {
125
101
 
@@ -143,10 +119,6 @@ export interface Action {
143
119
 
144
120
  Subscribers: Subscriber[] | undefined;
145
121
  }
146
- export declare namespace Action {
147
-
148
- const filterSensitiveLog: (obj: Action) => any;
149
- }
150
122
 
151
123
  export interface ActionHistoryDetails {
152
124
 
@@ -154,10 +126,6 @@ export interface ActionHistoryDetails {
154
126
 
155
127
  Action: Action | undefined;
156
128
  }
157
- export declare namespace ActionHistoryDetails {
158
-
159
- const filterSensitiveLog: (obj: ActionHistoryDetails) => any;
160
- }
161
129
  export declare enum EventType {
162
130
  CreateAction = "CREATE_ACTION",
163
131
  DeleteAction = "DELETE_ACTION",
@@ -176,10 +144,6 @@ export interface ActionHistory {
176
144
 
177
145
  ActionHistoryDetails: ActionHistoryDetails | undefined;
178
146
  }
179
- export declare namespace ActionHistory {
180
-
181
- const filterSensitiveLog: (obj: ActionHistory) => any;
182
- }
183
147
  export declare enum AutoAdjustType {
184
148
  FORECAST = "FORECAST",
185
149
  HISTORICAL = "HISTORICAL"
@@ -191,10 +155,6 @@ export interface HistoricalOptions {
191
155
 
192
156
  LookBackAvailablePeriods?: number;
193
157
  }
194
- export declare namespace HistoricalOptions {
195
-
196
- const filterSensitiveLog: (obj: HistoricalOptions) => any;
197
- }
198
158
 
199
159
  export interface AutoAdjustData {
200
160
 
@@ -204,10 +164,6 @@ export interface AutoAdjustData {
204
164
 
205
165
  LastAutoAdjustTime?: Date;
206
166
  }
207
- export declare namespace AutoAdjustData {
208
-
209
- const filterSensitiveLog: (obj: AutoAdjustData) => any;
210
- }
211
167
 
212
168
  export interface Spend {
213
169
 
@@ -215,10 +171,6 @@ export interface Spend {
215
171
 
216
172
  Unit: string | undefined;
217
173
  }
218
- export declare namespace Spend {
219
-
220
- const filterSensitiveLog: (obj: Spend) => any;
221
- }
222
174
  export declare enum BudgetType {
223
175
  Cost = "COST",
224
176
  RICoverage = "RI_COVERAGE",
@@ -234,10 +186,6 @@ export interface CalculatedSpend {
234
186
 
235
187
  ForecastedSpend?: Spend;
236
188
  }
237
- export declare namespace CalculatedSpend {
238
-
239
- const filterSensitiveLog: (obj: CalculatedSpend) => any;
240
- }
241
189
 
242
190
  export interface CostTypes {
243
191
 
@@ -263,10 +211,6 @@ export interface CostTypes {
263
211
 
264
212
  UseAmortized?: boolean;
265
213
  }
266
- export declare namespace CostTypes {
267
-
268
- const filterSensitiveLog: (obj: CostTypes) => any;
269
- }
270
214
 
271
215
  export interface TimePeriod {
272
216
 
@@ -274,10 +218,6 @@ export interface TimePeriod {
274
218
 
275
219
  End?: Date;
276
220
  }
277
- export declare namespace TimePeriod {
278
-
279
- const filterSensitiveLog: (obj: TimePeriod) => any;
280
- }
281
221
  export declare enum TimeUnit {
282
222
  ANNUALLY = "ANNUALLY",
283
223
  DAILY = "DAILY",
@@ -309,10 +249,6 @@ export interface Budget {
309
249
 
310
250
  AutoAdjustData?: AutoAdjustData;
311
251
  }
312
- export declare namespace Budget {
313
-
314
- const filterSensitiveLog: (obj: Budget) => any;
315
- }
316
252
  export declare enum ComparisonOperator {
317
253
  EQUAL_TO = "EQUAL_TO",
318
254
  GREATER_THAN = "GREATER_THAN",
@@ -335,10 +271,6 @@ export interface Notification {
335
271
 
336
272
  NotificationState?: NotificationState | string;
337
273
  }
338
- export declare namespace Notification {
339
-
340
- const filterSensitiveLog: (obj: Notification) => any;
341
- }
342
274
 
343
275
  export interface NotificationWithSubscribers {
344
276
 
@@ -346,10 +278,6 @@ export interface NotificationWithSubscribers {
346
278
 
347
279
  Subscribers: Subscriber[] | undefined;
348
280
  }
349
- export declare namespace NotificationWithSubscribers {
350
-
351
- const filterSensitiveLog: (obj: NotificationWithSubscribers) => any;
352
- }
353
281
 
354
282
  export interface CreateBudgetRequest {
355
283
 
@@ -359,17 +287,9 @@ export interface CreateBudgetRequest {
359
287
 
360
288
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
361
289
  }
362
- export declare namespace CreateBudgetRequest {
363
-
364
- const filterSensitiveLog: (obj: CreateBudgetRequest) => any;
365
- }
366
290
 
367
291
  export interface CreateBudgetResponse {
368
292
  }
369
- export declare namespace CreateBudgetResponse {
370
-
371
- const filterSensitiveLog: (obj: CreateBudgetResponse) => any;
372
- }
373
293
 
374
294
  export declare class CreationLimitExceededException extends __BaseException {
375
295
  readonly name: "CreationLimitExceededException";
@@ -435,10 +355,6 @@ export interface CreateBudgetActionRequest {
435
355
 
436
356
  Subscribers: Subscriber[] | undefined;
437
357
  }
438
- export declare namespace CreateBudgetActionRequest {
439
-
440
- const filterSensitiveLog: (obj: CreateBudgetActionRequest) => any;
441
- }
442
358
  export interface CreateBudgetActionResponse {
443
359
 
444
360
  AccountId: string | undefined;
@@ -447,10 +363,6 @@ export interface CreateBudgetActionResponse {
447
363
 
448
364
  ActionId: string | undefined;
449
365
  }
450
- export declare namespace CreateBudgetActionResponse {
451
-
452
- const filterSensitiveLog: (obj: CreateBudgetActionResponse) => any;
453
- }
454
366
 
455
367
  export declare class NotFoundException extends __BaseException {
456
368
  readonly name: "NotFoundException";
@@ -471,17 +383,9 @@ export interface CreateNotificationRequest {
471
383
 
472
384
  Subscribers: Subscriber[] | undefined;
473
385
  }
474
- export declare namespace CreateNotificationRequest {
475
-
476
- const filterSensitiveLog: (obj: CreateNotificationRequest) => any;
477
- }
478
386
 
479
387
  export interface CreateNotificationResponse {
480
388
  }
481
- export declare namespace CreateNotificationResponse {
482
-
483
- const filterSensitiveLog: (obj: CreateNotificationResponse) => any;
484
- }
485
389
 
486
390
  export interface CreateSubscriberRequest {
487
391
 
@@ -493,17 +397,9 @@ export interface CreateSubscriberRequest {
493
397
 
494
398
  Subscriber: Subscriber | undefined;
495
399
  }
496
- export declare namespace CreateSubscriberRequest {
497
-
498
- const filterSensitiveLog: (obj: CreateSubscriberRequest) => any;
499
- }
500
400
 
501
401
  export interface CreateSubscriberResponse {
502
402
  }
503
- export declare namespace CreateSubscriberResponse {
504
-
505
- const filterSensitiveLog: (obj: CreateSubscriberResponse) => any;
506
- }
507
403
 
508
404
  export interface DeleteBudgetRequest {
509
405
 
@@ -511,17 +407,9 @@ export interface DeleteBudgetRequest {
511
407
 
512
408
  BudgetName: string | undefined;
513
409
  }
514
- export declare namespace DeleteBudgetRequest {
515
-
516
- const filterSensitiveLog: (obj: DeleteBudgetRequest) => any;
517
- }
518
410
 
519
411
  export interface DeleteBudgetResponse {
520
412
  }
521
- export declare namespace DeleteBudgetResponse {
522
-
523
- const filterSensitiveLog: (obj: DeleteBudgetResponse) => any;
524
- }
525
413
  export interface DeleteBudgetActionRequest {
526
414
 
527
415
  AccountId: string | undefined;
@@ -530,10 +418,6 @@ export interface DeleteBudgetActionRequest {
530
418
 
531
419
  ActionId: string | undefined;
532
420
  }
533
- export declare namespace DeleteBudgetActionRequest {
534
-
535
- const filterSensitiveLog: (obj: DeleteBudgetActionRequest) => any;
536
- }
537
421
  export interface DeleteBudgetActionResponse {
538
422
 
539
423
  AccountId: string | undefined;
@@ -542,10 +426,6 @@ export interface DeleteBudgetActionResponse {
542
426
 
543
427
  Action: Action | undefined;
544
428
  }
545
- export declare namespace DeleteBudgetActionResponse {
546
-
547
- const filterSensitiveLog: (obj: DeleteBudgetActionResponse) => any;
548
- }
549
429
 
550
430
  export declare class ResourceLockedException extends __BaseException {
551
431
  readonly name: "ResourceLockedException";
@@ -564,17 +444,9 @@ export interface DeleteNotificationRequest {
564
444
 
565
445
  Notification: Notification | undefined;
566
446
  }
567
- export declare namespace DeleteNotificationRequest {
568
-
569
- const filterSensitiveLog: (obj: DeleteNotificationRequest) => any;
570
- }
571
447
 
572
448
  export interface DeleteNotificationResponse {
573
449
  }
574
- export declare namespace DeleteNotificationResponse {
575
-
576
- const filterSensitiveLog: (obj: DeleteNotificationResponse) => any;
577
- }
578
450
 
579
451
  export interface DeleteSubscriberRequest {
580
452
 
@@ -586,17 +458,9 @@ export interface DeleteSubscriberRequest {
586
458
 
587
459
  Subscriber: Subscriber | undefined;
588
460
  }
589
- export declare namespace DeleteSubscriberRequest {
590
-
591
- const filterSensitiveLog: (obj: DeleteSubscriberRequest) => any;
592
- }
593
461
 
594
462
  export interface DeleteSubscriberResponse {
595
463
  }
596
- export declare namespace DeleteSubscriberResponse {
597
-
598
- const filterSensitiveLog: (obj: DeleteSubscriberResponse) => any;
599
- }
600
464
 
601
465
  export interface DescribeBudgetRequest {
602
466
 
@@ -604,19 +468,11 @@ export interface DescribeBudgetRequest {
604
468
 
605
469
  BudgetName: string | undefined;
606
470
  }
607
- export declare namespace DescribeBudgetRequest {
608
-
609
- const filterSensitiveLog: (obj: DescribeBudgetRequest) => any;
610
- }
611
471
 
612
472
  export interface DescribeBudgetResponse {
613
473
 
614
474
  Budget?: Budget;
615
475
  }
616
- export declare namespace DescribeBudgetResponse {
617
-
618
- const filterSensitiveLog: (obj: DescribeBudgetResponse) => any;
619
- }
620
476
  export interface DescribeBudgetActionRequest {
621
477
 
622
478
  AccountId: string | undefined;
@@ -625,10 +481,6 @@ export interface DescribeBudgetActionRequest {
625
481
 
626
482
  ActionId: string | undefined;
627
483
  }
628
- export declare namespace DescribeBudgetActionRequest {
629
-
630
- const filterSensitiveLog: (obj: DescribeBudgetActionRequest) => any;
631
- }
632
484
  export interface DescribeBudgetActionResponse {
633
485
 
634
486
  AccountId: string | undefined;
@@ -637,10 +489,6 @@ export interface DescribeBudgetActionResponse {
637
489
 
638
490
  Action: Action | undefined;
639
491
  }
640
- export declare namespace DescribeBudgetActionResponse {
641
-
642
- const filterSensitiveLog: (obj: DescribeBudgetActionResponse) => any;
643
- }
644
492
  export interface DescribeBudgetActionHistoriesRequest {
645
493
 
646
494
  AccountId: string | undefined;
@@ -655,20 +503,12 @@ export interface DescribeBudgetActionHistoriesRequest {
655
503
 
656
504
  NextToken?: string;
657
505
  }
658
- export declare namespace DescribeBudgetActionHistoriesRequest {
659
-
660
- const filterSensitiveLog: (obj: DescribeBudgetActionHistoriesRequest) => any;
661
- }
662
506
  export interface DescribeBudgetActionHistoriesResponse {
663
507
 
664
508
  ActionHistories: ActionHistory[] | undefined;
665
509
 
666
510
  NextToken?: string;
667
511
  }
668
- export declare namespace DescribeBudgetActionHistoriesResponse {
669
-
670
- const filterSensitiveLog: (obj: DescribeBudgetActionHistoriesResponse) => any;
671
- }
672
512
 
673
513
  export declare class InvalidNextTokenException extends __BaseException {
674
514
  readonly name: "InvalidNextTokenException";
@@ -686,20 +526,12 @@ export interface DescribeBudgetActionsForAccountRequest {
686
526
 
687
527
  NextToken?: string;
688
528
  }
689
- export declare namespace DescribeBudgetActionsForAccountRequest {
690
-
691
- const filterSensitiveLog: (obj: DescribeBudgetActionsForAccountRequest) => any;
692
- }
693
529
  export interface DescribeBudgetActionsForAccountResponse {
694
530
 
695
531
  Actions: Action[] | undefined;
696
532
 
697
533
  NextToken?: string;
698
534
  }
699
- export declare namespace DescribeBudgetActionsForAccountResponse {
700
-
701
- const filterSensitiveLog: (obj: DescribeBudgetActionsForAccountResponse) => any;
702
- }
703
535
  export interface DescribeBudgetActionsForBudgetRequest {
704
536
 
705
537
  AccountId: string | undefined;
@@ -710,20 +542,12 @@ export interface DescribeBudgetActionsForBudgetRequest {
710
542
 
711
543
  NextToken?: string;
712
544
  }
713
- export declare namespace DescribeBudgetActionsForBudgetRequest {
714
-
715
- const filterSensitiveLog: (obj: DescribeBudgetActionsForBudgetRequest) => any;
716
- }
717
545
  export interface DescribeBudgetActionsForBudgetResponse {
718
546
 
719
547
  Actions: Action[] | undefined;
720
548
 
721
549
  NextToken?: string;
722
550
  }
723
- export declare namespace DescribeBudgetActionsForBudgetResponse {
724
-
725
- const filterSensitiveLog: (obj: DescribeBudgetActionsForBudgetResponse) => any;
726
- }
727
551
  export interface DescribeBudgetNotificationsForAccountRequest {
728
552
 
729
553
  AccountId: string | undefined;
@@ -732,10 +556,6 @@ export interface DescribeBudgetNotificationsForAccountRequest {
732
556
 
733
557
  NextToken?: string;
734
558
  }
735
- export declare namespace DescribeBudgetNotificationsForAccountRequest {
736
-
737
- const filterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountRequest) => any;
738
- }
739
559
 
740
560
  export interface BudgetNotificationsForAccount {
741
561
 
@@ -743,20 +563,12 @@ export interface BudgetNotificationsForAccount {
743
563
 
744
564
  BudgetName?: string;
745
565
  }
746
- export declare namespace BudgetNotificationsForAccount {
747
-
748
- const filterSensitiveLog: (obj: BudgetNotificationsForAccount) => any;
749
- }
750
566
  export interface DescribeBudgetNotificationsForAccountResponse {
751
567
 
752
568
  BudgetNotificationsForAccount?: BudgetNotificationsForAccount[];
753
569
 
754
570
  NextToken?: string;
755
571
  }
756
- export declare namespace DescribeBudgetNotificationsForAccountResponse {
757
-
758
- const filterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountResponse) => any;
759
- }
760
572
 
761
573
  export declare class ExpiredNextTokenException extends __BaseException {
762
574
  readonly name: "ExpiredNextTokenException";
@@ -778,10 +590,6 @@ export interface DescribeBudgetPerformanceHistoryRequest {
778
590
 
779
591
  NextToken?: string;
780
592
  }
781
- export declare namespace DescribeBudgetPerformanceHistoryRequest {
782
-
783
- const filterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryRequest) => any;
784
- }
785
593
 
786
594
  export interface BudgetedAndActualAmounts {
787
595
 
@@ -791,10 +599,6 @@ export interface BudgetedAndActualAmounts {
791
599
 
792
600
  TimePeriod?: TimePeriod;
793
601
  }
794
- export declare namespace BudgetedAndActualAmounts {
795
-
796
- const filterSensitiveLog: (obj: BudgetedAndActualAmounts) => any;
797
- }
798
602
 
799
603
  export interface BudgetPerformanceHistory {
800
604
 
@@ -810,20 +614,12 @@ export interface BudgetPerformanceHistory {
810
614
 
811
615
  BudgetedAndActualAmountsList?: BudgetedAndActualAmounts[];
812
616
  }
813
- export declare namespace BudgetPerformanceHistory {
814
-
815
- const filterSensitiveLog: (obj: BudgetPerformanceHistory) => any;
816
- }
817
617
  export interface DescribeBudgetPerformanceHistoryResponse {
818
618
 
819
619
  BudgetPerformanceHistory?: BudgetPerformanceHistory;
820
620
 
821
621
  NextToken?: string;
822
622
  }
823
- export declare namespace DescribeBudgetPerformanceHistoryResponse {
824
-
825
- const filterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryResponse) => any;
826
- }
827
623
 
828
624
  export interface DescribeBudgetsRequest {
829
625
 
@@ -833,10 +629,6 @@ export interface DescribeBudgetsRequest {
833
629
 
834
630
  NextToken?: string;
835
631
  }
836
- export declare namespace DescribeBudgetsRequest {
837
-
838
- const filterSensitiveLog: (obj: DescribeBudgetsRequest) => any;
839
- }
840
632
 
841
633
  export interface DescribeBudgetsResponse {
842
634
 
@@ -844,10 +636,6 @@ export interface DescribeBudgetsResponse {
844
636
 
845
637
  NextToken?: string;
846
638
  }
847
- export declare namespace DescribeBudgetsResponse {
848
-
849
- const filterSensitiveLog: (obj: DescribeBudgetsResponse) => any;
850
- }
851
639
 
852
640
  export interface DescribeNotificationsForBudgetRequest {
853
641
 
@@ -859,10 +647,6 @@ export interface DescribeNotificationsForBudgetRequest {
859
647
 
860
648
  NextToken?: string;
861
649
  }
862
- export declare namespace DescribeNotificationsForBudgetRequest {
863
-
864
- const filterSensitiveLog: (obj: DescribeNotificationsForBudgetRequest) => any;
865
- }
866
650
 
867
651
  export interface DescribeNotificationsForBudgetResponse {
868
652
 
@@ -870,10 +654,6 @@ export interface DescribeNotificationsForBudgetResponse {
870
654
 
871
655
  NextToken?: string;
872
656
  }
873
- export declare namespace DescribeNotificationsForBudgetResponse {
874
-
875
- const filterSensitiveLog: (obj: DescribeNotificationsForBudgetResponse) => any;
876
- }
877
657
 
878
658
  export interface DescribeSubscribersForNotificationRequest {
879
659
 
@@ -887,10 +667,6 @@ export interface DescribeSubscribersForNotificationRequest {
887
667
 
888
668
  NextToken?: string;
889
669
  }
890
- export declare namespace DescribeSubscribersForNotificationRequest {
891
-
892
- const filterSensitiveLog: (obj: DescribeSubscribersForNotificationRequest) => any;
893
- }
894
670
 
895
671
  export interface DescribeSubscribersForNotificationResponse {
896
672
 
@@ -898,10 +674,6 @@ export interface DescribeSubscribersForNotificationResponse {
898
674
 
899
675
  NextToken?: string;
900
676
  }
901
- export declare namespace DescribeSubscribersForNotificationResponse {
902
-
903
- const filterSensitiveLog: (obj: DescribeSubscribersForNotificationResponse) => any;
904
- }
905
677
  export declare enum ExecutionType {
906
678
  ApproveBudgetAction = "APPROVE_BUDGET_ACTION",
907
679
  ResetBudgetAction = "RESET_BUDGET_ACTION",
@@ -918,10 +690,6 @@ export interface ExecuteBudgetActionRequest {
918
690
 
919
691
  ExecutionType: ExecutionType | string | undefined;
920
692
  }
921
- export declare namespace ExecuteBudgetActionRequest {
922
-
923
- const filterSensitiveLog: (obj: ExecuteBudgetActionRequest) => any;
924
- }
925
693
  export interface ExecuteBudgetActionResponse {
926
694
 
927
695
  AccountId: string | undefined;
@@ -932,10 +700,6 @@ export interface ExecuteBudgetActionResponse {
932
700
 
933
701
  ExecutionType: ExecutionType | string | undefined;
934
702
  }
935
- export declare namespace ExecuteBudgetActionResponse {
936
-
937
- const filterSensitiveLog: (obj: ExecuteBudgetActionResponse) => any;
938
- }
939
703
 
940
704
  export interface UpdateBudgetRequest {
941
705
 
@@ -943,17 +707,9 @@ export interface UpdateBudgetRequest {
943
707
 
944
708
  NewBudget: Budget | undefined;
945
709
  }
946
- export declare namespace UpdateBudgetRequest {
947
-
948
- const filterSensitiveLog: (obj: UpdateBudgetRequest) => any;
949
- }
950
710
 
951
711
  export interface UpdateBudgetResponse {
952
712
  }
953
- export declare namespace UpdateBudgetResponse {
954
-
955
- const filterSensitiveLog: (obj: UpdateBudgetResponse) => any;
956
- }
957
713
  export interface UpdateBudgetActionRequest {
958
714
 
959
715
  AccountId: string | undefined;
@@ -974,10 +730,6 @@ export interface UpdateBudgetActionRequest {
974
730
 
975
731
  Subscribers?: Subscriber[];
976
732
  }
977
- export declare namespace UpdateBudgetActionRequest {
978
-
979
- const filterSensitiveLog: (obj: UpdateBudgetActionRequest) => any;
980
- }
981
733
  export interface UpdateBudgetActionResponse {
982
734
 
983
735
  AccountId: string | undefined;
@@ -988,10 +740,6 @@ export interface UpdateBudgetActionResponse {
988
740
 
989
741
  NewAction: Action | undefined;
990
742
  }
991
- export declare namespace UpdateBudgetActionResponse {
992
-
993
- const filterSensitiveLog: (obj: UpdateBudgetActionResponse) => any;
994
- }
995
743
 
996
744
  export interface UpdateNotificationRequest {
997
745
 
@@ -1003,17 +751,9 @@ export interface UpdateNotificationRequest {
1003
751
 
1004
752
  NewNotification: Notification | undefined;
1005
753
  }
1006
- export declare namespace UpdateNotificationRequest {
1007
-
1008
- const filterSensitiveLog: (obj: UpdateNotificationRequest) => any;
1009
- }
1010
754
 
1011
755
  export interface UpdateNotificationResponse {
1012
756
  }
1013
- export declare namespace UpdateNotificationResponse {
1014
-
1015
- const filterSensitiveLog: (obj: UpdateNotificationResponse) => any;
1016
- }
1017
757
 
1018
758
  export interface UpdateSubscriberRequest {
1019
759
 
@@ -1027,14 +767,140 @@ export interface UpdateSubscriberRequest {
1027
767
 
1028
768
  NewSubscriber: Subscriber | undefined;
1029
769
  }
1030
- export declare namespace UpdateSubscriberRequest {
1031
-
1032
- const filterSensitiveLog: (obj: UpdateSubscriberRequest) => any;
1033
- }
1034
770
 
1035
771
  export interface UpdateSubscriberResponse {
1036
772
  }
1037
- export declare namespace UpdateSubscriberResponse {
1038
-
1039
- const filterSensitiveLog: (obj: UpdateSubscriberResponse) => any;
1040
- }
773
+
774
+ export declare const ActionThresholdFilterSensitiveLog: (obj: ActionThreshold) => any;
775
+
776
+ export declare const IamActionDefinitionFilterSensitiveLog: (obj: IamActionDefinition) => any;
777
+
778
+ export declare const ScpActionDefinitionFilterSensitiveLog: (obj: ScpActionDefinition) => any;
779
+
780
+ export declare const SsmActionDefinitionFilterSensitiveLog: (obj: SsmActionDefinition) => any;
781
+
782
+ export declare const DefinitionFilterSensitiveLog: (obj: Definition) => any;
783
+
784
+ export declare const SubscriberFilterSensitiveLog: (obj: Subscriber) => any;
785
+
786
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
787
+
788
+ export declare const ActionHistoryDetailsFilterSensitiveLog: (obj: ActionHistoryDetails) => any;
789
+
790
+ export declare const ActionHistoryFilterSensitiveLog: (obj: ActionHistory) => any;
791
+
792
+ export declare const HistoricalOptionsFilterSensitiveLog: (obj: HistoricalOptions) => any;
793
+
794
+ export declare const AutoAdjustDataFilterSensitiveLog: (obj: AutoAdjustData) => any;
795
+
796
+ export declare const SpendFilterSensitiveLog: (obj: Spend) => any;
797
+
798
+ export declare const CalculatedSpendFilterSensitiveLog: (obj: CalculatedSpend) => any;
799
+
800
+ export declare const CostTypesFilterSensitiveLog: (obj: CostTypes) => any;
801
+
802
+ export declare const TimePeriodFilterSensitiveLog: (obj: TimePeriod) => any;
803
+
804
+ export declare const BudgetFilterSensitiveLog: (obj: Budget) => any;
805
+
806
+ export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
807
+
808
+ export declare const NotificationWithSubscribersFilterSensitiveLog: (obj: NotificationWithSubscribers) => any;
809
+
810
+ export declare const CreateBudgetRequestFilterSensitiveLog: (obj: CreateBudgetRequest) => any;
811
+
812
+ export declare const CreateBudgetResponseFilterSensitiveLog: (obj: CreateBudgetResponse) => any;
813
+
814
+ export declare const CreateBudgetActionRequestFilterSensitiveLog: (obj: CreateBudgetActionRequest) => any;
815
+
816
+ export declare const CreateBudgetActionResponseFilterSensitiveLog: (obj: CreateBudgetActionResponse) => any;
817
+
818
+ export declare const CreateNotificationRequestFilterSensitiveLog: (obj: CreateNotificationRequest) => any;
819
+
820
+ export declare const CreateNotificationResponseFilterSensitiveLog: (obj: CreateNotificationResponse) => any;
821
+
822
+ export declare const CreateSubscriberRequestFilterSensitiveLog: (obj: CreateSubscriberRequest) => any;
823
+
824
+ export declare const CreateSubscriberResponseFilterSensitiveLog: (obj: CreateSubscriberResponse) => any;
825
+
826
+ export declare const DeleteBudgetRequestFilterSensitiveLog: (obj: DeleteBudgetRequest) => any;
827
+
828
+ export declare const DeleteBudgetResponseFilterSensitiveLog: (obj: DeleteBudgetResponse) => any;
829
+
830
+ export declare const DeleteBudgetActionRequestFilterSensitiveLog: (obj: DeleteBudgetActionRequest) => any;
831
+
832
+ export declare const DeleteBudgetActionResponseFilterSensitiveLog: (obj: DeleteBudgetActionResponse) => any;
833
+
834
+ export declare const DeleteNotificationRequestFilterSensitiveLog: (obj: DeleteNotificationRequest) => any;
835
+
836
+ export declare const DeleteNotificationResponseFilterSensitiveLog: (obj: DeleteNotificationResponse) => any;
837
+
838
+ export declare const DeleteSubscriberRequestFilterSensitiveLog: (obj: DeleteSubscriberRequest) => any;
839
+
840
+ export declare const DeleteSubscriberResponseFilterSensitiveLog: (obj: DeleteSubscriberResponse) => any;
841
+
842
+ export declare const DescribeBudgetRequestFilterSensitiveLog: (obj: DescribeBudgetRequest) => any;
843
+
844
+ export declare const DescribeBudgetResponseFilterSensitiveLog: (obj: DescribeBudgetResponse) => any;
845
+
846
+ export declare const DescribeBudgetActionRequestFilterSensitiveLog: (obj: DescribeBudgetActionRequest) => any;
847
+
848
+ export declare const DescribeBudgetActionResponseFilterSensitiveLog: (obj: DescribeBudgetActionResponse) => any;
849
+
850
+ export declare const DescribeBudgetActionHistoriesRequestFilterSensitiveLog: (obj: DescribeBudgetActionHistoriesRequest) => any;
851
+
852
+ export declare const DescribeBudgetActionHistoriesResponseFilterSensitiveLog: (obj: DescribeBudgetActionHistoriesResponse) => any;
853
+
854
+ export declare const DescribeBudgetActionsForAccountRequestFilterSensitiveLog: (obj: DescribeBudgetActionsForAccountRequest) => any;
855
+
856
+ export declare const DescribeBudgetActionsForAccountResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForAccountResponse) => any;
857
+
858
+ export declare const DescribeBudgetActionsForBudgetRequestFilterSensitiveLog: (obj: DescribeBudgetActionsForBudgetRequest) => any;
859
+
860
+ export declare const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog: (obj: DescribeBudgetActionsForBudgetResponse) => any;
861
+
862
+ export declare const DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountRequest) => any;
863
+
864
+ export declare const BudgetNotificationsForAccountFilterSensitiveLog: (obj: BudgetNotificationsForAccount) => any;
865
+
866
+ export declare const DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog: (obj: DescribeBudgetNotificationsForAccountResponse) => any;
867
+
868
+ export declare const DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryRequest) => any;
869
+
870
+ export declare const BudgetedAndActualAmountsFilterSensitiveLog: (obj: BudgetedAndActualAmounts) => any;
871
+
872
+ export declare const BudgetPerformanceHistoryFilterSensitiveLog: (obj: BudgetPerformanceHistory) => any;
873
+
874
+ export declare const DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog: (obj: DescribeBudgetPerformanceHistoryResponse) => any;
875
+
876
+ export declare const DescribeBudgetsRequestFilterSensitiveLog: (obj: DescribeBudgetsRequest) => any;
877
+
878
+ export declare const DescribeBudgetsResponseFilterSensitiveLog: (obj: DescribeBudgetsResponse) => any;
879
+
880
+ export declare const DescribeNotificationsForBudgetRequestFilterSensitiveLog: (obj: DescribeNotificationsForBudgetRequest) => any;
881
+
882
+ export declare const DescribeNotificationsForBudgetResponseFilterSensitiveLog: (obj: DescribeNotificationsForBudgetResponse) => any;
883
+
884
+ export declare const DescribeSubscribersForNotificationRequestFilterSensitiveLog: (obj: DescribeSubscribersForNotificationRequest) => any;
885
+
886
+ export declare const DescribeSubscribersForNotificationResponseFilterSensitiveLog: (obj: DescribeSubscribersForNotificationResponse) => any;
887
+
888
+ export declare const ExecuteBudgetActionRequestFilterSensitiveLog: (obj: ExecuteBudgetActionRequest) => any;
889
+
890
+ export declare const ExecuteBudgetActionResponseFilterSensitiveLog: (obj: ExecuteBudgetActionResponse) => any;
891
+
892
+ export declare const UpdateBudgetRequestFilterSensitiveLog: (obj: UpdateBudgetRequest) => any;
893
+
894
+ export declare const UpdateBudgetResponseFilterSensitiveLog: (obj: UpdateBudgetResponse) => any;
895
+
896
+ export declare const UpdateBudgetActionRequestFilterSensitiveLog: (obj: UpdateBudgetActionRequest) => any;
897
+
898
+ export declare const UpdateBudgetActionResponseFilterSensitiveLog: (obj: UpdateBudgetActionResponse) => any;
899
+
900
+ export declare const UpdateNotificationRequestFilterSensitiveLog: (obj: UpdateNotificationRequest) => any;
901
+
902
+ export declare const UpdateNotificationResponseFilterSensitiveLog: (obj: UpdateNotificationResponse) => any;
903
+
904
+ export declare const UpdateSubscriberRequestFilterSensitiveLog: (obj: UpdateSubscriberRequest) => any;
905
+
906
+ export declare const UpdateSubscriberResponseFilterSensitiveLog: (obj: UpdateSubscriberResponse) => any;