@aws-sdk/client-budgets 3.379.1 → 3.383.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 (30) hide show
  1. package/dist-cjs/endpoint/ruleset.js +3 -3
  2. package/dist-es/endpoint/ruleset.js +3 -3
  3. package/dist-types/Budgets.d.ts +26 -26
  4. package/dist-types/BudgetsClient.d.ts +26 -26
  5. package/dist-types/commands/CreateBudgetActionCommand.d.ts +8 -9
  6. package/dist-types/commands/CreateBudgetCommand.d.ts +13 -14
  7. package/dist-types/commands/CreateNotificationCommand.d.ts +7 -8
  8. package/dist-types/commands/CreateSubscriberCommand.d.ts +7 -8
  9. package/dist-types/commands/DeleteBudgetActionCommand.d.ts +9 -10
  10. package/dist-types/commands/DeleteBudgetCommand.d.ts +5 -6
  11. package/dist-types/commands/DeleteNotificationCommand.d.ts +9 -10
  12. package/dist-types/commands/DeleteSubscriberCommand.d.ts +10 -11
  13. package/dist-types/commands/DescribeBudgetActionCommand.d.ts +9 -10
  14. package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +11 -12
  15. package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +9 -10
  16. package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +9 -10
  17. package/dist-types/commands/DescribeBudgetCommand.d.ts +8 -9
  18. package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +6 -7
  19. package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +4 -5
  20. package/dist-types/commands/DescribeBudgetsCommand.d.ts +8 -9
  21. package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +6 -7
  22. package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +7 -8
  23. package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +4 -5
  24. package/dist-types/commands/UpdateBudgetActionCommand.d.ts +21 -22
  25. package/dist-types/commands/UpdateBudgetCommand.d.ts +8 -9
  26. package/dist-types/commands/UpdateNotificationCommand.d.ts +10 -11
  27. package/dist-types/commands/UpdateSubscriberCommand.d.ts +8 -9
  28. package/dist-types/index.d.ts +26 -26
  29. package/dist-types/models/models_0.d.ts +327 -89
  30. package/package.json +5 -5
@@ -8,6 +8,7 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
9
9
  readonly $fault: "client";
10
10
  /**
11
+ * @public
11
12
  * <p>The error message the exception carries.</p>
12
13
  */
13
14
  Message?: string;
@@ -34,10 +35,12 @@ export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
34
35
  */
