@aws-sdk/client-budgets 3.170.0 → 3.178.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 (36) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/Budgets.d.ts +0 -23
  6. package/dist-types/ts3.4/BudgetsClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/CreateBudgetActionCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/UpdateBudgetActionCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/models/BudgetsServiceException.d.ts +0 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +0 -297
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  36. package/package.json +26 -26
@@ -1,12 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { BudgetsServiceException as __BaseException } from "./BudgetsServiceException";
3
-
4
3
  export declare class AccessDeniedException extends __BaseException {
5
4
  readonly name: "AccessDeniedException";
6
5
  readonly $fault: "client";
7
-
8
6
  Message?: string;
9
-
10
7
  constructor(
11
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
12
9
  );
@@ -15,10 +12,8 @@ export declare enum ThresholdType {
15
12
  ABSOLUTE_VALUE = "ABSOLUTE_VALUE",
16
13
  PERCENTAGE = "PERCENTAGE",
17
14
  }
18
-
19
15
  export interface ActionThreshold {
20
16
  ActionThresholdValue: number | undefined;
21
-
22
17
  ActionThresholdType: ThresholdType | string | undefined;
23
18
  }
24
19
  export declare enum ActionType {
@@ -30,40 +25,28 @@ export declare enum ApprovalModel {
30
25
  AUTO = "AUTOMATIC",
31
26
  MANUAL = "MANUAL",
32
27
  }
33
-
34
28
  export interface IamActionDefinition {
35
29
  PolicyArn: string | undefined;
36
-
37
30
  Roles?: string[];
38
-
39
31
  Groups?: string[];
40
-
41
32
  Users?: string[];
42
33
  }
43
-
44
34
  export interface ScpActionDefinition {
45
35
  PolicyId: string | undefined;
46
-
47
36
  TargetIds: string[] | undefined;
48
37
  }
49
38
  export declare enum ActionSubType {
50
39
  STOP_EC2 = "STOP_EC2_INSTANCES",
51
40
  STOP_RDS = "STOP_RDS_INSTANCES",
52
41
  }
53
-
54
42
  export interface SsmActionDefinition {
55
43
  ActionSubType: ActionSubType | string | undefined;
56
-
57
44
  Region: string | undefined;
58
-
59
45
  InstanceIds: string[] | undefined;
60
46
  }
61
-
62
47
  export interface Definition {
63
48
  IamActionDefinition?: IamActionDefinition;
64
-
65
49
  ScpActionDefinition?: ScpActionDefinition;
66
-
67
50
  SsmActionDefinition?: SsmActionDefinition;
68
51
  }
69
52
  export declare enum NotificationType {
@@ -86,38 +69,24 @@ export declare enum SubscriptionType {
86
69
  EMAIL = "EMAIL",
87
70
  SNS = "SNS",
88
71
  }
89
-
90
72
  export interface Subscriber {
91
73
  SubscriptionType: SubscriptionType | string | undefined;
92
-
93
74
  Address: string | undefined;
94
75
  }
95
-
96
76
  export interface Action {
97
77
  ActionId: string | undefined;
98
-
99
78
  BudgetName: string | undefined;
100
-
101
79
  NotificationType: NotificationType | string | undefined;
102
-
103
80
  ActionType: ActionType | string | undefined;
104
-
105
81
  ActionThreshold: ActionThreshold | undefined;
106
-
107
82
  Definition: Definition | undefined;
108
-
109
83
  ExecutionRoleArn: string | undefined;
110
-
111
84
  ApprovalModel: ApprovalModel | string | undefined;
112
-
113
85
  Status: ActionStatus | string | undefined;
114
-
115
86
  Subscribers: Subscriber[] | undefined;
116
87
  }
117
-
118
88
  export interface ActionHistoryDetails {
119
89
  Message: string | undefined;
120
-
121
90
  Action: Action | undefined;
122
91
  }
123
92
  export declare enum EventType {
@@ -127,38 +96,27 @@ export declare enum EventType {
127
96
  System = "SYSTEM",
128
97
  UpdateAction = "UPDATE_ACTION",
129
98
  }
130
-
131
99
  export interface ActionHistory {
132
100
  Timestamp: Date | undefined;
133
-
134
101
  Status: ActionStatus | string | undefined;
135
-
136
102
  EventType: EventType | string | undefined;
137
-
138
103
  ActionHistoryDetails: ActionHistoryDetails | undefined;
139
104
  }
140
105
  export declare enum AutoAdjustType {
141
106
  FORECAST = "FORECAST",
142
107
  HISTORICAL = "HISTORICAL",
143
108
  }
144
-
145
109
  export interface HistoricalOptions {
146
110
  BudgetAdjustmentPeriod: number | undefined;
147
-
148
111
  LookBackAvailablePeriods?: number;
149
112
  }
150
-
151
113
  export interface AutoAdjustData {
152
114
  AutoAdjustType: AutoAdjustType | string | undefined;
153
-
154
115
  HistoricalOptions?: HistoricalOptions;
155
-
156
116
  LastAutoAdjustTime?: Date;
157
117
  }
158
-
159
118
  export interface Spend {
160
119
  Amount: string | undefined;
161
-
162
120
  Unit: string | undefined;
163
121
  }
164
122
  export declare enum BudgetType {
@@ -169,40 +127,25 @@ export declare enum BudgetType {
169
127
  SPUtilization = "SAVINGS_PLANS_UTILIZATION",
170
128
  Usage = "USAGE",
171
129
  }
172
-
173
130
  export interface CalculatedSpend {
174
131
  ActualSpend: Spend | undefined;
175
-
176
132
  ForecastedSpend?: Spend;
177
133
  }
178
-
179
134
  export interface CostTypes {
180
135
  IncludeTax?: boolean;
181
-
182
136
  IncludeSubscription?: boolean;
183
-
184
137
  UseBlended?: boolean;
185
-
186
138
  IncludeRefund?: boolean;
187
-
188
139
  IncludeCredit?: boolean;
189
-
190
140
  IncludeUpfront?: boolean;
191
-
192
141
  IncludeRecurring?: boolean;
193
-
194
142
  IncludeOtherSubscription?: boolean;
195
-
196
143
  IncludeSupport?: boolean;
197
-
198
144
  IncludeDiscount?: boolean;
199
-
200
145
  UseAmortized?: boolean;
201
146
  }
202
-
203
147
  export interface TimePeriod {
204
148
  Start?: Date;
205
-
206
149
  End?: Date;
207
150
  }
208
151
  export declare enum TimeUnit {
@@ -211,28 +154,17 @@ export declare enum TimeUnit {
211
154
  MONTHLY = "MONTHLY",
212
155
  QUARTERLY = "QUARTERLY",
213
156
  }
214
-
215
157
  export interface Budget {
216
158
  BudgetName: string | undefined;
217
-
218
159
  BudgetLimit?: Spend;
219
-
220
160
  PlannedBudgetLimits?: Record<string, Spend>;
221
-
222
161
  CostFilters?: Record<string, string[]>;
223
-
224
162
  CostTypes?: CostTypes;
225
-
226
163
  TimeUnit: TimeUnit | string | undefined;
227
-
228
164
  TimePeriod?: TimePeriod;
229
-
230
165
  CalculatedSpend?: CalculatedSpend;
231
-
232
166
  BudgetType: BudgetType | string | undefined;
233
-
234
167
  LastUpdatedTime?: Date;
235
-
236
168
  AutoAdjustData?: AutoAdjustData;
237
169
  }
238
170
  export declare enum ComparisonOperator {
@@ -244,395 +176,264 @@ export declare enum NotificationState {
244
176
  ALARM = "ALARM",
245
177
  OK = "OK",
246
178
  }
247
-
248
179
  export interface Notification {
249
180
  NotificationType: NotificationType | string | undefined;
250
-
251
181
  ComparisonOperator: ComparisonOperator | string | undefined;
252
-
253
182
  Threshold: number | undefined;
254
-
255
183
  ThresholdType?: ThresholdType | string;
256
-
257
184
  NotificationState?: NotificationState | string;
258
185
  }
259
-
260
186
  export interface NotificationWithSubscribers {
261
187
  Notification: Notification | undefined;
262
-
263
188
  Subscribers: Subscriber[] | undefined;
264
189
  }
265
-
266
190
  export interface CreateBudgetRequest {
267
191
  AccountId: string | undefined;
268
-
269
192
  Budget: Budget | undefined;
270
-
271
193
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
272
194
  }
273
-
274
195
  export interface CreateBudgetResponse {}
275
-
276
196
  export declare class CreationLimitExceededException extends __BaseException {
277
197
  readonly name: "CreationLimitExceededException";
278
198
  readonly $fault: "client";
279
-
280
199
  Message?: string;
281
-
282
200
  constructor(
283
201
  opts: __ExceptionOptionType<CreationLimitExceededException, __BaseException>
284
202
  );
285
203
  }
286
-
287
204
  export declare class DuplicateRecordException extends __BaseException {
288
205
  readonly name: "DuplicateRecordException";
289
206
  readonly $fault: "client";
290
-
291
207
  Message?: string;
292
-
293
208
  constructor(
294
209
  opts: __ExceptionOptionType<DuplicateRecordException, __BaseException>
295
210
  );
296
211
  }
297
-
298
212
  export declare class InternalErrorException extends __BaseException {
299
213
  readonly name: "InternalErrorException";
300
214
  readonly $fault: "server";
301
-
302
215
  Message?: string;
303
-
304
216
  constructor(
305
217
  opts: __ExceptionOptionType<InternalErrorException, __BaseException>
306
218
  );
307
219
  }
308
-
309
220
  export declare class InvalidParameterException extends __BaseException {
310
221
  readonly name: "InvalidParameterException";
311
222
  readonly $fault: "client";
312
-
313
223
  Message?: string;
314
-
315
224
  constructor(
316
225
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
317
226
  );
318
227
  }
319
-
320
228
  export declare class ThrottlingException extends __BaseException {
321
229
  readonly name: "ThrottlingException";
322
230
  readonly $fault: "client";
323
-
324
231
  Message?: string;
325
-
326
232
  constructor(
327
233
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
328
234
  );
329
235
  }
330
236
  export interface CreateBudgetActionRequest {
331
237
  AccountId: string | undefined;
332
-
333
238
  BudgetName: string | undefined;
334
-
335
239
  NotificationType: NotificationType | string | undefined;
336
-
337
240
  ActionType: ActionType | string | undefined;
338
-
339
241
  ActionThreshold: ActionThreshold | undefined;
340
-
341
242
  Definition: Definition | undefined;
342
-
343
243
  ExecutionRoleArn: string | undefined;
344
-
345
244
  ApprovalModel: ApprovalModel | string | undefined;
346
-
347
245
  Subscribers: Subscriber[] | undefined;
348
246
  }
349
247
  export interface CreateBudgetActionResponse {
350
248
  AccountId: string | undefined;
351
-
352
249
  BudgetName: string | undefined;
353
-
354
250
  ActionId: string | undefined;
355
251
  }
356
-
357
252
  export declare class NotFoundException extends __BaseException {
358
253
  readonly name: "NotFoundException";
359
254
  readonly $fault: "client";
360
-
361
255
  Message?: string;
362
-
363
256
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
364
257
  }
365
-
366
258
  export interface CreateNotificationRequest {
367
259
  AccountId: string | undefined;
368
-
369
260
  BudgetName: string | undefined;
370
-
371
261
  Notification: Notification | undefined;
372
-
373
262
  Subscribers: Subscriber[] | undefined;
374
263
  }
375
-
376
264
  export interface CreateNotificationResponse {}
377
-
378
265
  export interface CreateSubscriberRequest {
379
266
  AccountId: string | undefined;
380
-
381
267
  BudgetName: string | undefined;
382
-
383
268
  Notification: Notification | undefined;
384
-
385
269
  Subscriber: Subscriber | undefined;
386
270
  }
387
-
388
271
  export interface CreateSubscriberResponse {}
389
-
390
272
  export interface DeleteBudgetRequest {
391
273
  AccountId: string | undefined;
392
-
393
274
  BudgetName: string | undefined;
394
275
  }
395
-
396
276
  export interface DeleteBudgetResponse {}
397
277
  export interface DeleteBudgetActionRequest {
398
278
  AccountId: string | undefined;
399
-
400
279
  BudgetName: string | undefined;
401
-
402
280
  ActionId: string | undefined;
403
281
  }
404
282
  export interface DeleteBudgetActionResponse {
405
283
  AccountId: string | undefined;
406
-
407
284
  BudgetName: string | undefined;
408
-
409
285
  Action: Action | undefined;
410
286
  }
411
-
412
287
  export declare class ResourceLockedException extends __BaseException {
413
288
  readonly name: "ResourceLockedException";
414
289
  readonly $fault: "client";
415
-
416
290
  Message?: string;
417
-
418
291
  constructor(
419
292
  opts: __ExceptionOptionType<ResourceLockedException, __BaseException>
420
293
  );
421
294
  }
422
-
423
295
  export interface DeleteNotificationRequest {
424
296
  AccountId: string | undefined;
425
-
426
297
  BudgetName: string | undefined;
427
-
428
298
  Notification: Notification | undefined;
429
299
  }
430
-
431
300
  export interface DeleteNotificationResponse {}
432
-
433
301
  export interface DeleteSubscriberRequest {
434
302
  AccountId: string | undefined;
435
-
436
303
  BudgetName: string | undefined;
437
-
438
304
  Notification: Notification | undefined;
439
-
440
305
  Subscriber: Subscriber | undefined;
441
306
  }
442
-
443
307
  export interface DeleteSubscriberResponse {}
444
-
445
308
  export interface DescribeBudgetRequest {
446
309
  AccountId: string | undefined;
447
-
448
310
  BudgetName: string | undefined;
449
311
  }
450
-
451
312
  export interface DescribeBudgetResponse {
452
313
  Budget?: Budget;
453
314
  }
454
315
  export interface DescribeBudgetActionRequest {
455
316
  AccountId: string | undefined;
456
-
457
317
  BudgetName: string | undefined;
458
-
459
318
  ActionId: string | undefined;
460
319
  }
461
320
  export interface DescribeBudgetActionResponse {
462
321
  AccountId: string | undefined;
463
-
464
322
  BudgetName: string | undefined;
465
-
466
323
  Action: Action | undefined;
467
324
  }
468
325
  export interface DescribeBudgetActionHistoriesRequest {
469
326
  AccountId: string | undefined;
470
-
471
327
  BudgetName: string | undefined;
472
-
473
328
  ActionId: string | undefined;
474
-
475
329
  TimePeriod?: TimePeriod;
476
-
477
330
  MaxResults?: number;
478
-
479
331
  NextToken?: string;
480
332
  }
481
333
  export interface DescribeBudgetActionHistoriesResponse {
482
334
  ActionHistories: ActionHistory[] | undefined;
483
-
484
335
  NextToken?: string;
485
336
  }
486
-
487
337
  export declare class InvalidNextTokenException extends __BaseException {
488
338
  readonly name: "InvalidNextTokenException";
489
339
  readonly $fault: "client";
490
-
491
340
  Message?: string;
492
-
493
341
  constructor(
494
342
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
495
343
  );
496
344
  }
497
345
  export interface DescribeBudgetActionsForAccountRequest {
498
346
  AccountId: string | undefined;
499
-
500
347
  MaxResults?: number;
501
-
502
348
  NextToken?: string;
503
349
  }
504
350
  export interface DescribeBudgetActionsForAccountResponse {
505
351
  Actions: Action[] | undefined;
506
-
507
352
  NextToken?: string;
508
353
  }
509
354
  export interface DescribeBudgetActionsForBudgetRequest {
510
355
  AccountId: string | undefined;
511
-
512
356
  BudgetName: string | undefined;
513
-
514
357
  MaxResults?: number;
515
-
516
358
  NextToken?: string;
517
359
  }
518
360
  export interface DescribeBudgetActionsForBudgetResponse {
519
361
  Actions: Action[] | undefined;
520
-
521
362
  NextToken?: string;
522
363
  }
523
364
  export interface DescribeBudgetNotificationsForAccountRequest {
524
365
  AccountId: string | undefined;
525
-
526
366
  MaxResults?: number;
527
-
528
367
  NextToken?: string;
529
368
  }
530
-
531
369
  export interface BudgetNotificationsForAccount {
532
370
  Notifications?: Notification[];
533
-
534
371
  BudgetName?: string;
535
372
  }
536
373
  export interface DescribeBudgetNotificationsForAccountResponse {
537
374
  BudgetNotificationsForAccount?: BudgetNotificationsForAccount[];
538
-
539
375
  NextToken?: string;
540
376
  }
541
-
542
377
  export declare class ExpiredNextTokenException extends __BaseException {
543
378
  readonly name: "ExpiredNextTokenException";
544
379
  readonly $fault: "client";
545
-
546
380
  Message?: string;
547
-
548
381
  constructor(
549
382
  opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>
550
383
  );
551
384
  }
552
385
  export interface DescribeBudgetPerformanceHistoryRequest {
553
386
  AccountId: string | undefined;
554
-
555
387
  BudgetName: string | undefined;
556
-
557
388
  TimePeriod?: TimePeriod;
558
-
559
389
  MaxResults?: number;
560
-
561
390
  NextToken?: string;
562
391
  }
563
-
564
392
  export interface BudgetedAndActualAmounts {
565
393
  BudgetedAmount?: Spend;
566
-
567
394
  ActualAmount?: Spend;
568
-
569
395
  TimePeriod?: TimePeriod;
570
396
  }
571
-
572
397
  export interface BudgetPerformanceHistory {
573
398
  BudgetName?: string;
574
-
575
399
  BudgetType?: BudgetType | string;
576
-
577
400
  CostFilters?: Record<string, string[]>;
578
-
579
401
  CostTypes?: CostTypes;
580
-
581
402
  TimeUnit?: TimeUnit | string;
582
-
583
403
  BudgetedAndActualAmountsList?: BudgetedAndActualAmounts[];
584
404
  }
585
405
  export interface DescribeBudgetPerformanceHistoryResponse {
586
406
  BudgetPerformanceHistory?: BudgetPerformanceHistory;
587
-
588
407
  NextToken?: string;
589
408
  }
590
-
591
409
  export interface DescribeBudgetsRequest {
592
410
  AccountId: string | undefined;
593
-
594
411
  MaxResults?: number;
595
-
596
412
  NextToken?: string;
597
413
  }
598
-
599
414
  export interface DescribeBudgetsResponse {
600
415
  Budgets?: Budget[];
601
-
602
416
  NextToken?: string;
603
417
  }
604
-
605
418
  export interface DescribeNotificationsForBudgetRequest {
606
419
  AccountId: string | undefined;
607
-
608
420
  BudgetName: string | undefined;
609
-
610
421
  MaxResults?: number;
611
-
612
422
  NextToken?: string;
613
423
  }
614
-
615
424
  export interface DescribeNotificationsForBudgetResponse {
616
425
  Notifications?: Notification[];
617
-
618
426
  NextToken?: string;
619
427
  }
620
-
621
428
  export interface DescribeSubscribersForNotificationRequest {
622
429
  AccountId: string | undefined;
623
-
624
430
  BudgetName: string | undefined;
625
-
626
431
  Notification: Notification | undefined;
627
-
628
432
  MaxResults?: number;
629
-
630
433
  NextToken?: string;
631
434
  }
632
-
633
435
  export interface DescribeSubscribersForNotificationResponse {
634
436
  Subscribers?: Subscriber[];
635
-
636
437
  NextToken?: string;
637
438
  }
638
439
  export declare enum ExecutionType {
@@ -643,333 +444,235 @@ export declare enum ExecutionType {
643
444
  }
644
445
  export interface ExecuteBudgetActionRequest {
645
446
  AccountId: string | undefined;
646
-
647
447
  BudgetName: string | undefined;
648
-
649
448
  ActionId: string | undefined;
650
-
651
449
  ExecutionType: ExecutionType | string | undefined;
652
450
  }
653
451
  export interface ExecuteBudgetActionResponse {
654
452
  AccountId: string | undefined;
655
-
656
453
  BudgetName: string | undefined;
657
-
658
454
  ActionId: string | undefined;
659
-
660
455
  ExecutionType: ExecutionType | string | undefined;
661
456
  }
662
-
663
457
  export interface UpdateBudgetRequest {
664
458
  AccountId: string | undefined;
665
-
666
459
  NewBudget: Budget | undefined;
667
460
  }
668
-
669
461
  export interface UpdateBudgetResponse {}
670
462
  export interface UpdateBudgetActionRequest {
671
463
  AccountId: string | undefined;
672
-
673
464
  BudgetName: string | undefined;
674
-
675
465
  ActionId: string | undefined;
676
-
677
466
  NotificationType?: NotificationType | string;
678
-
679
467
  ActionThreshold?: ActionThreshold;
680
-
681
468
  Definition?: Definition;
682
-
683
469
  ExecutionRoleArn?: string;
684
-
685
470
  ApprovalModel?: ApprovalModel | string;
686
-
687
471
  Subscribers?: Subscriber[];
688
472
  }
689
473
  export interface UpdateBudgetActionResponse {
690
474
  AccountId: string | undefined;
691
-
692
475
  BudgetName: string | undefined;
693
-
694
476
  OldAction: Action | undefined;
695
-
696
477
  NewAction: Action | undefined;
697
478
  }
698
-
699
479
  export interface UpdateNotificationRequest {
700
480
  AccountId: string | undefined;
701
-
702
481
  BudgetName: string | undefined;
703
-
704
482
  OldNotification: Notification | undefined;
705
-
706
483
  NewNotification: Notification | undefined;
707
484
  }
708
-
709
485
  export interface UpdateNotificationResponse {}
710
-
711
486
  export interface UpdateSubscriberRequest {
712
487
  AccountId: string | undefined;
713
-
714
488
  BudgetName: string | undefined;
715
-
716
489
  Notification: Notification | undefined;
717
-
718
490
  OldSubscriber: Subscriber | undefined;
719
-
720
491
  NewSubscriber: Subscriber | undefined;
721
492
  }
722
-
723
493
  export interface UpdateSubscriberResponse {}
724
-
725
494
  export declare const ActionThresholdFilterSensitiveLog: (
726
495
  obj: ActionThreshold
727
496
  ) => any;
728
-
729
497
  export declare const IamActionDefinitionFilterSensitiveLog: (
730
498
  obj: IamActionDefinition
731
499
  ) => any;
732
-
733
500
  export declare const ScpActionDefinitionFilterSensitiveLog: (
734
501
  obj: ScpActionDefinition
735
502
  ) => any;
736
-
737
503
  export declare const SsmActionDefinitionFilterSensitiveLog: (
738
504
  obj: SsmActionDefinition
739
505
  ) => any;
740
-
741
506
  export declare const DefinitionFilterSensitiveLog: (obj: Definition) => any;
742
-
743
507
  export declare const SubscriberFilterSensitiveLog: (obj: Subscriber) => any;
744
-
745
508
  export declare const ActionFilterSensitiveLog: (obj: Action) => any;
746
-
747
509
  export declare const ActionHistoryDetailsFilterSensitiveLog: (
748
510
  obj: ActionHistoryDetails
749
511
  ) => any;
750
-
751
512
  export declare const ActionHistoryFilterSensitiveLog: (
752
513
  obj: ActionHistory
753
514
  ) => any;
754
-
755
515
  export declare const HistoricalOptionsFilterSensitiveLog: (
756
516
  obj: HistoricalOptions
757
517
  ) => any;
758
-
759
518
  export declare const AutoAdjustDataFilterSensitiveLog: (
760
519
  obj: AutoAdjustData
761
520
  ) => any;
762
-
763
521
  export declare const SpendFilterSensitiveLog: (obj: Spend) => any;
764
-
765
522
  export declare const CalculatedSpendFilterSensitiveLog: (
766
523
  obj: CalculatedSpend
767
524
  ) => any;
768
-
769
525
  export declare const CostTypesFilterSensitiveLog: (obj: CostTypes) => any;
770
-
771
526
  export declare const TimePeriodFilterSensitiveLog: (obj: TimePeriod) => any;
772
-
773
527
  export declare const BudgetFilterSensitiveLog: (obj: Budget) => any;
774
-
775
528
  export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
776
-
777
529
  export declare const NotificationWithSubscribersFilterSensitiveLog: (
778
530
  obj: NotificationWithSubscribers
779
531
  ) => any;
780
-
781
532
  export declare const CreateBudgetRequestFilterSensitiveLog: (
782
533
  obj: CreateBudgetRequest
783
534
  ) => any;
784
-
785
535
  export declare const CreateBudgetResponseFilterSensitiveLog: (
786
536
  obj: CreateBudgetResponse
787
537
  ) => any;
788
-
789
538
  export declare const CreateBudgetActionRequestFilterSensitiveLog: (
790
539
  obj: CreateBudgetActionRequest
791
540
  ) => any;
792
-
793
541
  export declare const CreateBudgetActionResponseFilterSensitiveLog: (
794
542
  obj: CreateBudgetActionResponse
795
543
  ) => any;
796
-
797
544
  export declare const CreateNotificationRequestFilterSensitiveLog: (
798
545
  obj: CreateNotificationRequest
799
546
  ) => any;
800
-
801
547
  export declare const CreateNotificationResponseFilterSensitiveLog: (
802
548
  obj: CreateNotificationResponse
803
549
  ) => any;
804
-
805
550
  export declare const CreateSubscriberRequestFilterSensitiveLog: (
806
551
  obj: CreateSubscriberRequest
807
552
  ) => any;
808
-
809
553
  export declare const CreateSubscriberResponseFilterSensitiveLog: (
810
554
  obj: CreateSubscriberResponse
811
555
  ) => any;
812
-
813
556
  export declare const DeleteBudgetRequestFilterSensitiveLog: (
814
557
  obj: DeleteBudgetRequest
815
558
  ) => any;
816
-
817
559
  export declare const DeleteBudgetResponseFilterSensitiveLog: (
818
560
  obj: DeleteBudgetResponse
819
561
  ) => any;
820
-
821
562
  export declare const DeleteBudgetActionRequestFilterSensitiveLog: (
822
563
  obj: DeleteBudgetActionRequest
823
564
  ) => any;
824
-
825
565
  export declare const DeleteBudgetActionResponseFilterSensitiveLog: (
826
566
  obj: DeleteBudgetActionResponse
827
567
  ) => any;
828
-
829
568
  export declare const DeleteNotificationRequestFilterSensitiveLog: (
830
569
  obj: DeleteNotificationRequest
831
570
  ) => any;
832
-
833
571
  export declare const DeleteNotificationResponseFilterSensitiveLog: (
834
572
  obj: DeleteNotificationResponse
835
573
  ) => any;
836
-
837
574
  export declare const DeleteSubscriberRequestFilterSensitiveLog: (
838
575
  obj: DeleteSubscriberRequest
839
576
  ) => any;
840
-
841
577
  export declare const DeleteSubscriberResponseFilterSensitiveLog: (
842
578
  obj: DeleteSubscriberResponse
843
579
  ) => any;
844
-
845
580
  export declare const DescribeBudgetRequestFilterSensitiveLog: (
846
581
  obj: DescribeBudgetRequest
847
582
  ) => any;
848
-
849
583
  export declare const DescribeBudgetResponseFilterSensitiveLog: (
850
584
  obj: DescribeBudgetResponse
851
585
  ) => any;
852
-
853
586
  export declare const DescribeBudgetActionRequestFilterSensitiveLog: (
854
587
  obj: DescribeBudgetActionRequest
855
588
  ) => any;
856
-
857
589
  export declare const DescribeBudgetActionResponseFilterSensitiveLog: (
858
590
  obj: DescribeBudgetActionResponse
859
591
  ) => any;
860
-
861
592
  export declare const DescribeBudgetActionHistoriesRequestFilterSensitiveLog: (
862
593
  obj: DescribeBudgetActionHistoriesRequest
863
594
  ) => any;
864
-
865
595
  export declare const DescribeBudgetActionHistoriesResponseFilterSensitiveLog: (
866
596
  obj: DescribeBudgetActionHistoriesResponse
867
597
  ) => any;
868
-
869
598
  export declare const DescribeBudgetActionsForAccountRequestFilterSensitiveLog: (
870
599
  obj: DescribeBudgetActionsForAccountRequest
871
600
  ) => any;
872
-
873
601
  export declare const DescribeBudgetActionsForAccountResponseFilterSensitiveLog: (
874
602
  obj: DescribeBudgetActionsForAccountResponse
875
603
  ) => any;
876
-
877
604
  export declare const DescribeBudgetActionsForBudgetRequestFilterSensitiveLog: (
878
605
  obj: DescribeBudgetActionsForBudgetRequest
879
606
  ) => any;
880
-
881
607
  export declare const DescribeBudgetActionsForBudgetResponseFilterSensitiveLog: (
882
608
  obj: DescribeBudgetActionsForBudgetResponse
883
609
  ) => any;
884
-
885
610
  export declare const DescribeBudgetNotificationsForAccountRequestFilterSensitiveLog: (
886
611
  obj: DescribeBudgetNotificationsForAccountRequest
887
612
  ) => any;
888
-
889
613
  export declare const BudgetNotificationsForAccountFilterSensitiveLog: (
890
614
  obj: BudgetNotificationsForAccount
891
615
  ) => any;
892
-
893
616
  export declare const DescribeBudgetNotificationsForAccountResponseFilterSensitiveLog: (
894
617
  obj: DescribeBudgetNotificationsForAccountResponse
895
618
  ) => any;
896
-
897
619
  export declare const DescribeBudgetPerformanceHistoryRequestFilterSensitiveLog: (
898
620
  obj: DescribeBudgetPerformanceHistoryRequest
899
621
  ) => any;
900
-
901
622
  export declare const BudgetedAndActualAmountsFilterSensitiveLog: (
902
623
  obj: BudgetedAndActualAmounts
903
624
  ) => any;
904
-
905
625
  export declare const BudgetPerformanceHistoryFilterSensitiveLog: (
906
626
  obj: BudgetPerformanceHistory
907
627
  ) => any;
908
-
909
628
  export declare const DescribeBudgetPerformanceHistoryResponseFilterSensitiveLog: (
910
629
  obj: DescribeBudgetPerformanceHistoryResponse
911
630
  ) => any;
912
-
913
631
  export declare const DescribeBudgetsRequestFilterSensitiveLog: (
914
632
  obj: DescribeBudgetsRequest
915
633
  ) => any;
916
-
917
634
  export declare const DescribeBudgetsResponseFilterSensitiveLog: (
918
635
  obj: DescribeBudgetsResponse
919
636
  ) => any;
920
-
921
637
  export declare const DescribeNotificationsForBudgetRequestFilterSensitiveLog: (
922
638
  obj: DescribeNotificationsForBudgetRequest
923
639
  ) => any;
924
-
925
640
  export declare const DescribeNotificationsForBudgetResponseFilterSensitiveLog: (
926
641
  obj: DescribeNotificationsForBudgetResponse
927
642
  ) => any;
928
-
929
643
  export declare const DescribeSubscribersForNotificationRequestFilterSensitiveLog: (
930
644
  obj: DescribeSubscribersForNotificationRequest
931
645
  ) => any;
932
-
933
646
  export declare const DescribeSubscribersForNotificationResponseFilterSensitiveLog: (
934
647
  obj: DescribeSubscribersForNotificationResponse
935
648
  ) => any;
936
-
937
649
  export declare const ExecuteBudgetActionRequestFilterSensitiveLog: (
938
650
  obj: ExecuteBudgetActionRequest
939
651
  ) => any;
940
-
941
652
  export declare const ExecuteBudgetActionResponseFilterSensitiveLog: (
942
653
  obj: ExecuteBudgetActionResponse
943
654
  ) => any;
944
-
945
655
  export declare const UpdateBudgetRequestFilterSensitiveLog: (
946
656
  obj: UpdateBudgetRequest
947
657
  ) => any;
948
-
949
658
  export declare const UpdateBudgetResponseFilterSensitiveLog: (
950
659
  obj: UpdateBudgetResponse
951
660
  ) => any;
952
-
953
661
  export declare const UpdateBudgetActionRequestFilterSensitiveLog: (
954
662
  obj: UpdateBudgetActionRequest
955
663
  ) => any;
956
-
957
664
  export declare const UpdateBudgetActionResponseFilterSensitiveLog: (
958
665
  obj: UpdateBudgetActionResponse
959
666
  ) => any;
960
-
961
667
  export declare const UpdateNotificationRequestFilterSensitiveLog: (
962
668
  obj: UpdateNotificationRequest
963
669
  ) => any;
964
-
965
670
  export declare const UpdateNotificationResponseFilterSensitiveLog: (
966
671
  obj: UpdateNotificationResponse
967
672
  ) => any;
968
-
969
673
  export declare const UpdateSubscriberRequestFilterSensitiveLog: (
970
674
  obj: UpdateSubscriberRequest
971
675
  ) => any;
972
-
973
676
  export declare const UpdateSubscriberResponseFilterSensitiveLog: (
974
677
  obj: UpdateSubscriberResponse
975
678
  ) => any;