35
36
  export interface ActionThreshold {
36
37
  /**
38
+ * @public
37
39
  * <p> The threshold of a notification.</p>
38
40
  */
39
41
  ActionThresholdValue: number | undefined;
40
42
  /**
43
+ * @public
41
44
  * <p> The type of threshold for a notification.</p>
42
45
  */
43
46
  ActionThresholdType: ThresholdType | string | undefined;
@@ -73,18 +76,22 @@ export type ApprovalModel = (typeof ApprovalModel)[keyof typeof ApprovalModel];
73
76
  */
74
77
  export interface IamActionDefinition {
75
78
  /**
79
+ * @public
76
80
  * <p>The Amazon Resource Name (ARN) of the policy to be attached. </p>
77
81
  */
78
82
  PolicyArn: string | undefined;
79
83
  /**
84
+ * @public
80
85
  * <p>A list of roles to be attached. There must be at least one role. </p>
81
86
  */
82
87
  Roles?: string[];
83
88
  /**
89
+ * @public
84
90
  * <p>A list of groups to be attached. There must be at least one group. </p>
85
91
  */
86
92
  Groups?: string[];
87
93
  /**
94
+ * @public
88
95
  * <p>A list of users to be attached. There must be at least one user. </p>
89
96
  */
90
97
  Users?: string[];
@@ -95,10 +102,12 @@ export interface IamActionDefinition {
95
102
  */
96
103
  export interface ScpActionDefinition {
97
104
  /**
105
+ * @public
98
106
  * <p>The policy ID attached. </p>
99
107
  */
100
108
  PolicyId: string | undefined;
101
109
  /**
110
+ * @public
102
111
  * <p>A list of target IDs. </p>
103
112
  */
104
113
  TargetIds: string[] | undefined;
@@ -121,14 +130,17 @@ export type ActionSubType = (typeof ActionSubType)[keyof typeof ActionSubType];
121
130
  */
122
131
  export interface SsmActionDefinition {
123
132
  /**
133
+ * @public
124
134
  * <p>The action subType. </p>
125
135
  */
126
136
  ActionSubType: ActionSubType | string | undefined;
127
137
  /**
138
+ * @public
128
139
  * <p>The Region to run the SSM document. </p>
129
140
  */
130
141
  Region: string | undefined;
131
142
  /**
143
+ * @public
132
144
  * <p>The EC2 and RDS instance IDs. </p>
133
145
  */
134
146
  InstanceIds: string[] | undefined;
@@ -139,14 +151,17 @@ export interface SsmActionDefinition {
139
151
  */
140
152
  export interface Definition {
141
153
  /**
154
+ * @public
142
155
  * <p>The Identity and Access Management (IAM) action definition details. </p>
143
156
  */
144
157
  IamActionDefinition?: IamActionDefinition;
145
158
  /**
159
+ * @public
146
160
  * <p>The service control policies (SCPs) action definition details. </p>
147
161
  */
148
162
  ScpActionDefinition?: ScpActionDefinition;
149
163
  /**
164
+ * @public
150
165
  * <p>The Amazon Web Services Systems Manager (SSM) action definition details. </p>
151
166
  */
152
167
  SsmActionDefinition?: SsmActionDefinition;
@@ -198,26 +213,28 @@ export type SubscriptionType = (typeof SubscriptionType)[keyof typeof Subscripti
198
213
  /**
199
214
  * @public
200
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>
201
- * <p>For example, an email subscriber has the following parameters:</p>
202
- * <ul>
216
+ * <p>For example, an email subscriber has the following parameters:</p>
217
+ * <ul>
203
218
  * <li>
204
- * <p>A <code>subscriptionType</code> of <code>EMAIL</code>
219
+ * <p>A <code>subscriptionType</code> of <code>EMAIL</code>
205
220
  * </p>
206
- * </li>
221
+ * </li>
207
222
  * <li>
208
- * <p>An <code>address</code> of <code>example@example.com</code>
223
+ * <p>An <code>address</code> of <code>example@example.com</code>
209
224
  * </p>
210
- * </li>
225
+ * </li>
211
226
  * </ul>
212
227
  */
213
228
  export interface Subscriber {
214
229
  /**
230
+ * @public
215
231
  * <p>The type of notification that Amazon Web Services sends to a subscriber.</p>
216
232
  */
217
233
  SubscriptionType: SubscriptionType | string | undefined;
218
234
  /**
235
+ * @public
219
236
  * <p>The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email.</p>
220
- * <p>When you create a subscriber, the value of <code>Address</code> can't contain line breaks.</p>
237
+ * <p>When you create a subscriber, the value of <code>Address</code> can't contain line breaks.</p>
221
238
  */
222
239
  Address: string | undefined;
223
240
  }
@@ -227,44 +244,55 @@ export interface Subscriber {
227
244
  */
228
245
  export interface Action {
229
246
  /**
247
+ * @public
230
248
  * <p>A system-generated universally unique identifier (UUID) for the action. </p>
231
249
  */
232
250
  ActionId: string | undefined;
233
251
  /**
234
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
252
+ * @public
253
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
254
+ * substring, aren't allowed.</p>
235
255
  */
236
256
  BudgetName: string | undefined;
237
257
  /**
258
+ * @public
238
259
  * <p> The type of a notification. It must be ACTUAL or FORECASTED.</p>
239
260
  */
240
261
  NotificationType: NotificationType | string | undefined;
241
262
  /**
263
+ * @public
242
264
  * <p>The type of action. This defines the type of tasks that can be carried out by this action.
243
265
  * This field also determines the format for definition. </p>
244
266
  */
245
267
  ActionType: ActionType | string | undefined;
246
268
  /**
269
+ * @public
247
270
  * <p>The trigger threshold of the action. </p>
248
271
  */
249
272
  ActionThreshold: ActionThreshold | undefined;
250
273
  /**
274
+ * @public
251
275
  * <p>Where you specify all of the type-specific parameters. </p>
252
276
  */
253
277
  Definition: Definition | undefined;
254
278
  /**
279
+ * @public
255
280
  * <p>The role passed for action execution and reversion. Roles and actions must be in the same
256
281
  * account. </p>
257
282
  */
258
283
  ExecutionRoleArn: string | undefined;
259
284
  /**
285
+ * @public
260
286
  * <p>This specifies if the action needs manual or automatic approval. </p>
261
287
  */
262
288
  ApprovalModel: ApprovalModel | string | undefined;
263
289
  /**
290
+ * @public
264
291
  * <p>The status of the action. </p>
265
292
  */
266
293
  Status: ActionStatus | string | undefined;
267
294
  /**
295
+ * @public
268
296
  * <p> A list of subscribers.</p>
269
297
  */
270
298
  Subscribers: Subscriber[] | undefined;
@@ -275,10 +303,12 @@ export interface Action {
275
303
  */
276
304
  export interface ActionHistoryDetails {
277
305
  /**
306
+ * @public
278
307
  * <p> A generic string.</p>
279
308
  */
280
309
  Message: string | undefined;
281
310
  /**
311
+ * @public
282
312
  * <p>The budget action resource. </p>
283
313
  */
284
314
  Action: Action | undefined;
@@ -304,19 +334,23 @@ export type EventType = (typeof EventType)[keyof typeof EventType];
304
334
  */
305
335
  export interface ActionHistory {
306
336
  /**
337
+ * @public
307
338
  * <p> A generic time stamp. In Java, it's transformed to a <code>Date</code> object.</p>
308
339
  */
309
340
  Timestamp: Date | undefined;
310
341
  /**
342
+ * @public
311
343
  * <p>The status of action at the time of the event. </p>
312
344
  */
313
345
  Status: ActionStatus | string | undefined;
314
346
  /**
347
+ * @public
315
348
  * <p>This distinguishes between whether the events are triggered by the user or are generated by
316
349
  * the system. </p>
317
350
  */
318
351
  EventType: EventType | string | undefined;
319
352
  /**
353
+ * @public
320
354
  * <p>The description of the details for the event. </p>
321
355
  */
322
356
  ActionHistoryDetails: ActionHistoryDetails | undefined;
@@ -339,8 +373,9 @@ export type AutoAdjustType = (typeof AutoAdjustType)[keyof typeof AutoAdjustType
339
373
  */
340
374
  export interface HistoricalOptions {
341
375
  /**
376
+ * @public
342
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>
343
- * <ul>
378
+ * <ul>
344
379
  * <li>
345
380
  * <p>For the <code>DAILY</code> granularity, the maximum value is <code>60</code>.</p>
346
381
  * </li>
@@ -357,9 +392,10 @@ export interface HistoricalOptions {
357
392
  */
358
393
  BudgetAdjustmentPeriod: number | undefined;
359
394
  /**
395
+ * @public
360
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>
361
- * <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>
362
- * <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>
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>
363
399
  */
364
400
  LookBackAvailablePeriods?: number;
365
401
  }
@@ -369,14 +405,17 @@ export interface HistoricalOptions {
369
405
  */
370
406
  export interface AutoAdjustData {
371
407
  /**
408
+ * @public
372
409
  * <p>The string that defines whether your budget auto-adjusts based on historical or forecasted data.</p>
373
410
  */
374
411
  AutoAdjustType: AutoAdjustType | string | undefined;
375
412
  /**
413
+ * @public
376
414
  * <p>The parameters that define or describe the historical data that your auto-adjusting budget is based on.</p>
377
415
  */
378
416
  HistoricalOptions?: HistoricalOptions;
379
417
  /**
418
+ * @public
380
419
  * <p>The last time that your budget was auto-adjusted.</p>
381
420
  */
382
421
  LastAutoAdjustTime?: Date;
@@ -384,26 +423,28 @@ export interface AutoAdjustData {
384
423
  /**
385
424
  * @public
386
425
  * <p>The amount of cost or usage that's measured for a budget.</p>
387
- * <p>For example, a <code>Spend</code> for <code>3 GB</code> of S3 usage has the following
426
+ * <p>For example, a <code>Spend</code> for <code>3 GB</code> of S3 usage has the following
388
427
  * parameters:</p>
389
- * <ul>
428
+ * <ul>
390
429
  * <li>
391
- * <p>An <code>Amount</code> of <code>3</code>
430
+ * <p>An <code>Amount</code> of <code>3</code>
392
431
  * </p>
393
- * </li>
432
+ * </li>
394
433
  * <li>
395
- * <p>A <code>unit</code> of <code>GB</code>
434
+ * <p>A <code>unit</code> of <code>GB</code>
396
435
  * </p>
397
- * </li>
436
+ * </li>
398
437
  * </ul>
399
438
  */
400
439
  export interface Spend {
401
440
  /**
441
+ * @public
402
442
  * <p>The cost or usage amount that's associated with a budget forecast, actual spend, or budget
403
443
  * threshold.</p>
404
444
  */
405
445
  Amount: string | undefined;
406
446
  /**
447
+ * @public
407
448
  * <p>The unit of measurement that's used for the budget forecast, actual spend, or budget
408
449
  * threshold, such as USD or GBP.</p>
409
450
  */
@@ -431,16 +472,18 @@ export type BudgetType = (typeof BudgetType)[keyof typeof BudgetType];
431
472
  * how much you've used, cost, usage, RI units, or Savings Plans units and the
432
473
  * <code>forecastedSpend</code> tracks how much that you're predicted to spend based on
433
474
  * your historical usage profile.</p>
434
- * <p>For example, if it's the 20th of the month and you have spent <code>50</code> dollars on
475
+ * <p>For example, if it's the 20th of the month and you have spent <code>50</code> dollars on
435
476
  * Amazon EC2, your <code>actualSpend</code> is <code>50 USD</code>, and your
436
477
  * <code>forecastedSpend</code> is <code>75 USD</code>.</p>
437
478
  */
438
479
  export interface CalculatedSpend {
439
480
  /**
481
+ * @public
440
482
  * <p>The amount of cost, usage, RI units, or Savings Plans units that you used.</p>
441
483
  */
442
484
  ActualSpend: Spend | undefined;
443
485
  /**
486
+ * @public
444
487
  * <p>The amount of cost, usage, RI units, or Savings Plans units that you're forecasted to
445
488
  * use.</p>
446
489
  */
@@ -449,65 +492,76 @@ export interface CalculatedSpend {
449
492
  /**
450
493
  * @public
451
494
  * <p>The types of cost that are included in a <code>COST</code> budget, such as tax and subscriptions.</p>
452
- * <p>
495
+ * <p>
453
496
  * <code>USAGE</code>, <code>RI_UTILIZATION</code>, <code>RI_COVERAGE</code>,
454
497
  * <code>SAVINGS_PLANS_UTILIZATION</code>, and <code>SAVINGS_PLANS_COVERAGE</code>
455
498
  * budgets don't have <code>CostTypes</code>.</p>
456
499
  */
457
500
  export interface CostTypes {
458
501
  /**
502
+ * @public
459
503
  * <p>Specifies whether a budget includes taxes.</p>
460
- * <p>The default value is <code>true</code>.</p>
504
+ * <p>The default value is <code>true</code>.</p>
461
505
  */
462
506
  IncludeTax?: boolean;
463
507
  /**
508
+ * @public
464
509
  * <p>Specifies whether a budget includes subscriptions.</p>
465
- * <p>The default value is <code>true</code>.</p>
510
+ * <p>The default value is <code>true</code>.</p>
466
511
  */
467
512
  IncludeSubscription?: boolean;
468
513
  /**
514
+ * @public
469
515
  * <p>Specifies whether a budget uses a blended rate.</p>
470
- * <p>The default value is <code>false</code>.</p>
516
+ * <p>The default value is <code>false</code>.</p>
471
517
  */
472
518
  UseBlended?: boolean;
473
519
  /**
520
+ * @public
474
521
  * <p>Specifies whether a budget includes refunds.</p>
475
- * <p>The default value is <code>true</code>.</p>
522
+ * <p>The default value is <code>true</code>.</p>
476
523
  */
477
524
  IncludeRefund?: boolean;
478
525
  /**
526
+ * @public
479
527
  * <p>Specifies whether a budget includes credits.</p>
480
- * <p>The default value is <code>true</code>.</p>
528
+ * <p>The default value is <code>true</code>.</p>
481
529
  */
482
530
  IncludeCredit?: boolean;
483
531
  /**
532
+ * @public
484
533
  * <p>Specifies whether a budget includes upfront RI costs.</p>
485
- * <p>The default value is <code>true</code>.</p>
534
+ * <p>The default value is <code>true</code>.</p>
486
535
  */
487
536
  IncludeUpfront?: boolean;
488
537
  /**
538
+ * @public
489
539
  * <p>Specifies whether a budget includes recurring fees such as monthly RI fees.</p>
490
- * <p>The default value is <code>true</code>.</p>
540
+ * <p>The default value is <code>true</code>.</p>
491
541
  */
492
542
  IncludeRecurring?: boolean;
493
543
  /**
544
+ * @public
494
545
  * <p>Specifies whether a budget includes non-RI subscription costs.</p>
495
- * <p>The default value is <code>true</code>.</p>
546
+ * <p>The default value is <code>true</code>.</p>
496
547
  */
497
548
  IncludeOtherSubscription?: boolean;
498
549
  /**
550
+ * @public
499
551
  * <p>Specifies whether a budget includes support subscription fees.</p>
500
- * <p>The default value is <code>true</code>.</p>
552
+ * <p>The default value is <code>true</code>.</p>
501
553
  */
502
554
  IncludeSupport?: boolean;
503
555
  /**
556
+ * @public
504
557
  * <p>Specifies whether a budget includes discounts.</p>
505
- * <p>The default value is <code>true</code>.</p>
558
+ * <p>The default value is <code>true</code>.</p>
506
559
  */
507
560
  IncludeDiscount?: boolean;
508
561
  /**
562
+ * @public
509
563
  * <p>Specifies whether a budget uses the amortized rate.</p>
510
- * <p>The default value is <code>false</code>.</p>
564
+ * <p>The default value is <code>false</code>.</p>
511
565
  */
512
566
  UseAmortized?: boolean;
513
567
  }
@@ -518,13 +572,15 @@ export interface CostTypes {
518
572
  */
519
573
  export interface TimePeriod {
520
574
  /**
575
+ * @public
521
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>
522
- * <p>You can change your start date with the <code>UpdateBudget</code> operation.</p>
577
+ * <p>You can change your start date with the <code>UpdateBudget</code> operation.</p>
523
578
  */
524
579
  Start?: Date;
525
580
  /**
581
+ * @public
526
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>
527
- * <p>After the end date, Amazon Web Services deletes the budget and all the associated
583
+ * <p>After the end date, Amazon Web Services deletes the budget and all the associated
528
584
  * notifications and subscribers. You can change your end date with the
529
585
  * <code>UpdateBudget</code> operation.</p>
530
586
  */
@@ -547,20 +603,24 @@ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
547
603
  /**
548
604
  * @public
549
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>
550
- * <p>This is the Amazon Resource Name (ARN) pattern for a budget: </p>
551
- * <p>
606
+ * <p>This is the Amazon Resource Name (ARN) pattern for a budget: </p>
607
+ * <p>
552
608
  * <code>arn:aws:budgets::AccountId:budget/budgetName</code>
553
609
  * </p>
554
610
  */
555
611
  export interface Budget {
556
612
  /**
557
- * <p>The name of a budget. The name must be unique within an account. The <code>:</code> and <code>\</code> characters aren't allowed in <code>BudgetName</code>.</p>
613
+ * @public
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>
558
617
  */
559
618
  BudgetName: string | undefined;
560
619
  /**
620
+ * @public
561
621
  * <p>The total amount of cost, usage, RI utilization, RI coverage, Savings Plans utilization, or
562
622
  * Savings Plans coverage that you want to track with your budget.</p>
563
- * <p>
623
+ * <p>
564
624
  * <code>BudgetLimit</code> is required for cost or usage budgets, but optional for RI or
565
625
  * Savings Plans utilization or coverage budgets. RI and Savings Plans utilization or
566
626
  * coverage budgets default to <code>100</code>. This is the only valid value for RI or
@@ -570,21 +630,22 @@ export interface Budget {
570
630
  */
571
631
  BudgetLimit?: Spend;
572
632
  /**
633
+ * @public
573
634
  * <p>A map containing multiple <code>BudgetLimit</code>, including current or future limits.</p>
574
- * <p>
635
+ * <p>
575
636
  * <code>PlannedBudgetLimits</code> is available for cost or usage budget and supports both
576
637
  * monthly and quarterly <code>TimeUnit</code>. </p>
577
- * <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>
578
- * <p>For quarterly budgets, provide four quarters of <code>PlannedBudgetLimits</code> value
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
579
640
  * entries in standard calendar quarter increments. This must start from the current
580
641
  * quarter and include the next three quarters. The <code>key</code> is the start of the
581
642
  * quarter, <code>UTC</code> in epoch seconds. </p>
582
- * <p>If the planned budget expires before 12 months for monthly or four quarters for quarterly,
643
+ * <p>If the planned budget expires before 12 months for monthly or four quarters for quarterly,
583
644
  * provide the <code>PlannedBudgetLimits</code> values only for the remaining
584
645
  * periods.</p>
585
- * <p>If the budget begins at a date in the future, provide <code>PlannedBudgetLimits</code> values from the start date of the budget. </p>
586
- * <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>
587
- * <p>
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>
588
649
  * <code>DescribeBudget</code> and <code>DescribeBudgets</code> response along with
589
650
  * <code>PlannedBudgetLimits</code> also contain <code>BudgetLimit</code> representing
590
651
  * the current month or quarter limit present in <code>PlannedBudgetLimits</code>. This
@@ -595,67 +656,75 @@ export interface Budget {
595
656
  */
596
657
  PlannedBudgetLimits?: Record<string, Spend>;
597
658
  /**
659
+ * @public
598
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>
599
- * <p>Amazon Web Services Budgets supports the following services as a <code>Service</code> filter for RI budgets:</p>
600
- * <ul>
661
+ * <p>Amazon Web Services Budgets supports the following services as a <code>Service</code> filter for RI budgets:</p>
662
+ * <ul>
601
663
  * <li>
602
- * <p>Amazon EC2</p>
603
- * </li>
664
+ * <p>Amazon EC2</p>
665
+ * </li>
604
666
  * <li>
605
- * <p>Amazon Redshift</p>
606
- * </li>
667
+ * <p>Amazon Redshift</p>
668
+ * </li>
607
669
  * <li>
608
- * <p>Amazon Relational Database Service</p>
609
- * </li>
670
+ * <p>Amazon Relational Database Service</p>
671
+ * </li>
610
672
  * <li>
611
- * <p>Amazon ElastiCache</p>
612
- * </li>
673
+ * <p>Amazon ElastiCache</p>
674
+ * </li>
613
675
  * <li>
614
- * <p>Amazon OpenSearch Service</p>
615
- * </li>
676
+ * <p>Amazon OpenSearch Service</p>
677
+ * </li>
616
678
  * </ul>
617
679
  */
618
680
  CostFilters?: Record<string, string[]>;
619
681
  /**
682
+ * @public
620
683
  * <p>The types of costs that are included in this <code>COST</code> budget.</p>
621
- * <p>
684
+ * <p>
622
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>
623
686
  */
624
687
  CostTypes?: CostTypes;
625
688
  /**
689
+ * @public
626
690
  * <p>The length of time until a budget resets the actual and forecasted spend.</p>
627
691
  */
628
692
  TimeUnit: TimeUnit | string | undefined;
629
693
  /**
694
+ * @public
630
695
  * <p>The period of time that's covered by a budget. You setthe start date and end date. The start
631
696
  * date must come before the end date. The end date must come before <code>06/15/87 00:00
632
697
  * UTC</code>. </p>
633
- * <p>If you create your budget and don't specify a start date, Amazon Web Services defaults to the
698
+ * <p>If you create your budget and don't specify a start date, Amazon Web Services defaults to the
634
699
  * start of your chosen time period (DAILY, MONTHLY, QUARTERLY, or ANNUALLY). For example,
635
700
  * if you created your budget on January 24, 2018, chose <code>DAILY</code>, and didn't set
636
701
  * a start date, Amazon Web Services set your start date to <code>01/24/18 00:00 UTC</code>.
637
702
  * If you chose <code>MONTHLY</code>, Amazon Web Services set your start date to
638
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
639
704
  * the Billing and Cost Management console and the API. </p>
640
- * <p>You can change either date with the <code>UpdateBudget</code> operation.</p>
641
- * <p>After the end date, Amazon Web Services deletes the budget and all the associated
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
642
707
  * notifications and subscribers.</p>
643
708
  */
644
709
  TimePeriod?: TimePeriod;
645
710
  /**
711
+ * @public
646
712
  * <p>The actual and forecasted cost or usage that the budget tracks.</p>
647
713
  */
648
714
  CalculatedSpend?: CalculatedSpend;
649
715
  /**
716
+ * @public
650
717
  * <p>Specifies whether this budget tracks costs, usage, RI utilization, RI coverage, Savings
651
718
  * Plans utilization, or Savings Plans coverage.</p>
652
719
  */
653
720
  BudgetType: BudgetType | string | undefined;
654
721
  /**
722
+ * @public
655
723
  * <p>The last time that you updated this budget.</p>
656
724
  */
657
725
  LastUpdatedTime?: Date;
658
726
  /**
727
+ * @public
659
728
  * <p>The parameters that determine the budget amount for an auto-adjusting budget.</p>
660
729
  */
661
730
  AutoAdjustData?: AutoAdjustData;
@@ -688,48 +757,53 @@ export type NotificationState = (typeof NotificationState)[keyof typeof Notifica
688
757
  /**
689
758
  * @public
690
759
  * <p>A notification that's associated with a budget. A budget can have up to ten notifications. </p>
691
- * <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>
692
- * <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>
693
- * <ul>
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>
694
763
  * <li>
695
- * <p>A notificationType of <code>ACTUAL</code>
764
+ * <p>A notificationType of <code>ACTUAL</code>
696
765
  * </p>
697
- * </li>
766
+ * </li>
698
767
  * <li>
699
- * <p>A <code>thresholdType</code> of <code>PERCENTAGE</code>
768
+ * <p>A <code>thresholdType</code> of <code>PERCENTAGE</code>
700
769
  * </p>
701
- * </li>
770
+ * </li>
702
771
  * <li>
703
- * <p>A <code>comparisonOperator</code> of <code>GREATER_THAN</code>
772
+ * <p>A <code>comparisonOperator</code> of <code>GREATER_THAN</code>
704
773
  * </p>
705
- * </li>
774
+ * </li>
706
775
  * <li>
707
- * <p>A notification <code>threshold</code> of <code>80</code>
776
+ * <p>A notification <code>threshold</code> of <code>80</code>
708
777
  * </p>
709
- * </li>
778
+ * </li>
710
779
  * </ul>
711
780
  */
712
781
  export interface Notification {
713
782
  /**
783
+ * @public
714
784
  * <p>Specifies whether the notification is for how much you have spent (<code>ACTUAL</code>) or
715
785
  * for how much that you're forecasted to spend (<code>FORECASTED</code>).</p>
716
786
  */
717
787
  NotificationType: NotificationType | string | undefined;
718
788
  /**
789
+ * @public
719
790
  * <p>The comparison that's used for this notification.</p>
720
791
  */
721
792
  ComparisonOperator: ComparisonOperator | string | undefined;
722
793
  /**
794
+ * @public
723
795
  * <p>The threshold that's associated with a notification. Thresholds are always a percentage, and
724
796
  * many customers find value being alerted between 50% - 200% of the budgeted amount. The
725
797
  * maximum limit for your threshold is 1,000,000% above the budgeted amount.</p>
726
798
  */
727
799
  Threshold: number | undefined;
728
800
  /**
801
+ * @public
729
802
  * <p>The type of threshold for a notification. For <code>ABSOLUTE_VALUE</code> thresholds, Amazon Web Services notifies you when you go over or are forecasted to go over your total cost threshold. For <code>PERCENTAGE</code> thresholds, Amazon Web Services notifies you when you go over or are forecasted to go over a certain percentage of your forecasted spend. For example, if you have a budget for 200 dollars and you have a <code>PERCENTAGE</code> threshold of 80%, Amazon Web Services notifies you when you go over 160 dollars.</p>
730
803
  */
731
804
  ThresholdType?: ThresholdType | string;
732
805
  /**
806
+ * @public
733
807
  * <p>Specifies whether this notification is in alarm. If a budget notification is in the
734
808
  * <code>ALARM</code> state, you passed the set threshold for the budget.</p>
735
809
  */
@@ -741,10 +815,12 @@ export interface Notification {
741
815
  */
742
816
  export interface NotificationWithSubscribers {
743
817
  /**
818
+ * @public
744
819
  * <p>The notification that's associated with a budget.</p>
745
820
  */
746
821
  Notification: Notification | undefined;
747
822
  /**
823
+ * @public
748
824
  * <p>A list of subscribers who are subscribed to this notification.</p>
749
825
  */
750
826
  Subscribers: Subscriber[] | undefined;
@@ -755,14 +831,17 @@ export interface NotificationWithSubscribers {
755
831
  */
756
832
  export interface CreateBudgetRequest {
757
833
  /**
834
+ * @public
758
835
  * <p>The <code>accountId</code> that is associated with the budget.</p>
759
836
  */
760
837
  AccountId: string | undefined;
761
838
  /**
839
+ * @public
762
840
  * <p>The budget object that you want to create.</p>
763
841
  */
764
842
  Budget: Budget | undefined;
765
843
  /**
844
+ * @public
766
845
  * <p>A notification that you want to associate with a budget. A budget can have up to five notifications, and each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and subscribers in your <code>CreateBudget</code> call, Amazon Web Services creates the notifications and subscribers for you.</p>
767
846
  */
768
847
  NotificationsWithSubscribers?: NotificationWithSubscribers[];
@@ -781,6 +860,7 @@ export declare class CreationLimitExceededException extends __BaseException {
781
860
  readonly name: "CreationLimitExceededException";
782
861
  readonly $fault: "client";
783
862
  /**
863
+ * @public
784
864
  * <p>The error message the exception carries.</p>
785
865
  */
786
866
  Message?: string;
@@ -797,6 +877,7 @@ export declare class DuplicateRecordException extends __BaseException {
797
877
  readonly name: "DuplicateRecordException";
798
878
  readonly $fault: "client";
799
879
  /**
880
+ * @public
800
881
  * <p>The error message the exception carries.</p>
801
882
  */
802
883
  Message?: string;
@@ -813,6 +894,7 @@ export declare class InternalErrorException extends __BaseException {
813
894
  readonly name: "InternalErrorException";
814
895
  readonly $fault: "server";
815
896
  /**
897
+ * @public
816
898
  * <p>The error message the exception carries.</p>
817
899
  */
818
900
  Message?: string;
@@ -829,6 +911,7 @@ export declare class InvalidParameterException extends __BaseException {
829
911
  readonly name: "InvalidParameterException";
830
912
  readonly $fault: "client";
831
913
  /**
914
+ * @public
832
915
  * <p>The error message the exception carries.</p>
833
916
  */
834
917
  Message?: string;
@@ -839,14 +922,14 @@ export declare class InvalidParameterException extends __BaseException {
839
922
  }
840
923
  /**
841
924
  * @public
842
- * <p>
843
- * The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
844
- * </p>
925
+ * <p>The number of API requests has exceeded the maximum allowed API request throttling limit
926
+ * for the account.</p>
845
927
  */
846
928
  export declare class ThrottlingException extends __BaseException {
847
929
  readonly name: "ThrottlingException";
848
930
  readonly $fault: "client";
849
931
  /**
932
+ * @public
850
933
  * <p>The error message the exception carries.</p>
851
934
  */
852
935
  Message?: string;
@@ -860,44 +943,54 @@ export declare class ThrottlingException extends __BaseException {
860
943
  */
861
944
  export interface CreateBudgetActionRequest {
862
945
  /**
946
+ * @public
863
947
  * <p>The account ID of the user. It's a 12-digit number.</p>
864
948
  */
865
949
  AccountId: string | undefined;
866
950
  /**
867
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
951
+ * @public
952
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
953
+ * substring, aren't allowed.</p>
868
954
  */
869
955
  BudgetName: string | undefined;
870
956
  /**
957
+ * @public
871
958
  * <p> The type of a notification. It must be ACTUAL or FORECASTED.</p>
872
959
  */
873
960
  NotificationType: NotificationType | string | undefined;
874
961
  /**
962
+ * @public
875
963
  * <p>
876
964
  * The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.
877
965
  * </p>
878
966
  */
879
967
  ActionType: ActionType | string | undefined;
880
968
  /**
969
+ * @public
881
970
  * <p>The trigger threshold of the action. </p>
882
971
  */
883
972
  ActionThreshold: ActionThreshold | undefined;
884
973
  /**
974
+ * @public
885
975
  * <p>Specifies all of the type-specific parameters. </p>
886
976
  */
887
977
  Definition: Definition | undefined;
888
978
  /**
979
+ * @public
889
980
  * <p>
890
981
  * The role passed for action execution and reversion. Roles and actions must be in the same account.
891
982
  * </p>
892
983
  */
893
984
  ExecutionRoleArn: string | undefined;
894
985
  /**
986
+ * @public
895
987
  * <p>
896
988
  * This specifies if the action needs manual or automatic approval.
897
989
  * </p>
898
990
  */
899
991
  ApprovalModel: ApprovalModel | string | undefined;
900
992
  /**
993
+ * @public
901
994
  * <p> A list of subscribers.</p>
902
995
  */
903
996
  Subscribers: Subscriber[] | undefined;
@@ -907,14 +1000,18 @@ export interface CreateBudgetActionRequest {
907
1000
  */
908
1001
  export interface CreateBudgetActionResponse {
909
1002
  /**
1003
+ * @public
910
1004
  * <p>The account ID of the user. It's a 12-digit number.</p>
911
1005
  */
912
1006
  AccountId: string | undefined;
913
1007
  /**
914
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1008
+ * @public
1009
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1010
+ * substring, aren't allowed.</p>
915
1011
  */
916
1012
  BudgetName: string | undefined;
917
1013
  /**
1014
+ * @public
918
1015
  * <p>
919
1016
  * A system-generated universally unique identifier (UUID) for the action.
920
1017
  * </p>
@@ -929,6 +1026,7 @@ export declare class NotFoundException extends __BaseException {
929
1026
  readonly name: "NotFoundException";
930
1027
  readonly $fault: "client";
931
1028
  /**
1029
+ * @public
932
1030
  * <p>The error message the exception carries.</p>
933
1031
  */
934
1032
  Message?: string;
@@ -943,18 +1041,22 @@ export declare class NotFoundException extends __BaseException {
943
1041
  */
944
1042
  export interface CreateNotificationRequest {
945
1043
  /**
1044
+ * @public
946
1045
  * <p>The <code>accountId</code> that is associated with the budget that you want to create a notification for.</p>
947
1046
  */
948
1047
  AccountId: string | undefined;
949
1048
  /**
1049
+ * @public
950
1050
  * <p>The name of the budget that you want Amazon Web Services to notify you about. Budget names must be unique within an account.</p>
951
1051
  */
952
1052
  BudgetName: string | undefined;
953
1053
  /**
1054
+ * @public
954
1055
  * <p>The notification that you want to create.</p>
955
1056
  */
956
1057
  Notification: Notification | undefined;
957
1058
  /**
1059
+ * @public
958
1060
  * <p>A list of subscribers that you want to associate with the notification. Each notification can have one SNS subscriber and up to 10 email subscribers.</p>
959
1061
  */
960
1062
  Subscribers: Subscriber[] | undefined;
@@ -971,18 +1073,22 @@ export interface CreateNotificationResponse {
971
1073
  */
972
1074
  export interface CreateSubscriberRequest {
973
1075
  /**
1076
+ * @public
974
1077
  * <p>The <code>accountId</code> that is associated with the budget that you want to create a subscriber for.</p>
975
1078
  */
976
1079
  AccountId: string | undefined;
977
1080
  /**
1081
+ * @public
978
1082
  * <p>The name of the budget that you want to subscribe to. Budget names must be unique within an account.</p>
979
1083
  */
980
1084
  BudgetName: string | undefined;
981
1085
  /**
1086
+ * @public
982
1087
  * <p>The notification that you want to create a subscriber for.</p>
983
1088
  */
984
1089
  Notification: Notification | undefined;
985
1090
  /**
1091
+ * @public
986
1092
  * <p>The subscriber that you want to associate with a budget notification.</p>
987
1093
  */
988
1094
  Subscriber: Subscriber | undefined;
@@ -999,10 +1105,12 @@ export interface CreateSubscriberResponse {
999
1105
  */
1000
1106
  export interface DeleteBudgetRequest {
1001
1107
  /**
1108
+ * @public
1002
1109
  * <p>The <code>accountId</code> that is associated with the budget that you want to delete.</p>
1003
1110
  */
1004
1111
  AccountId: string | undefined;
1005
1112
  /**
1113
+ * @public
1006
1114
  * <p>The name of the budget that you want to delete.</p>
1007
1115
  */
1008
1116
  BudgetName: string | undefined;
@@ -1018,14 +1126,18 @@ export interface DeleteBudgetResponse {
1018
1126
  */
1019
1127
  export interface DeleteBudgetActionRequest {
1020
1128
  /**
1129
+ * @public
1021
1130
  * <p>The account ID of the user. It's a 12-digit number.</p>
1022
1131
  */
1023
1132
  AccountId: string | undefined;
1024
1133
  /**
1025
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1134
+ * @public
1135
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1136
+ * substring, aren't allowed.</p>
1026
1137
  */
1027
1138
  BudgetName: string | undefined;
1028
1139
  /**
1140
+ * @public
1029
1141
  * <p>
1030
1142
  * A system-generated universally unique identifier (UUID) for the action.
1031
1143
  * </p>
@@ -1037,14 +1149,18 @@ export interface DeleteBudgetActionRequest {
1037
1149
  */
1038
1150
  export interface DeleteBudgetActionResponse {
1039
1151
  /**
1152
+ * @public
1040
1153
  * <p>The account ID of the user. It's a 12-digit number.</p>
1041
1154
  */
1042
1155
  AccountId: string | undefined;
1043
1156
  /**
1044
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1157
+ * @public
1158
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1159
+ * substring, aren't allowed.</p>
1045
1160
  */
1046
1161
  BudgetName: string | undefined;
1047
1162
  /**
1163
+ * @public
1048
1164
  * <p>A budget action resource. </p>
1049
1165
  */
1050
1166
  Action: Action | undefined;
@@ -1058,6 +1174,7 @@ export declare class ResourceLockedException extends __BaseException {
1058
1174
  readonly name: "ResourceLockedException";
1059
1175
  readonly $fault: "client";
1060
1176
  /**
1177
+ * @public
1061
1178
  * <p>The error message the exception carries.</p>
1062
1179
  */
1063
1180
  Message?: string;
@@ -1072,14 +1189,17 @@ export declare class ResourceLockedException extends __BaseException {
1072
1189
  */
1073
1190
  export interface DeleteNotificationRequest {
1074
1191
  /**
1192
+ * @public
1075
1193
  * <p>The <code>accountId</code> that is associated with the budget whose notification you want to delete.</p>
1076
1194
  */
1077
1195
  AccountId: string | undefined;
1078
1196
  /**
1197
+ * @public
1079
1198
  * <p>The name of the budget whose notification you want to delete.</p>
1080
1199
  */
1081
1200
  BudgetName: string | undefined;
1082
1201
  /**
1202
+ * @public
1083
1203
  * <p>The notification that you want to delete.</p>
1084
1204
  */
1085
1205
  Notification: Notification | undefined;
@@ -1096,18 +1216,22 @@ export interface DeleteNotificationResponse {
1096
1216
  */
1097
1217
  export interface DeleteSubscriberRequest {
1098
1218
  /**
1219
+ * @public
1099
1220
  * <p>The <code>accountId</code> that is associated with the budget whose subscriber you want to delete.</p>
1100
1221
  */
1101
1222
  AccountId: string | undefined;
1102
1223
  /**
1224
+ * @public
1103
1225
  * <p>The name of the budget whose subscriber you want to delete.</p>
1104
1226
  */
1105
1227
  BudgetName: string | undefined;
1106
1228
  /**
1229
+ * @public
1107
1230
  * <p>The notification whose subscriber you want to delete.</p>
1108
1231
  */
1109
1232
  Notification: Notification | undefined;
1110
1233
  /**
1234
+ * @public
1111
1235
  * <p>The subscriber that you want to delete.</p>
1112
1236
  */
1113
1237
  Subscriber: Subscriber | undefined;
@@ -1124,10 +1248,12 @@ export interface DeleteSubscriberResponse {
1124
1248
  */
1125
1249
  export interface DescribeBudgetRequest {
1126
1250
  /**
1251
+ * @public
1127
1252
  * <p>The <code>accountId</code> that is associated with the budget that you want a description of.</p>
1128
1253
  */
1129
1254
  AccountId: string | undefined;
1130
1255
  /**
1256
+ * @public
1131
1257
  * <p>The name of the budget that you want a description of.</p>
1132
1258
  */
1133
1259
  BudgetName: string | undefined;
@@ -1138,6 +1264,7 @@ export interface DescribeBudgetRequest {
1138
1264
  */
1139
1265
  export interface DescribeBudgetResponse {
1140
1266
  /**
1267
+ * @public
1141
1268
  * <p>The description of the budget.</p>
1142
1269
  */
1143
1270
  Budget?: Budget;
@@ -1147,14 +1274,18 @@ export interface DescribeBudgetResponse {
1147
1274
  */
1148
1275
  export interface DescribeBudgetActionRequest {
1149
1276
  /**
1277
+ * @public
1150
1278
  * <p>The account ID of the user. It's a 12-digit number.</p>
1151
1279
  */
1152
1280
  AccountId: string | undefined;
1153
1281
  /**
1154
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1282
+ * @public
1283
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1284
+ * substring, aren't allowed.</p>
1155
1285
  */
1156
1286
  BudgetName: string | undefined;
1157
1287
  /**
1288
+ * @public
1158
1289
  * <p>
1159
1290
  * A system-generated universally unique identifier (UUID) for the action.
1160
1291
  * </p>
@@ -1166,14 +1297,18 @@ export interface DescribeBudgetActionRequest {
1166
1297
  */
1167
1298
  export interface DescribeBudgetActionResponse {
1168
1299
  /**
1300
+ * @public
1169
1301
  * <p>The account ID of the user. It's a 12-digit number.</p>
1170
1302
  */
1171
1303
  AccountId: string | undefined;
1172
1304
  /**
1173
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1305
+ * @public
1306
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1307
+ * substring, aren't allowed.</p>
1174
1308
  */
1175
1309
  BudgetName: string | undefined;
1176
1310
  /**
1311
+ * @public
1177
1312
  * <p>
1178
1313
  * A budget action resource.
1179
1314
  * </p>
@@ -1185,29 +1320,36 @@ export interface DescribeBudgetActionResponse {
1185
1320
  */
1186
1321
  export interface DescribeBudgetActionHistoriesRequest {
1187
1322
  /**
1323
+ * @public
1188
1324
  * <p>The account ID of the user. It's a 12-digit number.</p>
1189
1325
  */
1190
1326
  AccountId: string | undefined;
1191
1327
  /**
1192
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1328
+ * @public
1329
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1330
+ * substring, aren't allowed.</p>
1193
1331
  */
1194
1332
  BudgetName: string | undefined;
1195
1333
  /**
1334
+ * @public
1196
1335
  * <p>
1197
1336
  * A system-generated universally unique identifier (UUID) for the action.
1198
1337
  * </p>
1199
1338
  */
1200
1339
  ActionId: string | undefined;
1201
1340
  /**
1341
+ * @public
1202
1342
  * <p>The period of time that's covered by a budget. The period has a start date and an end date.
1203
1343
  * The start date must come before the end date. There are no restrictions on the end date. </p>
1204
1344
  */
1205
1345
  TimePeriod?: TimePeriod;
1206
1346
  /**
1347
+ * @public
1207
1348
  * <p> An integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1208
1349
  */
1209
1350
  MaxResults?: number;
1210
1351
  /**
1352
+ * @public
1211
1353
  * <p> A generic string.</p>
1212
1354
  */
1213
1355
  NextToken?: string;
@@ -1217,12 +1359,14 @@ export interface DescribeBudgetActionHistoriesRequest {
1217
1359
  */
1218
1360
  export interface DescribeBudgetActionHistoriesResponse {
1219
1361
  /**
1362
+ * @public
1220
1363
  * <p>
1221
1364
  * The historical record of the budget action resource.
1222
1365
  * </p>
1223
1366
  */
1224
1367
  ActionHistories: ActionHistory[] | undefined;
1225
1368
  /**
1369
+ * @public
1226
1370
  * <p> A generic string.</p>
1227
1371
  */
1228
1372
  NextToken?: string;
@@ -1235,6 +1379,7 @@ export declare class InvalidNextTokenException extends __BaseException {
1235
1379
  readonly name: "InvalidNextTokenException";
1236
1380
  readonly $fault: "client";
1237
1381
  /**
1382
+ * @public
1238
1383
  * <p>The error message the exception carries.</p>
1239
1384
  */
1240
1385
  Message?: string;
@@ -1248,14 +1393,17 @@ export declare class InvalidNextTokenException extends __BaseException {
1248
1393
  */
1249
1394
  export interface DescribeBudgetActionsForAccountRequest {
1250
1395
  /**
1396
+ * @public
1251
1397
  * <p>The account ID of the user. It's a 12-digit number.</p>
1252
1398
  */
1253
1399
  AccountId: string | undefined;
1254
1400
  /**
1401
+ * @public
1255
1402
  * <p> An integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1256
1403
  */
1257
1404
  MaxResults?: number;
1258
1405
  /**
1406
+ * @public
1259
1407
  * <p> A generic string.</p>
1260
1408
  */
1261
1409
  NextToken?: string;
@@ -1265,12 +1413,14 @@ export interface DescribeBudgetActionsForAccountRequest {
1265
1413
  */
1266
1414
  export interface DescribeBudgetActionsForAccountResponse {
1267
1415
  /**
1416
+ * @public
1268
1417
  * <p>
1269
1418
  * A list of the budget action resources information.
1270
1419
  * </p>
1271
1420
  */
1272
1421
  Actions: Action[] | undefined;
1273
1422
  /**
1423
+ * @public
1274
1424
  * <p> A generic string.</p>
1275
1425
  */
1276
1426
  NextToken?: string;
@@ -1280,18 +1430,23 @@ export interface DescribeBudgetActionsForAccountResponse {
1280
1430
  */
1281
1431
  export interface DescribeBudgetActionsForBudgetRequest {
1282
1432
  /**
1433
+ * @public
1283
1434
  * <p>The account ID of the user. It's a 12-digit number.</p>
1284
1435
  */
1285
1436
  AccountId: string | undefined;
1286
1437
  /**
1287
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1438
+ * @public
1439
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1440
+ * substring, aren't allowed.</p>
1288
1441
  */
1289
1442
  BudgetName: string | undefined;
1290
1443
  /**
1444
+ * @public
1291
1445
  * <p> An integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1292
1446
  */
1293
1447
  MaxResults?: number;
1294
1448
  /**
1449
+ * @public
1295
1450
  * <p> A generic string.</p>
1296
1451
  */
1297
1452
  NextToken?: string;
@@ -1301,12 +1456,14 @@ export interface DescribeBudgetActionsForBudgetRequest {
1301
1456
  */
1302
1457
  export interface DescribeBudgetActionsForBudgetResponse {
1303
1458
  /**
1459
+ * @public
1304
1460
  * <p>
1305
1461
  * A list of the budget action resources information.
1306
1462
  * </p>
1307
1463
  */
1308
1464
  Actions: Action[] | undefined;
1309
1465
  /**
1466
+ * @public
1310
1467
  * <p> A generic string.</p>
1311
1468
  */
1312
1469
  NextToken?: string;
@@ -1316,16 +1473,19 @@ export interface DescribeBudgetActionsForBudgetResponse {
1316
1473
  */
1317
1474
  export interface DescribeBudgetNotificationsForAccountRequest {
1318
1475
  /**
1476
+ * @public
1319
1477
  * <p>The account ID of the user. It's a 12-digit number.</p>
1320
1478
  */
1321
1479
  AccountId: string | undefined;
1322
1480
  /**
1481
+ * @public
1323
1482
  * <p>
1324
1483
  * An integer that shows how many budget name entries a paginated response contains.
1325
1484
  * </p>
1326
1485
  */
1327
1486
  MaxResults?: number;
1328
1487
  /**
1488
+ * @public
1329
1489
  * <p> A generic string.</p>
1330
1490
  */
1331
1491
  NextToken?: string;
@@ -1338,11 +1498,14 @@ export interface DescribeBudgetNotificationsForAccountRequest {
1338
1498
  */
1339
1499
  export interface BudgetNotificationsForAccount {
1340
1500
  /**
1501
+ * @public
1341
1502
  * <p> A list of notifications.</p>
1342
1503
  */
1343
1504
  Notifications?: Notification[];
1344
1505
  /**
1345
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1506
+ * @public
1507
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1508
+ * substring, aren't allowed.</p>
1346
1509
  */
1347
1510
  BudgetName?: string;
1348
1511
  }
@@ -1351,12 +1514,14 @@ export interface BudgetNotificationsForAccount {
1351
1514
  */
1352
1515
  export interface DescribeBudgetNotificationsForAccountResponse {
1353
1516
  /**
1517
+ * @public
1354
1518
  * <p>
1355
1519
  * A list of budget names and associated notifications for an account.
1356
1520
  * </p>
1357
1521
  */
1358
1522
  BudgetNotificationsForAccount?: BudgetNotificationsForAccount[];
1359
1523
  /**
1524
+ * @public
1360
1525
  * <p> A generic string.</p>
1361
1526
  */
1362
1527
  NextToken?: string;
@@ -1369,6 +1534,7 @@ export declare class ExpiredNextTokenException extends __BaseException {
1369
1534
  readonly name: "ExpiredNextTokenException";
1370
1535
  readonly $fault: "client";
1371
1536
  /**
1537
+ * @public
1372
1538
  * <p>The error message the exception carries.</p>
1373
1539
  */
1374
1540
  Message?: string;
@@ -1382,22 +1548,28 @@ export declare class ExpiredNextTokenException extends __BaseException {
1382
1548
  */
1383
1549
  export interface DescribeBudgetPerformanceHistoryRequest {
1384
1550
  /**
1551
+ * @public
1385
1552
  * <p>The account ID of the user. It's a 12-digit number.</p>
1386
1553
  */
1387
1554
  AccountId: string | undefined;
1388
1555
  /**
1389
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1556
+ * @public
1557
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1558
+ * substring, aren't allowed.</p>
1390
1559
  */
1391
1560
  BudgetName: string | undefined;
1392
1561
  /**
1562
+ * @public
1393
1563
  * <p>Retrieves how often the budget went into an <code>ALARM</code> state for the specified time period.</p>
1394
1564
  */
1395
1565
  TimePeriod?: TimePeriod;
1396
1566
  /**
1567
+ * @public
1397
1568
  * <p> An integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1398
1569
  */
1399
1570
  MaxResults?: number;
1400
1571
  /**
1572
+ * @public
1401
1573
  * <p> A generic string.</p>
1402
1574
  */
1403
1575
  NextToken?: string;
@@ -1408,14 +1580,17 @@ export interface DescribeBudgetPerformanceHistoryRequest {
1408
1580
  */
1409
1581
  export interface BudgetedAndActualAmounts {
1410
1582
  /**
1583
+ * @public
1411
1584
  * <p>The amount of cost or usage that you created the budget for.</p>
1412
1585
  */
1413
1586
  BudgetedAmount?: Spend;
1414
1587
  /**
1588
+ * @public
1415
1589
  * <p>Your actual costs or usage for a budget period.</p>
1416
1590
  */
1417
1591
  ActualAmount?: Spend;
1418
1592
  /**
1593
+ * @public
1419
1594
  * <p>The time period that's covered by this budget comparison.</p>
1420
1595
  */
1421
1596
  TimePeriod?: TimePeriod;
@@ -1426,28 +1601,35 @@ export interface BudgetedAndActualAmounts {
1426
1601
  */
1427
1602
  export interface BudgetPerformanceHistory {
1428
1603
  /**
1429
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1604
+ * @public
1605
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1606
+ * substring, aren't allowed.</p>
1430
1607
  */
1431
1608
  BudgetName?: string;
1432
1609
  /**
1610
+ * @public
1433
1611
  * <p> The type of a budget. It must be one of the following types: </p>
1434
- * <p>
1612
+ * <p>
1435
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>
1436
1614
  */
1437
1615
  BudgetType?: BudgetType | string;
1438
1616
  /**
1617
+ * @public
1439
1618
  * <p>The history of the cost filters for a budget during the specified time period.</p>
1440
1619
  */
1441
1620
  CostFilters?: Record<string, string[]>;
1442
1621
  /**
1622
+ * @public
1443
1623
  * <p>The history of the cost types for a budget during the specified time period.</p>
1444
1624
  */
1445
1625
  CostTypes?: CostTypes;
1446
1626
  /**
1627
+ * @public
1447
1628
  * <p> The time unit of the budget, such as MONTHLY or QUARTERLY.</p>
1448
1629
  */
1449
1630
  TimeUnit?: TimeUnit | string;
1450
1631
  /**
1632
+ * @public
1451
1633
  * <p>A list of amounts of cost or usage that you created budgets for, which are compared to your
1452
1634
  * actual costs or usage.</p>
1453
1635
  */
@@ -1458,11 +1640,13 @@ export interface BudgetPerformanceHistory {
1458
1640
  */
1459
1641
  export interface DescribeBudgetPerformanceHistoryResponse {
1460
1642
  /**
1643
+ * @public
1461
1644
  * <p>The history of how often the budget has gone into an <code>ALARM</code> state.</p>
1462
1645
  * <p>For <code>DAILY</code> budgets, the history saves the state of the budget for the last 60 days. For <code>MONTHLY</code> budgets, the history saves the state of the budget for the current month plus the last 12 months. For <code>QUARTERLY</code> budgets, the history saves the state of the budget for the last four quarters.</p>
1463
1646
  */
1464
1647
  BudgetPerformanceHistory?: BudgetPerformanceHistory;
1465
1648
  /**
1649
+ * @public
1466
1650
  * <p> A generic string.</p>
1467
1651
  */
1468
1652
  NextToken?: string;
@@ -1473,14 +1657,17 @@ export interface DescribeBudgetPerformanceHistoryResponse {
1473
1657
  */
1474
1658
  export interface DescribeBudgetsRequest {
1475
1659
  /**
1660
+ * @public
1476
1661
  * <p>The <code>accountId</code> that is associated with the budgets that you want descriptions of.</p>
1477
1662
  */
1478
1663
  AccountId: string | undefined;
1479
1664
  /**
1665
+ * @public
1480
1666
  * <p>An optional integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1481
1667
  */
1482
1668
  MaxResults?: number;
1483
1669
  /**
1670
+ * @public
1484
1671
  * <p>The pagination token that you include in your request to indicate the next set of results that you want to retrieve.</p>
1485
1672
  */
1486
1673
  NextToken?: string;
@@ -1491,10 +1678,12 @@ export interface DescribeBudgetsRequest {
1491
1678
  */
1492
1679
  export interface DescribeBudgetsResponse {
1493
1680
  /**
1681
+ * @public
1494
1682
  * <p>A list of budgets.</p>
1495
1683
  */
1496
1684
  Budgets?: Budget[];
1497
1685
  /**
1686
+ * @public
1498
1687
  * <p>The pagination token in the service response that indicates the next set of results that you can retrieve.</p>
1499
1688
  */
1500
1689
  NextToken?: string;
@@ -1505,18 +1694,22 @@ export interface DescribeBudgetsResponse {
1505
1694
  */
1506
1695
  export interface DescribeNotificationsForBudgetRequest {
1507
1696
  /**
1697
+ * @public
1508
1698
  * <p>The <code>accountId</code> that is associated with the budget whose notifications you want descriptions of.</p>
1509
1699
  */
1510
1700
  AccountId: string | undefined;
1511
1701
  /**
1702
+ * @public
1512
1703
  * <p>The name of the budget whose notifications you want descriptions of.</p>
1513
1704
  */
1514
1705
  BudgetName: string | undefined;
1515
1706
  /**
1707
+ * @public
1516
1708
  * <p>An optional integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1517
1709
  */
1518
1710
  MaxResults?: number;
1519
1711
  /**
1712
+ * @public
1520
1713
  * <p>The pagination token that you include in your request to indicate the next set of results that you want to retrieve.</p>
1521
1714
  */
1522
1715
  NextToken?: string;
@@ -1527,10 +1720,12 @@ export interface DescribeNotificationsForBudgetRequest {
1527
1720
  */
1528
1721
  export interface DescribeNotificationsForBudgetResponse {
1529
1722
  /**
1723
+ * @public
1530
1724
  * <p>A list of notifications that are associated with a budget.</p>
1531
1725
  */
1532
1726
  Notifications?: Notification[];
1533
1727
  /**
1728
+ * @public
1534
1729
  * <p>The pagination token in the service response that indicates the next set of results that you can retrieve.</p>
1535
1730
  */
1536
1731
  NextToken?: string;
@@ -1541,22 +1736,27 @@ export interface DescribeNotificationsForBudgetResponse {
1541
1736
  */
1542
1737
  export interface DescribeSubscribersForNotificationRequest {
1543
1738
  /**
1739
+ * @public
1544
1740
  * <p>The <code>accountId</code> that is associated with the budget whose subscribers you want descriptions of.</p>
1545
1741
  */
1546
1742
  AccountId: string | undefined;
1547
1743
  /**
1744
+ * @public
1548
1745
  * <p>The name of the budget whose subscribers you want descriptions of.</p>
1549
1746
  */
1550
1747
  BudgetName: string | undefined;
1551
1748
  /**
1749
+ * @public
1552
1750
  * <p>The notification whose subscribers you want to list.</p>
1553
1751
  */
1554
1752
  Notification: Notification | undefined;
1555
1753
  /**
1754
+ * @public
1556
1755
  * <p>An optional integer that represents how many entries a paginated response contains. The maximum is 100.</p>
1557
1756
  */
1558
1757
  MaxResults?: number;
1559
1758
  /**
1759
+ * @public
1560
1760
  * <p>The pagination token that you include in your request to indicate the next set of results that you want to retrieve.</p>
1561
1761
  */
1562
1762
  NextToken?: string;
@@ -1567,10 +1767,12 @@ export interface DescribeSubscribersForNotificationRequest {
1567
1767
  */
1568
1768
  export interface DescribeSubscribersForNotificationResponse {
1569
1769
  /**
1770
+ * @public
1570
1771
  * <p>A list of subscribers that are associated with a notification.</p>
1571
1772
  */
1572
1773
  Subscribers?: Subscriber[];
1573
1774
  /**
1775
+ * @public
1574
1776
  * <p>The pagination token in the service response that indicates the next set of results that you can retrieve.</p>
1575
1777
  */
1576
1778
  NextToken?: string;
@@ -1594,20 +1796,25 @@ export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
1594
1796
  */
1595
1797
  export interface ExecuteBudgetActionRequest {
1596
1798
  /**
1799
+ * @public
1597
1800
  * <p>The account ID of the user. It's a 12-digit number.</p>
1598
1801
  */
1599
1802
  AccountId: string | undefined;
1600
1803
  /**
1601
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1804
+ * @public
1805
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1806
+ * substring, aren't allowed.</p>
1602
1807
  */
1603
1808
  BudgetName: string | undefined;
1604
1809
  /**
1810
+ * @public
1605
1811
  * <p>
1606
1812
  * A system-generated universally unique identifier (UUID) for the action.
1607
1813
  * </p>
1608
1814
  */
1609
1815
  ActionId: string | undefined;
1610
1816
  /**
1817
+ * @public
1611
1818
  * <p>
1612
1819
  * The type of execution.
1613
1820
  * </p>
@@ -1619,20 +1826,25 @@ export interface ExecuteBudgetActionRequest {
1619
1826
  */
1620
1827
  export interface ExecuteBudgetActionResponse {
1621
1828
  /**
1829
+ * @public
1622
1830
  * <p>The account ID of the user. It's a 12-digit number.</p>
1623
1831
  */
1624
1832
  AccountId: string | undefined;
1625
1833
  /**
1626
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1834
+ * @public
1835
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1836
+ * substring, aren't allowed.</p>
1627
1837
  */
1628
1838
  BudgetName: string | undefined;
1629
1839
  /**
1840
+ * @public
1630
1841
  * <p>
1631
1842
  * A system-generated universally unique identifier (UUID) for the action.
1632
1843
  * </p>
1633
1844
  */
1634
1845
  ActionId: string | undefined;
1635
1846
  /**
1847
+ * @public
1636
1848
  * <p>
1637
1849
  * The type of execution.
1638
1850
  * </p>
@@ -1645,10 +1857,12 @@ export interface ExecuteBudgetActionResponse {
1645
1857
  */
1646
1858
  export interface UpdateBudgetRequest {
1647
1859
  /**
1860
+ * @public
1648
1861
  * <p>The <code>accountId</code> that is associated with the budget that you want to update.</p>
1649
1862
  */
1650
1863
  AccountId: string | undefined;
1651
1864
  /**
1865
+ * @public
1652
1866
  * <p>The budget that you want to update your budget to.</p>
1653
1867
  */
1654
1868
  NewBudget: Budget | undefined;
@@ -1664,44 +1878,54 @@ export interface UpdateBudgetResponse {
1664
1878
  */
1665
1879
  export interface UpdateBudgetActionRequest {
1666
1880
  /**
1881
+ * @public
1667
1882
  * <p>The account ID of the user. It's a 12-digit number.</p>
1668
1883
  */
1669
1884
  AccountId: string | undefined;
1670
1885
  /**
1671
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1886
+ * @public
1887
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1888
+ * substring, aren't allowed.</p>
1672
1889
  */
1673
1890
  BudgetName: string | undefined;
1674
1891
  /**
1892
+ * @public
1675
1893
  * <p>
1676
1894
  * A system-generated universally unique identifier (UUID) for the action.
1677
1895
  * </p>
1678
1896
  */
1679
1897
  ActionId: string | undefined;
1680
1898
  /**
1899
+ * @public
1681
1900
  * <p> The type of a notification. It must be ACTUAL or FORECASTED.</p>
1682
1901
  */
1683
1902
  NotificationType?: NotificationType | string;
1684
1903
  /**
1904
+ * @public
1685
1905
  * <p>The trigger threshold of the action. </p>
1686
1906
  */
1687
1907
  ActionThreshold?: ActionThreshold;
1688
1908
  /**
1909
+ * @public
1689
1910
  * <p>Specifies all of the type-specific parameters. </p>
1690
1911
  */
1691
1912
  Definition?: Definition;
1692
1913
  /**
1914
+ * @public
1693
1915
  * <p>
1694
1916
  * The role passed for action execution and reversion. Roles and actions must be in the same account.
1695
1917
  * </p>
1696
1918
  */
1697
1919
  ExecutionRoleArn?: string;
1698
1920
  /**
1921
+ * @public
1699
1922
  * <p>
1700
1923
  * This specifies if the action needs manual or automatic approval.
1701
1924
  * </p>
1702
1925
  */
1703
1926
  ApprovalModel?: ApprovalModel | string;
1704
1927
  /**
1928
+ * @public
1705
1929
  * <p> A list of subscribers.</p>
1706
1930
  */
1707
1931
  Subscribers?: Subscriber[];
@@ -1711,20 +1935,25 @@ export interface UpdateBudgetActionRequest {
1711
1935
  */
1712
1936
  export interface UpdateBudgetActionResponse {
1713
1937
  /**
1938
+ * @public
1714
1939
  * <p>The account ID of the user. It's a 12-digit number.</p>
1715
1940
  */
1716
1941
  AccountId: string | undefined;
1717
1942
  /**
1718
- * <p> A string that represents the budget name. The ":" and "\" characters aren't allowed.</p>
1943
+ * @public
1944
+ * <p> A string that represents the budget name. The ":" and "\" characters, and the "/action/"
1945
+ * substring, aren't allowed.</p>
1719
1946
  */
1720
1947
  BudgetName: string | undefined;
1721
1948
  /**
1949
+ * @public
1722
1950
  * <p>
1723
1951
  * The previous action resource information.
1724
1952
  * </p>
1725
1953
  */
1726
1954
  OldAction: Action | undefined;
1727
1955
  /**
1956
+ * @public
1728
1957
  * <p>
1729
1958
  * The updated action resource information.
1730
1959
  * </p>
@@ -1737,18 +1966,22 @@ export interface UpdateBudgetActionResponse {
1737
1966
  */
1738
1967
  export interface UpdateNotificationRequest {
1739
1968
  /**
1969
+ * @public
1740
1970
  * <p>The <code>accountId</code> that is associated with the budget whose notification you want to update.</p>
1741
1971
  */
1742
1972
  AccountId: string | undefined;
1743
1973
  /**
1974
+ * @public
1744
1975
  * <p>The name of the budget whose notification you want to update.</p>
1745
1976
  */
1746
1977
  BudgetName: string | undefined;
1747
1978
  /**
1979
+ * @public
1748
1980
  * <p>The previous notification that is associated with a budget.</p>
1749
1981
  */
1750
1982
  OldNotification: Notification | undefined;
1751
1983
  /**
1984
+ * @public
1752
1985
  * <p>The updated notification to be associated with a budget.</p>
1753
1986
  */
1754
1987
  NewNotification: Notification | undefined;
@@ -1765,22 +1998,27 @@ export interface UpdateNotificationResponse {
1765
1998
  */
1766
1999
  export interface UpdateSubscriberRequest {
1767
2000
  /**
2001
+ * @public
1768
2002
  * <p>The <code>accountId</code> that is associated with the budget whose subscriber you want to update.</p>
1769
2003
  */
1770
2004
  AccountId: string | undefined;
1771
2005
  /**
2006
+ * @public
1772
2007
  * <p>The name of the budget whose subscriber you want to update.</p>
1773
2008
  */
1774
2009
  BudgetName: string | undefined;
1775
2010
  /**
2011
+ * @public
1776
2012
  * <p>The notification whose subscriber you want to update.</p>
1777
2013
  */
1778
2014
  Notification: Notification | undefined;
1779
2015
  /**
2016
+ * @public
1780
2017
  * <p>The previous subscriber that is associated with a budget notification.</p>
1781
2018
  */
1782
2019
  OldSubscriber: Subscriber | undefined;
1783
2020
  /**
2021
+ * @public
1784
2022
  * <p>The updated subscriber that is associated with a budget notification.</p>
1785
2023
  */
1786
2024
  NewSubscriber: Subscriber | undefined;