@aws-sdk/client-cost-optimization-hub 3.533.0 → 3.535.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.
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { CostOptimizationHubServiceException as __BaseException } from "./CostOptimizationHubServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>You are not authorized to use this operation with the given parameters.</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -25,29 +25,29 @@ export declare const EnrollmentStatus: {
25
25
  */
26
26
  export type EnrollmentStatus = (typeof EnrollmentStatus)[keyof typeof EnrollmentStatus];
27
27
  /**
28
- * @public
29
28
  * <p>Describes the enrollment status of an organization's member accounts in Cost Optimization
30
29
  * Hub.</p>
30
+ * @public
31
31
  */
32
32
  export interface AccountEnrollmentStatus {
33
33
  /**
34
- * @public
35
34
  * <p>The Amazon Web Services account ID.</p>
35
+ * @public
36
36
  */
37
37
  accountId?: string;
38
38
  /**
39
- * @public
40
39
  * <p>The account enrollment status.</p>
40
+ * @public
41
41
  */
42
42
  status?: EnrollmentStatus;
43
43
  /**
44
- * @public
45
44
  * <p>The time when the account enrollment status was last updated.</p>
45
+ * @public
46
46
  */
47
47
  lastUpdatedTimestamp?: Date;
48
48
  /**
49
- * @public
50
49
  * <p>The time when the account enrollment status was created.</p>
50
+ * @public
51
51
  */
52
52
  createdTimestamp?: Date;
53
53
  }
@@ -68,129 +68,129 @@ export declare const ActionType: {
68
68
  */
69
69
  export type ActionType = (typeof ActionType)[keyof typeof ActionType];
70
70
  /**
71
- * @public
72
71
  * <p>Describes the Amazon Elastic Block Store performance configuration of the current and
73
72
  * recommended resource configuration for a recommendation.</p>
73
+ * @public
74
74
  */
75
75
  export interface BlockStoragePerformanceConfiguration {
76
76
  /**
77
- * @public
78
77
  * <p>The number of I/O operations per second.</p>
78
+ * @public
79
79
  */
80
80
  iops?: number;
81
81
  /**
82
- * @public
83
82
  * <p>The throughput that the volume supports.</p>
83
+ * @public
84
84
  */
85
85
  throughput?: number;
86
86
  }
87
87
  /**
88
- * @public
89
88
  * <p>Describes the performance configuration for compute services such as Amazon EC2, Lambda,
90
89
  * and ECS.</p>
90
+ * @public
91
91
  */
92
92
  export interface ComputeConfiguration {
93
93
  /**
94
- * @public
95
94
  * <p>The number of vCPU cores in the resource.</p>
95
+ * @public
96
96
  */
97
97
  vCpu?: number;
98
98
  /**
99
- * @public
100
99
  * <p>The memory size of the resource.</p>
100
+ * @public
101
101
  */
102
102
  memorySizeInMB?: number;
103
103
  /**
104
- * @public
105
104
  * <p>The architecture of the resource.</p>
105
+ * @public
106
106
  */
107
107
  architecture?: string;
108
108
  /**
109
- * @public
110
109
  * <p>The platform of the resource. The platform is the specific combination of operating
111
110
  * system, license model, and software on an instance.</p>
111
+ * @public
112
112
  */
113
113
  platform?: string;
114
114
  }
115
115
  /**
116
- * @public
117
116
  * <p>The Compute Savings Plans configuration used for recommendations.</p>
117
+ * @public
118
118
  */
119
119
  export interface ComputeSavingsPlansConfiguration {
120
120
  /**
121
- * @public
122
121
  * <p>The account scope that you want your recommendations for. Amazon Web Services calculates
123
122
  * recommendations including the management account and member accounts if the value is set to
124
123
  * <code>PAYER</code>. If the value is <code>LINKED</code>, recommendations are calculated for
125
124
  * individual member accounts only.</p>
125
+ * @public
126
126
  */
127
127
  accountScope?: string;
128
128
  /**
129
- * @public
130
129
  * <p>The Savings Plans recommendation term in years.</p>
130
+ * @public
131
131
  */
132
132
  term?: string;
133
133
  /**
134
- * @public
135
134
  * <p>The payment option for the commitment.</p>
135
+ * @public
136
136
  */
137
137
  paymentOption?: string;
138
138
  /**
139
- * @public
140
139
  * <p>The hourly commitment for the Savings Plans type.</p>
140
+ * @public
141
141
  */
142
142
  hourlyCommitment?: string;
143
143
  }
144
144
  /**
145
- * @public
146
145
  * <p>Pricing information about a Savings Plan.</p>
146
+ * @public
147
147
  */
148
148
  export interface SavingsPlansPricing {
149
149
  /**
150
- * @public
151
150
  * <p>The cost of paying for the recommended Savings Plan monthly.</p>
151
+ * @public
152
152
  */
153
153
  monthlySavingsPlansEligibleCost?: number;
154
154
  /**
155
- * @public
156
155
  * <p>Estimated monthly commitment for the Savings Plan.</p>
156
+ * @public
157
157
  */
158
158
  estimatedMonthlyCommitment?: number;
159
159
  /**
160
- * @public
161
160
  * <p>Estimated savings as a percentage of your overall costs after buying the Savings Plan.</p>
161
+ * @public
162
162
  */
163
163
  savingsPercentage?: number;
164
164
  /**
165
- * @public
166
165
  * <p>Estimated On-Demand cost you will pay after buying the Savings Plan.</p>
166
+ * @public
167
167
  */
168
168
  estimatedOnDemandCost?: number;
169
169
  }
170
170
  /**
171
- * @public
172
171
  * <p>Cost impact of the purchase recommendation.</p>
172
+ * @public
173
173
  */
174
174
  export interface SavingsPlansCostCalculation {
175
175
  /**
176
- * @public
177
176
  * <p>Pricing details of the purchase recommendation.</p>
177
+ * @public
178
178
  */
179
179
  pricing?: SavingsPlansPricing;
180
180
  }
181
181
  /**
182
- * @public
183
182
  * <p>The Compute Savings Plans recommendation details.</p>
183
+ * @public
184
184
  */
185
185
  export interface ComputeSavingsPlans {
186
186
  /**
187
- * @public
188
187
  * <p>Configuration details of the Compute Savings Plans to purchase.</p>
188
+ * @public
189
189
  */
190
190
  configuration?: ComputeSavingsPlansConfiguration;
191
191
  /**
192
- * @public
193
192
  * <p>Cost impact of the Savings Plans purchase recommendation.</p>
193
+ * @public
194
194
  */
195
195
  costCalculation?: SavingsPlansCostCalculation;
196
196
  }
@@ -228,20 +228,20 @@ export type SavingsEstimationMode = (typeof SavingsEstimationMode)[keyof typeof
228
228
  */
229
229
  export interface GetPreferencesResponse {
230
230
  /**
231
- * @public
232
231
  * <p>Retrieves the status of the "savings estimation mode" preference.</p>
232
+ * @public
233
233
  */
234
234
  savingsEstimationMode?: SavingsEstimationMode;
235
235
  /**
236
- * @public
237
236
  * <p>Retrieves the status of the "member account discount visibility" preference.</p>
237
+ * @public
238
238
  */
239
239
  memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
240
240
  }
241
241
  /**
242
- * @public
243
242
  * <p>An error on the server occurred during the processing of your request. Try again
244
243
  * later.</p>
244
+ * @public
245
245
  */
246
246
  export declare class InternalServerException extends __BaseException {
247
247
  readonly name: "InternalServerException";
@@ -252,8 +252,8 @@ export declare class InternalServerException extends __BaseException {
252
252
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
253
253
  }
254
254
  /**
255
- * @public
256
255
  * <p>The request was denied due to request throttling.</p>
256
+ * @public
257
257
  */
258
258
  export declare class ThrottlingException extends __BaseException {
259
259
  readonly name: "ThrottlingException";
@@ -264,19 +264,19 @@ export declare class ThrottlingException extends __BaseException {
264
264
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
265
265
  }
266
266
  /**
267
- * @public
268
267
  * <p>The input failed to meet the constraints specified by the Amazon Web Services service in a
269
268
  * specified field.</p>
269
+ * @public
270
270
  */
271
271
  export interface ValidationExceptionDetail {
272
272
  /**
273
- * @public
274
273
  * <p>The field name where the invalid entry was detected.</p>
274
+ * @public
275
275
  */
276
276
  fieldName: string | undefined;
277
277
  /**
278
- * @public
279
278
  * <p>A message with the reason for the validation exception error.</p>
279
+ * @public
280
280
  */
281
281
  message: string | undefined;
282
282
  }
@@ -293,21 +293,21 @@ export declare const ValidationExceptionReason: {
293
293
  */
294
294
  export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
295
295
  /**
296
- * @public
297
296
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
298
297
  * service.</p>
298
+ * @public
299
299
  */
300
300
  export declare class ValidationException extends __BaseException {
301
301
  readonly name: "ValidationException";
302
302
  readonly $fault: "client";
303
303
  /**
304
- * @public
305
304
  * <p>The reason for the validation exception.</p>
305
+ * @public
306
306
  */
307
307
  reason?: ValidationExceptionReason;
308
308
  /**
309
- * @public
310
309
  * <p>The list of fields that are invalid.</p>
310
+ * @public
311
311
  */
312
312
  fields?: ValidationExceptionDetail[];
313
313
  /**
@@ -320,894 +320,894 @@ export declare class ValidationException extends __BaseException {
320
320
  */
321
321
  export interface GetRecommendationRequest {
322
322
  /**
323
- * @public
324
323
  * <p>The ID for the recommendation.</p>
324
+ * @public
325
325
  */
326
326
  recommendationId: string | undefined;
327
327
  }
328
328
  /**
329
- * @public
330
329
  * <p>The storage configuration used for recommendations.</p>
330
+ * @public
331
331
  */
332
332
  export interface StorageConfiguration {
333
333
  /**
334
- * @public
335
334
  * <p>The storage type.</p>
335
+ * @public
336
336
  */
337
337
  type?: string;
338
338
  /**
339
- * @public
340
339
  * <p>The storage volume.</p>
340
+ * @public
341
341
  */
342
342
  sizeInGb?: number;
343
343
  }
344
344
  /**
345
- * @public
346
345
  * <p>The Amazon Elastic Block Store volume configuration used for
347
346
  * recommendations.</p>
347
+ * @public
348
348
  */
349
349
  export interface EbsVolumeConfiguration {
350
350
  /**
351
- * @public
352
351
  * <p>The disk storage of the Amazon Elastic Block Store volume.</p>
352
+ * @public
353
353
  */
354
354
  storage?: StorageConfiguration;
355
355
  /**
356
- * @public
357
356
  * <p>The Amazon Elastic Block Store performance configuration.</p>
357
+ * @public
358
358
  */
359
359
  performance?: BlockStoragePerformanceConfiguration;
360
360
  /**
361
- * @public
362
361
  * <p>The Amazon Elastic Block Store attachment state.</p>
362
+ * @public
363
363
  */
364
364
  attachmentState?: string;
365
365
  }
366
366
  /**
367
- * @public
368
367
  * <p>Estimated discount details of the current and recommended resource configuration for a
369
368
  * recommendation.</p>
369
+ * @public
370
370
  */
371
371
  export interface EstimatedDiscounts {
372
372
  /**
373
- * @public
374
373
  * <p>Estimated Savings Plans discounts.</p>
374
+ * @public
375
375
  */
376
376
  savingsPlansDiscount?: number;
377
377
  /**
378
- * @public
379
378
  * <p>Estimated reserved instance discounts.</p>
379
+ * @public
380
380
  */
381
381
  reservedInstancesDiscount?: number;
382
382
  /**
383
- * @public
384
383
  * <p>Estimated other discounts include all discounts that are not itemized. Itemized discounts
385
384
  * include <code>reservedInstanceDiscount</code> and <code>savingsPlansDiscount</code>.</p>
385
+ * @public
386
386
  */
387
387
  otherDiscount?: number;
388
388
  }
389
389
  /**
390
- * @public
391
390
  * <p>Contains pricing information about the specified resource.</p>
391
+ * @public
392
392
  */
393
393
  export interface ResourcePricing {
394
394
  /**
395
- * @public
396
395
  * <p>The savings estimate using Amazon Web Services public pricing without incorporating any
397
396
  * discounts.</p>
397
+ * @public
398
398
  */
399
399
  estimatedCostBeforeDiscounts?: number;
400
400
  /**
401
- * @public
402
401
  * <p>The estimated net unused amortized commitment for the recommendation.</p>
402
+ * @public
403
403
  */
404
404
  estimatedNetUnusedAmortizedCommitments?: number;
405
405
  /**
406
- * @public
407
406
  * <p>The estimated discounts for a recommendation.</p>
407
+ * @public
408
408
  */
409
409
  estimatedDiscounts?: EstimatedDiscounts;
410
410
  /**
411
- * @public
412
411
  * <p>The savings estimate incorporating all discounts with Amazon Web Services, such as Reserved
413
412
  * Instances and Savings Plans.</p>
413
+ * @public
414
414
  */
415
415
  estimatedCostAfterDiscounts?: number;
416
416
  }
417
417
  /**
418
- * @public
419
418
  * <p>Details about the usage.</p>
419
+ * @public
420
420
  */
421
421
  export interface Usage {
422
422
  /**
423
- * @public
424
423
  * <p>The usage type.</p>
424
+ * @public
425
425
  */
426
426
  usageType?: string;
427
427
  /**
428
- * @public
429
428
  * <p>The usage amount.</p>
429
+ * @public
430
430
  */
431
431
  usageAmount?: number;
432
432
  /**
433
- * @public
434
433
  * <p>The operation value.</p>
434
+ * @public
435
435
  */
436
436
  operation?: string;
437
437
  /**
438
- * @public
439
438
  * <p>The product code.</p>
439
+ * @public
440
440
  */
441
441
  productCode?: string;
442
442
  /**
443
- * @public
444
443
  * <p>The usage unit.</p>
444
+ * @public
445
445
  */
446
446
  unit?: string;
447
447
  }
448
448
  /**
449
- * @public
450
449
  * <p>Cost impact of the resource recommendation.</p>
450
+ * @public
451
451
  */
452
452
  export interface ResourceCostCalculation {
453
453
  /**
454
- * @public
455
454
  * <p>Usage details of the resource recommendation.</p>
455
+ * @public
456
456
  */
457
457
  usages?: Usage[];
458
458
  /**
459
- * @public
460
459
  * <p>Pricing details of the resource recommendation.</p>
460
+ * @public
461
461
  */
462
462
  pricing?: ResourcePricing;
463
463
  }
464
464
  /**
465
- * @public
466
465
  * <p>Describes the Amazon Elastic Block Store volume configuration of the current and
467
466
  * recommended resource configuration for a recommendation.</p>
467
+ * @public
468
468
  */
469
469
  export interface EbsVolume {
470
470
  /**
471
- * @public
472
471
  * <p>The Amazon Elastic Block Store volume configuration used for
473
472
  * recommendations.</p>
473
+ * @public
474
474
  */
475
475
  configuration?: EbsVolumeConfiguration;
476
476
  /**
477
- * @public
478
477
  * <p>Cost impact of the recommendation.</p>
478
+ * @public
479
479
  */
480
480
  costCalculation?: ResourceCostCalculation;
481
481
  }
482
482
  /**
483
- * @public
484
483
  * <p>The Instance configuration used for recommendations.</p>
484
+ * @public
485
485
  */
486
486
  export interface InstanceConfiguration {
487
487
  /**
488
- * @public
489
488
  * <p>Details about the type.</p>
489
+ * @public
490
490
  */
491
491
  type?: string;
492
492
  }
493
493
  /**
494
- * @public
495
494
  * <p>The EC2 auto scaling group configuration used for recommendations.</p>
495
+ * @public
496
496
  */
497
497
  export interface Ec2AutoScalingGroupConfiguration {
498
498
  /**
499
- * @public
500
499
  * <p>Details about the instance.</p>
500
+ * @public
501
501
  */
502
502
  instance?: InstanceConfiguration;
503
503
  }
504
504
  /**
505
- * @public
506
505
  * <p>The EC2 Auto Scaling group recommendation details.</p>
506
+ * @public
507
507
  */
508
508
  export interface Ec2AutoScalingGroup {
509
509
  /**
510
- * @public
511
510
  * <p>The EC2 Auto Scaling group configuration used for recommendations.</p>
511
+ * @public
512
512
  */
513
513
  configuration?: Ec2AutoScalingGroupConfiguration;
514
514
  /**
515
- * @public
516
515
  * <p>Cost impact of the recommendation.</p>
516
+ * @public
517
517
  */
518
518
  costCalculation?: ResourceCostCalculation;
519
519
  }
520
520
  /**
521
- * @public
522
521
  * <p>The EC2 instance configuration used for recommendations.</p>
522
+ * @public
523
523
  */
524
524
  export interface Ec2InstanceConfiguration {
525
525
  /**
526
- * @public
527
526
  * <p>Details about the instance.</p>
527
+ * @public
528
528
  */
529
529
  instance?: InstanceConfiguration;
530
530
  }
531
531
  /**
532
- * @public
533
532
  * <p>Describes the EC2 instance configuration of the current and recommended resource
534
533
  * configuration for a recommendation.</p>
534
+ * @public
535
535
  */
536
536
  export interface Ec2Instance {
537
537
  /**
538
- * @public
539
538
  * <p>The EC2 instance configuration used for recommendations.</p>
539
+ * @public
540
540
  */
541
541
  configuration?: Ec2InstanceConfiguration;
542
542
  /**
543
- * @public
544
543
  * <p>Cost impact of the recommendation.</p>
544
+ * @public
545
545
  */
546
546
  costCalculation?: ResourceCostCalculation;
547
547
  }
548
548
  /**
549
- * @public
550
549
  * <p>The EC2 instance Savings Plans configuration used for recommendations.</p>
550
+ * @public
551
551
  */
552
552
  export interface Ec2InstanceSavingsPlansConfiguration {
553
553
  /**
554
- * @public
555
554
  * <p>The account scope that you want your recommendations for.</p>
555
+ * @public
556
556
  */
557
557
  accountScope?: string;
558
558
  /**
559
- * @public
560
559
  * <p>The Savings Plans recommendation term in years.</p>
560
+ * @public
561
561
  */
562
562
  term?: string;
563
563
  /**
564
- * @public
565
564
  * <p>The payment option for the commitment.</p>
565
+ * @public
566
566
  */
567
567
  paymentOption?: string;
568
568
  /**
569
- * @public
570
569
  * <p>The hourly commitment for the Savings Plans type.</p>
570
+ * @public
571
571
  */
572
572
  hourlyCommitment?: string;
573
573
  /**
574
- * @public
575
574
  * <p>The instance family of the recommended Savings Plan.</p>
575
+ * @public
576
576
  */
577
577
  instanceFamily?: string;
578
578
  /**
579
- * @public
580
579
  * <p>The Amazon Web Services Region of the commitment.</p>
580
+ * @public
581
581
  */
582
582
  savingsPlansRegion?: string;
583
583
  }
584
584
  /**
585
- * @public
586
585
  * <p>The EC2 instance Savings Plans recommendation details.</p>
586
+ * @public
587
587
  */
588
588
  export interface Ec2InstanceSavingsPlans {
589
589
  /**
590
- * @public
591
590
  * <p>The EC2 instance Savings Plans configuration used for recommendations.</p>
591
+ * @public
592
592
  */
593
593
  configuration?: Ec2InstanceSavingsPlansConfiguration;
594
594
  /**
595
- * @public
596
595
  * <p>Cost impact of the Savings Plans purchase recommendation.</p>
596
+ * @public
597
597
  */
598
598
  costCalculation?: SavingsPlansCostCalculation;
599
599
  }
600
600
  /**
601
- * @public
602
601
  * <p>The EC2 reserved instances configuration used for recommendations.</p>
602
+ * @public
603
603
  */
604
604
  export interface Ec2ReservedInstancesConfiguration {
605
605
  /**
606
- * @public
607
606
  * <p>The account scope that you want your recommendations for.</p>
607
+ * @public
608
608
  */
609
609
  accountScope?: string;
610
610
  /**
611
- * @public
612
611
  * <p>The service that you want your recommendations for.</p>
612
+ * @public
613
613
  */
614
614
  service?: string;
615
615
  /**
616
- * @public
617
616
  * <p>The number of normalized units that Amazon Web Services recommends that you
618
617
  * purchase.</p>
618
+ * @public
619
619
  */
620
620
  normalizedUnitsToPurchase?: string;
621
621
  /**
622
- * @public
623
622
  * <p>The reserved instances recommendation term in years.</p>
623
+ * @public
624
624
  */
625
625
  term?: string;
626
626
  /**
627
- * @public
628
627
  * <p>The payment option for the commitment.</p>
628
+ * @public
629
629
  */
630
630
  paymentOption?: string;
631
631
  /**
632
- * @public
633
632
  * <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
633
+ * @public
634
634
  */
635
635
  numberOfInstancesToPurchase?: string;
636
636
  /**
637
- * @public
638
637
  * <p>Indicates whether the recommendation is for standard or convertible reservations.</p>
638
+ * @public
639
639
  */
640
640
  offeringClass?: string;
641
641
  /**
642
- * @public
643
642
  * <p>The instance family of the recommended reservation.</p>
643
+ * @public
644
644
  */
645
645
  instanceFamily?: string;
646
646
  /**
647
- * @public
648
647
  * <p>The type of instance that Amazon Web Services recommends.</p>
648
+ * @public
649
649
  */
650
650
  instanceType?: string;
651
651
  /**
652
- * @public
653
652
  * <p>The Amazon Web Services Region of the commitment.</p>
653
+ * @public
654
654
  */
655
655
  reservedInstancesRegion?: string;
656
656
  /**
657
- * @public
658
657
  * <p>Determines whether the recommendation is for a current generation instance.</p>
658
+ * @public
659
659
  */
660
660
  currentGeneration?: string;
661
661
  /**
662
- * @public
663
662
  * <p>The platform of the recommended reservation. The platform is the specific combination of
664
663
  * operating system, license model, and software on an instance.</p>
664
+ * @public
665
665
  */
666
666
  platform?: string;
667
667
  /**
668
- * @public
669
668
  * <p>Determines whether the recommended reservation is dedicated or shared.</p>
669
+ * @public
670
670
  */
671
671
  tenancy?: string;
672
672
  /**
673
- * @public
674
673
  * <p>Determines whether the recommendation is size flexible.</p>
674
+ * @public
675
675
  */
676
676
  sizeFlexEligible?: boolean;
677
677
  /**
678
- * @public
679
678
  * <p>How much purchasing this instance costs you upfront.</p>
679
+ * @public
680
680
  */
681
681
  upfrontCost?: string;
682
682
  /**
683
- * @public
684
683
  * <p>How much purchasing reserved instances costs you on a monthly basis.</p>
684
+ * @public
685
685
  */
686
686
  monthlyRecurringCost?: string;
687
687
  }
688
688
  /**
689
- * @public
690
689
  * <p>Pricing details for your recommended reserved instance.</p>
690
+ * @public
691
691
  */
692
692
  export interface ReservedInstancesPricing {
693
693
  /**
694
- * @public
695
694
  * <p>The remaining On-Demand cost estimated to not be covered by the recommended reserved
696
695
  * instance, over the length of the lookback period.</p>
696
+ * @public
697
697
  */
698
698
  estimatedOnDemandCost?: number;
699
699
  /**
700
- * @public
701
700
  * <p>The cost of paying for the recommended reserved instance monthly.</p>
701
+ * @public
702
702
  */
703
703
  monthlyReservationEligibleCost?: number;
704
704
  /**
705
- * @public
706
705
  * <p>The savings percentage relative to the total On-Demand costs that are associated with this
707
706
  * instance.</p>
707
+ * @public
708
708
  */
709
709
  savingsPercentage?: number;
710
710
  /**
711
- * @public
712
711
  * <p>The estimated cost of your recurring monthly fees for the recommended reserved instance
713
712
  * across the month.</p>
713
+ * @public
714
714
  */
715
715
  estimatedMonthlyAmortizedReservationCost?: number;
716
716
  }
717
717
  /**
718
- * @public
719
718
  * <p>Cost impact of the purchase recommendation.</p>
719
+ * @public
720
720
  */
721
721
  export interface ReservedInstancesCostCalculation {
722
722
  /**
723
- * @public
724
723
  * <p>Pricing details of the purchase recommendation.</p>
724
+ * @public
725
725
  */
726
726
  pricing?: ReservedInstancesPricing;
727
727
  }
728
728
  /**
729
- * @public
730
729
  * <p>The EC2 reserved instances recommendation details.</p>
730
+ * @public
731
731
  */
732
732
  export interface Ec2ReservedInstances {
733
733
  /**
734
- * @public
735
734
  * <p>The EC2 reserved instances configuration used for recommendations.</p>
735
+ * @public
736
736
  */
737
737
  configuration?: Ec2ReservedInstancesConfiguration;
738
738
  /**
739
- * @public
740
739
  * <p>Cost impact of the purchase recommendation.</p>
740
+ * @public
741
741
  */
742
742
  costCalculation?: ReservedInstancesCostCalculation;
743
743
  }
744
744
  /**
745
- * @public
746
745
  * <p>The ECS service configuration used for recommendations.</p>
746
+ * @public
747
747
  */
748
748
  export interface EcsServiceConfiguration {
749
749
  /**
750
- * @public
751
750
  * <p>Details about the compute configuration.</p>
751
+ * @public
752
752
  */
753
753
  compute?: ComputeConfiguration;
754
754
  }
755
755
  /**
756
- * @public
757
756
  * <p>The ECS service recommendation details.</p>
757
+ * @public
758
758
  */
759
759
  export interface EcsService {
760
760
  /**
761
- * @public
762
761
  * <p>The ECS service configuration used for recommendations.</p>
762
+ * @public
763
763
  */
764
764
  configuration?: EcsServiceConfiguration;
765
765
  /**
766
- * @public
767
766
  * <p>Cost impact of the recommendation.</p>
767
+ * @public
768
768
  */
769
769
  costCalculation?: ResourceCostCalculation;
770
770
  }
771
771
  /**
772
- * @public
773
772
  * <p>The ElastiCache reserved instances configuration used for recommendations.</p>
773
+ * @public
774
774
  */
775
775
  export interface ElastiCacheReservedInstancesConfiguration {
776
776
  /**
777
- * @public
778
777
  * <p>The account scope that you want your recommendations for.</p>
778
+ * @public
779
779
  */
780
780
  accountScope?: string;
781
781
  /**
782
- * @public
783
782
  * <p>The service that you want your recommendations for.</p>
783
+ * @public
784
784
  */
785
785
  service?: string;
786
786
  /**
787
- * @public
788
787
  * <p>The number of normalized units that Amazon Web Services recommends that you
789
788
  * purchase.</p>
789
+ * @public
790
790
  */
791
791
  normalizedUnitsToPurchase?: string;
792
792
  /**
793
- * @public
794
793
  * <p>The reserved instances recommendation term in years.</p>
794
+ * @public
795
795
  */
796
796
  term?: string;
797
797
  /**
798
- * @public
799
798
  * <p>The payment option for the commitment.</p>
799
+ * @public
800
800
  */
801
801
  paymentOption?: string;
802
802
  /**
803
- * @public
804
803
  * <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
804
+ * @public
805
805
  */
806
806
  numberOfInstancesToPurchase?: string;
807
807
  /**
808
- * @public
809
808
  * <p>The instance family of the recommended reservation.</p>
809
+ * @public
810
810
  */
811
811
  instanceFamily?: string;
812
812
  /**
813
- * @public
814
813
  * <p>The type of instance that Amazon Web Services recommends.</p>
814
+ * @public
815
815
  */
816
816
  instanceType?: string;
817
817
  /**
818
- * @public
819
818
  * <p>The Amazon Web Services Region of the commitment.</p>
819
+ * @public
820
820
  */
821
821
  reservedInstancesRegion?: string;
822
822
  /**
823
- * @public
824
823
  * <p>Determines whether the recommendation is for a current generation instance.</p>
824
+ * @public
825
825
  */
826
826
  currentGeneration?: string;
827
827
  /**
828
- * @public
829
828
  * <p>Determines whether the recommendation is size flexible.</p>
829
+ * @public
830
830
  */
831
831
  sizeFlexEligible?: boolean;
832
832
  /**
833
- * @public
834
833
  * <p>How much purchasing this instance costs you upfront.</p>
834
+ * @public
835
835
  */
836
836
  upfrontCost?: string;
837
837
  /**
838
- * @public
839
838
  * <p>How much purchasing reserved instances costs you on a monthly basis.</p>
839
+ * @public
840
840
  */
841
841
  monthlyRecurringCost?: string;
842
842
  }
843
843
  /**
844
- * @public
845
844
  * <p>The ElastiCache reserved instances recommendation details.</p>
845
+ * @public
846
846
  */
847
847
  export interface ElastiCacheReservedInstances {
848
848
  /**
849
- * @public
850
849
  * <p>The ElastiCache reserved instances configuration used for recommendations.</p>
850
+ * @public
851
851
  */
852
852
  configuration?: ElastiCacheReservedInstancesConfiguration;
853
853
  /**
854
- * @public
855
854
  * <p>Cost impact of the purchase recommendation.</p>
855
+ * @public
856
856
  */
857
857
  costCalculation?: ReservedInstancesCostCalculation;
858
858
  }
859
859
  /**
860
- * @public
861
860
  * <p>The Lambda function configuration used for recommendations.</p>
861
+ * @public
862
862
  */
863
863
  export interface LambdaFunctionConfiguration {
864
864
  /**
865
- * @public
866
865
  * <p>Details about the compute configuration.</p>
866
+ * @public
867
867
  */
868
868
  compute?: ComputeConfiguration;
869
869
  }
870
870
  /**
871
- * @public
872
871
  * <p>The Lambda function recommendation details.</p>
872
+ * @public
873
873
  */
874
874
  export interface LambdaFunction {
875
875
  /**
876
- * @public
877
876
  * <p>The Lambda function configuration used for recommendations.</p>
877
+ * @public
878
878
  */
879
879
  configuration?: LambdaFunctionConfiguration;
880
880
  /**
881
- * @public
882
881
  * <p>Cost impact of the recommendation.</p>
882
+ * @public
883
883
  */
884
884
  costCalculation?: ResourceCostCalculation;
885
885
  }
886
886
  /**
887
- * @public
888
887
  * <p>The OpenSearch reserved instances configuration used for recommendations.</p>
888
+ * @public
889
889
  */
890
890
  export interface OpenSearchReservedInstancesConfiguration {
891
891
  /**
892
- * @public
893
892
  * <p>The account scope that you want your recommendations for.</p>
893
+ * @public
894
894
  */
895
895
  accountScope?: string;
896
896
  /**
897
- * @public
898
897
  * <p>The service that you want your recommendations for.</p>
898
+ * @public
899
899
  */
900
900
  service?: string;
901
901
  /**
902
- * @public
903
902
  * <p>The number of normalized units that Amazon Web Services recommends that you
904
903
  * purchase.</p>
904
+ * @public
905
905
  */
906
906
  normalizedUnitsToPurchase?: string;
907
907
  /**
908
- * @public
909
908
  * <p>The reserved instances recommendation term in years.</p>
909
+ * @public
910
910
  */
911
911
  term?: string;
912
912
  /**
913
- * @public
914
913
  * <p>The payment option for the commitment.</p>
914
+ * @public
915
915
  */
916
916
  paymentOption?: string;
917
917
  /**
918
- * @public
919
918
  * <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
919
+ * @public
920
920
  */
921
921
  numberOfInstancesToPurchase?: string;
922
922
  /**
923
- * @public
924
923
  * <p>The type of instance that Amazon Web Services recommends.</p>
924
+ * @public
925
925
  */
926
926
  instanceType?: string;
927
927
  /**
928
- * @public
929
928
  * <p>The Amazon Web Services Region of the commitment.</p>
929
+ * @public
930
930
  */
931
931
  reservedInstancesRegion?: string;
932
932
  /**
933
- * @public
934
933
  * <p>Determines whether the recommendation is for a current generation instance.</p>
934
+ * @public
935
935
  */
936
936
  currentGeneration?: string;
937
937
  /**
938
- * @public
939
938
  * <p>Determines whether the recommendation is size flexible.</p>
939
+ * @public
940
940
  */
941
941
  sizeFlexEligible?: boolean;
942
942
  /**
943
- * @public
944
943
  * <p>How much purchasing this instance costs you upfront.</p>
944
+ * @public
945
945
  */
946
946
  upfrontCost?: string;
947
947
  /**
948
- * @public
949
948
  * <p>How much purchasing reserved instances costs you on a monthly basis.</p>
949
+ * @public
950
950
  */
951
951
  monthlyRecurringCost?: string;
952
952
  }
953
953
  /**
954
- * @public
955
954
  * <p>The OpenSearch reserved instances recommendation details.</p>
955
+ * @public
956
956
  */
957
957
  export interface OpenSearchReservedInstances {
958
958
  /**
959
- * @public
960
959
  * <p>The OpenSearch reserved instances configuration used for recommendations.</p>
960
+ * @public
961
961
  */
962
962
  configuration?: OpenSearchReservedInstancesConfiguration;
963
963
  /**
964
- * @public
965
964
  * <p>Cost impact of the purchase recommendation.</p>
965
+ * @public
966
966
  */
967
967
  costCalculation?: ReservedInstancesCostCalculation;
968
968
  }
969
969
  /**
970
- * @public
971
970
  * <p>The RDS reserved instances configuration used for recommendations.</p>
971
+ * @public
972
972
  */
973
973
  export interface RdsReservedInstancesConfiguration {
974
974
  /**
975
- * @public
976
975
  * <p>The account scope that you want your recommendations for.</p>
976
+ * @public
977
977
  */
978
978
  accountScope?: string;
979
979
  /**
980
- * @public
981
980
  * <p>The service that you want your recommendations for.</p>
981
+ * @public
982
982
  */
983
983
  service?: string;
984
984
  /**
985
- * @public
986
985
  * <p>The number of normalized units that Amazon Web Services recommends that you
987
986
  * purchase.</p>
987
+ * @public
988
988
  */
989
989
  normalizedUnitsToPurchase?: string;
990
990
  /**
991
- * @public
992
991
  * <p>The reserved instances recommendation term in years.</p>
992
+ * @public
993
993
  */
994
994
  term?: string;
995
995
  /**
996
- * @public
997
996
  * <p>The payment option for the commitment.</p>
997
+ * @public
998
998
  */
999
999
  paymentOption?: string;
1000
1000
  /**
1001
- * @public
1002
1001
  * <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
1002
+ * @public
1003
1003
  */
1004
1004
  numberOfInstancesToPurchase?: string;
1005
1005
  /**
1006
- * @public
1007
1006
  * <p>The instance family of the recommended reservation.</p>
1007
+ * @public
1008
1008
  */
1009
1009
  instanceFamily?: string;
1010
1010
  /**
1011
- * @public
1012
1011
  * <p>The type of instance that Amazon Web Services recommends.</p>
1012
+ * @public
1013
1013
  */
1014
1014
  instanceType?: string;
1015
1015
  /**
1016
- * @public
1017
1016
  * <p>The Amazon Web Services Region of the commitment.</p>
1017
+ * @public
1018
1018
  */
1019
1019
  reservedInstancesRegion?: string;
1020
1020
  /**
1021
- * @public
1022
1021
  * <p>Determines whether the recommendation is size flexible.</p>
1022
+ * @public
1023
1023
  */
1024
1024
  sizeFlexEligible?: boolean;
1025
1025
  /**
1026
- * @public
1027
1026
  * <p>Determines whether the recommendation is for a current generation instance.</p>
1027
+ * @public
1028
1028
  */
1029
1029
  currentGeneration?: string;
1030
1030
  /**
1031
- * @public
1032
1031
  * <p>How much purchasing this instance costs you upfront.</p>
1032
+ * @public
1033
1033
  */
1034
1034
  upfrontCost?: string;
1035
1035
  /**
1036
- * @public
1037
1036
  * <p>How much purchasing this instance costs you on a monthly basis.</p>
1037
+ * @public
1038
1038
  */
1039
1039
  monthlyRecurringCost?: string;
1040
1040
  /**
1041
- * @public
1042
1041
  * <p>The license model that the recommended reservation supports.</p>
1042
+ * @public
1043
1043
  */
1044
1044
  licenseModel?: string;
1045
1045
  /**
1046
- * @public
1047
1046
  * <p>The database edition that the recommended reservation supports.</p>
1047
+ * @public
1048
1048
  */
1049
1049
  databaseEdition?: string;
1050
1050
  /**
1051
- * @public
1052
1051
  * <p>The database engine that the recommended reservation supports.</p>
1052
+ * @public
1053
1053
  */
1054
1054
  databaseEngine?: string;
1055
1055
  /**
1056
- * @public
1057
1056
  * <p>Determines whether the recommendation is for a reservation in a single Availability Zone
1058
1057
  * or a reservation with a backup in a second Availability Zone.</p>
1058
+ * @public
1059
1059
  */
1060
1060
  deploymentOption?: string;
1061
1061
  }
1062
1062
  /**
1063
- * @public
1064
1063
  * <p>The RDS reserved instances recommendation details.</p>
1064
+ * @public
1065
1065
  */
1066
1066
  export interface RdsReservedInstances {
1067
1067
  /**
1068
- * @public
1069
1068
  * <p>The RDS reserved instances configuration used for recommendations.</p>
1069
+ * @public
1070
1070
  */
1071
1071
  configuration?: RdsReservedInstancesConfiguration;
1072
1072
  /**
1073
- * @public
1074
1073
  * <p>Cost impact of the purchase recommendation.</p>
1074
+ * @public
1075
1075
  */
1076
1076
  costCalculation?: ReservedInstancesCostCalculation;
1077
1077
  }
1078
1078
  /**
1079
- * @public
1080
1079
  * <p>The Redshift reserved instances configuration used for recommendations.</p>
1080
+ * @public
1081
1081
  */
1082
1082
  export interface RedshiftReservedInstancesConfiguration {
1083
1083
  /**
1084
- * @public
1085
1084
  * <p>The account scope that you want your recommendations for.</p>
1085
+ * @public
1086
1086
  */
1087
1087
  accountScope?: string;
1088
1088
  /**
1089
- * @public
1090
1089
  * <p>The service that you want your recommendations for.</p>
1090
+ * @public
1091
1091
  */
1092
1092
  service?: string;
1093
1093
  /**
1094
- * @public
1095
1094
  * <p>The number of normalized units that Amazon Web Services recommends that you
1096
1095
  * purchase.</p>
1096
+ * @public
1097
1097
  */
1098
1098
  normalizedUnitsToPurchase?: string;
1099
1099
  /**
1100
- * @public
1101
1100
  * <p>The reserved instances recommendation term in years.</p>
1101
+ * @public
1102
1102
  */
1103
1103
  term?: string;
1104
1104
  /**
1105
- * @public
1106
1105
  * <p>The payment option for the commitment.</p>
1106
+ * @public
1107
1107
  */
1108
1108
  paymentOption?: string;
1109
1109
  /**
1110
- * @public
1111
1110
  * <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
1111
+ * @public
1112
1112
  */
1113
1113
  numberOfInstancesToPurchase?: string;
1114
1114
  /**
1115
- * @public
1116
1115
  * <p>The instance family of the recommended reservation.</p>
1116
+ * @public
1117
1117
  */
1118
1118
  instanceFamily?: string;
1119
1119
  /**
1120
- * @public
1121
1120
  * <p>The type of instance that Amazon Web Services recommends.</p>
1121
+ * @public
1122
1122
  */
1123
1123
  instanceType?: string;
1124
1124
  /**
1125
- * @public
1126
1125
  * <p>The Amazon Web Services Region of the commitment.</p>
1126
+ * @public
1127
1127
  */
1128
1128
  reservedInstancesRegion?: string;
1129
1129
  /**
1130
- * @public
1131
1130
  * <p>Determines whether the recommendation is size flexible.</p>
1131
+ * @public
1132
1132
  */
1133
1133
  sizeFlexEligible?: boolean;
1134
1134
  /**
1135
- * @public
1136
1135
  * <p>Determines whether the recommendation is for a current generation instance.</p>
1136
+ * @public
1137
1137
  */
1138
1138
  currentGeneration?: string;
1139
1139
  /**
1140
- * @public
1141
1140
  * <p>How much purchasing this instance costs you upfront.</p>
1141
+ * @public
1142
1142
  */
1143
1143
  upfrontCost?: string;
1144
1144
  /**
1145
- * @public
1146
1145
  * <p>How much purchasing reserved instances costs you on a monthly basis.</p>
1146
+ * @public
1147
1147
  */
1148
1148
  monthlyRecurringCost?: string;
1149
1149
  }
1150
1150
  /**
1151
- * @public
1152
1151
  * <p>The Redshift reserved instances recommendation details.</p>
1152
+ * @public
1153
1153
  */
1154
1154
  export interface RedshiftReservedInstances {
1155
1155
  /**
1156
- * @public
1157
1156
  * <p>The Redshift reserved instances configuration used for recommendations.</p>
1157
+ * @public
1158
1158
  */
1159
1159
  configuration?: RedshiftReservedInstancesConfiguration;
1160
1160
  /**
1161
- * @public
1162
1161
  * <p>Cost impact of the purchase recommendation.</p>
1162
+ * @public
1163
1163
  */
1164
1164
  costCalculation?: ReservedInstancesCostCalculation;
1165
1165
  }
1166
1166
  /**
1167
- * @public
1168
1167
  * <p>The SageMaker Savings Plans configuration used for recommendations.</p>
1168
+ * @public
1169
1169
  */
1170
1170
  export interface SageMakerSavingsPlansConfiguration {
1171
1171
  /**
1172
- * @public
1173
1172
  * <p>The account scope that you want your recommendations for.</p>
1173
+ * @public
1174
1174
  */
1175
1175
  accountScope?: string;
1176
1176
  /**
1177
- * @public
1178
1177
  * <p>The Savings Plans recommendation term in years.</p>
1178
+ * @public
1179
1179
  */
1180
1180
  term?: string;
1181
1181
  /**
1182
- * @public
1183
1182
  * <p>The payment option for the commitment.</p>
1183
+ * @public
1184
1184
  */
1185
1185
  paymentOption?: string;
1186
1186
  /**
1187
- * @public
1188
1187
  * <p>The hourly commitment for the Savings Plans type.</p>
1188
+ * @public
1189
1189
  */
1190
1190
  hourlyCommitment?: string;
1191
1191
  }
1192
1192
  /**
1193
- * @public
1194
1193
  * <p>The SageMaker Savings Plans recommendation details.</p>
1194
+ * @public
1195
1195
  */
1196
1196
  export interface SageMakerSavingsPlans {
1197
1197
  /**
1198
- * @public
1199
1198
  * <p>The SageMaker Savings Plans configuration used for recommendations.</p>
1199
+ * @public
1200
1200
  */
1201
1201
  configuration?: SageMakerSavingsPlansConfiguration;
1202
1202
  /**
1203
- * @public
1204
1203
  * <p>Cost impact of the Savings Plans purchase recommendation.</p>
1204
+ * @public
1205
1205
  */
1206
1206
  costCalculation?: SavingsPlansCostCalculation;
1207
1207
  }
1208
1208
  /**
1209
- * @public
1210
1209
  * <p>Contains detailed information about the specified resource.</p>
1210
+ * @public
1211
1211
  */
1212
1212
  export type ResourceDetails = ResourceDetails.ComputeSavingsPlansMember | ResourceDetails.EbsVolumeMember | ResourceDetails.Ec2AutoScalingGroupMember | ResourceDetails.Ec2InstanceMember | ResourceDetails.Ec2InstanceSavingsPlansMember | ResourceDetails.Ec2ReservedInstancesMember | ResourceDetails.EcsServiceMember | ResourceDetails.ElastiCacheReservedInstancesMember | ResourceDetails.LambdaFunctionMember | ResourceDetails.OpenSearchReservedInstancesMember | ResourceDetails.RdsReservedInstancesMember | ResourceDetails.RedshiftReservedInstancesMember | ResourceDetails.SageMakerSavingsPlansMember | ResourceDetails.$UnknownMember;
1213
1213
  /**
@@ -1215,8 +1215,8 @@ export type ResourceDetails = ResourceDetails.ComputeSavingsPlansMember | Resour
1215
1215
  */
1216
1216
  export declare namespace ResourceDetails {
1217
1217
  /**
1218
- * @public
1219
1218
  * <p>The Lambda function recommendation details.</p>
1219
+ * @public
1220
1220
  */
1221
1221
  interface LambdaFunctionMember {
1222
1222
  lambdaFunction: LambdaFunction;
@@ -1235,8 +1235,8 @@ export declare namespace ResourceDetails {
1235
1235
  $unknown?: never;
1236
1236
  }
1237
1237
  /**
1238
- * @public
1239
1238
  * <p>The ECS service recommendation details.</p>
1239
+ * @public
1240
1240
  */
1241
1241
  interface EcsServiceMember {
1242
1242
  lambdaFunction?: never;
@@ -1255,8 +1255,8 @@ export declare namespace ResourceDetails {
1255
1255
  $unknown?: never;
1256
1256
  }
1257
1257
  /**
1258
- * @public
1259
1258
  * <p>The EC2 instance recommendation details.</p>
1259
+ * @public
1260
1260
  */
1261
1261
  interface Ec2InstanceMember {
1262
1262
  lambdaFunction?: never;
@@ -1275,8 +1275,8 @@ export declare namespace ResourceDetails {
1275
1275
  $unknown?: never;
1276
1276
  }
1277
1277
  /**
1278
- * @public
1279
1278
  * <p>The Amazon Elastic Block Store volume recommendation details.</p>
1279
+ * @public
1280
1280
  */
1281
1281
  interface EbsVolumeMember {
1282
1282
  lambdaFunction?: never;
@@ -1295,8 +1295,8 @@ export declare namespace ResourceDetails {
1295
1295
  $unknown?: never;
1296
1296
  }
1297
1297
  /**
1298
- * @public
1299
1298
  * <p>The EC2 Auto Scaling group recommendation details.</p>
1299
+ * @public
1300
1300
  */
1301
1301
  interface Ec2AutoScalingGroupMember {
1302
1302
  lambdaFunction?: never;
@@ -1315,8 +1315,8 @@ export declare namespace ResourceDetails {
1315
1315
  $unknown?: never;
1316
1316
  }
1317
1317
  /**
1318
- * @public
1319
1318
  * <p>The EC2 reserved instances recommendation details.</p>
1319
+ * @public
1320
1320
  */
1321
1321
  interface Ec2ReservedInstancesMember {
1322
1322
  lambdaFunction?: never;
@@ -1335,8 +1335,8 @@ export declare namespace ResourceDetails {
1335
1335
  $unknown?: never;
1336
1336
  }
1337
1337
  /**
1338
- * @public
1339
1338
  * <p>The RDS reserved instances recommendation details.</p>
1339
+ * @public
1340
1340
  */
1341
1341
  interface RdsReservedInstancesMember {
1342
1342
  lambdaFunction?: never;
@@ -1355,8 +1355,8 @@ export declare namespace ResourceDetails {
1355
1355
  $unknown?: never;
1356
1356
  }
1357
1357
  /**
1358
- * @public
1359
1358
  * <p>The ElastiCache reserved instances recommendation details.</p>
1359
+ * @public
1360
1360
  */
1361
1361
  interface ElastiCacheReservedInstancesMember {
1362
1362
  lambdaFunction?: never;
@@ -1375,8 +1375,8 @@ export declare namespace ResourceDetails {
1375
1375
  $unknown?: never;
1376
1376
  }
1377
1377
  /**
1378
- * @public
1379
1378
  * <p>The OpenSearch reserved instances recommendation details.</p>
1379
+ * @public
1380
1380
  */
1381
1381
  interface OpenSearchReservedInstancesMember {
1382
1382
  lambdaFunction?: never;
@@ -1395,8 +1395,8 @@ export declare namespace ResourceDetails {
1395
1395
  $unknown?: never;
1396
1396
  }
1397
1397
  /**
1398
- * @public
1399
1398
  * <p>The Redshift reserved instances recommendation details.</p>
1399
+ * @public
1400
1400
  */
1401
1401
  interface RedshiftReservedInstancesMember {
1402
1402
  lambdaFunction?: never;
@@ -1415,8 +1415,8 @@ export declare namespace ResourceDetails {
1415
1415
  $unknown?: never;
1416
1416
  }
1417
1417
  /**
1418
- * @public
1419
1418
  * <p>The EC2 instance Savings Plans recommendation details.</p>
1419
+ * @public
1420
1420
  */
1421
1421
  interface Ec2InstanceSavingsPlansMember {
1422
1422
  lambdaFunction?: never;
@@ -1435,8 +1435,8 @@ export declare namespace ResourceDetails {
1435
1435
  $unknown?: never;
1436
1436
  }
1437
1437
  /**
1438
- * @public
1439
1438
  * <p>The Compute Savings Plans recommendation details.</p>
1439
+ * @public
1440
1440
  */
1441
1441
  interface ComputeSavingsPlansMember {
1442
1442
  lambdaFunction?: never;
@@ -1455,8 +1455,8 @@ export declare namespace ResourceDetails {
1455
1455
  $unknown?: never;
1456
1456
  }
1457
1457
  /**
1458
- * @public
1459
1458
  * <p>The SageMaker Savings Plans recommendation details.</p>
1459
+ * @public
1460
1460
  */
1461
1461
  interface SageMakerSavingsPlansMember {
1462
1462
  lambdaFunction?: never;
@@ -1562,18 +1562,18 @@ export declare const Source: {
1562
1562
  */
1563
1563
  export type Source = (typeof Source)[keyof typeof Source];
1564
1564
  /**
1565
- * @public
1566
1565
  * <p>The tag structure that contains a tag key and value.</p>
1566
+ * @public
1567
1567
  */
1568
1568
  export interface Tag {
1569
1569
  /**
1570
- * @public
1571
1570
  * <p>The key that's associated with the tag.</p>
1571
+ * @public
1572
1572
  */
1573
1573
  key?: string;
1574
1574
  /**
1575
- * @public
1576
1575
  * <p>The value that's associated with the tag.</p>
1576
+ * @public
1577
1577
  */
1578
1578
  value?: string;
1579
1579
  }
@@ -1582,134 +1582,134 @@ export interface Tag {
1582
1582
  */
1583
1583
  export interface GetRecommendationResponse {
1584
1584
  /**
1585
- * @public
1586
1585
  * <p>The ID for the recommendation.</p>
1586
+ * @public
1587
1587
  */
1588
1588
  recommendationId?: string;
1589
1589
  /**
1590
- * @public
1591
1590
  * <p>The unique identifier for the resource. This is the same as the Amazon Resource Name
1592
1591
  * (ARN), if available.</p>
1592
+ * @public
1593
1593
  */
1594
1594
  resourceId?: string;
1595
1595
  /**
1596
- * @public
1597
1596
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1597
+ * @public
1598
1598
  */
1599
1599
  resourceArn?: string;
1600
1600
  /**
1601
- * @public
1602
1601
  * <p>The account that the recommendation is for.</p>
1602
+ * @public
1603
1603
  */
1604
1604
  accountId?: string;
1605
1605
  /**
1606
- * @public
1607
1606
  * <p>The currency code used for the recommendation.</p>
1607
+ * @public
1608
1608
  */
1609
1609
  currencyCode?: string;
1610
1610
  /**
1611
- * @public
1612
1611
  * <p>The lookback period that's used to generate the recommendation.</p>
1612
+ * @public
1613
1613
  */
1614
1614
  recommendationLookbackPeriodInDays?: number;
1615
1615
  /**
1616
- * @public
1617
1616
  * <p>The lookback period used to calculate cost impact for a recommendation.</p>
1617
+ * @public
1618
1618
  */
1619
1619
  costCalculationLookbackPeriodInDays?: number;
1620
1620
  /**
1621
- * @public
1622
1621
  * <p>The estimated savings percentage relative to the total cost over the cost calculation
1623
1622
  * lookback period.</p>
1623
+ * @public
1624
1624
  */
1625
1625
  estimatedSavingsPercentage?: number;
1626
1626
  /**
1627
- * @public
1628
1627
  * <p>The estimated savings amount over the lookback period used to calculate cost impact for a
1629
1628
  * recommendation.</p>
1629
+ * @public
1630
1630
  */
1631
1631
  estimatedSavingsOverCostCalculationLookbackPeriod?: number;
1632
1632
  /**
1633
- * @public
1634
1633
  * <p>The type of resource.</p>
1634
+ * @public
1635
1635
  */
1636
1636
  currentResourceType?: ResourceType;
1637
1637
  /**
1638
- * @public
1639
1638
  * <p>The resource type of the recommendation.</p>
1639
+ * @public
1640
1640
  */
1641
1641
  recommendedResourceType?: ResourceType;
1642
1642
  /**
1643
- * @public
1644
1643
  * <p>The Amazon Web Services Region of the resource.</p>
1644
+ * @public
1645
1645
  */
1646
1646
  region?: string;
1647
1647
  /**
1648
- * @public
1649
1648
  * <p>The source of the recommendation.</p>
1649
+ * @public
1650
1650
  */
1651
1651
  source?: Source;
1652
1652
  /**
1653
- * @public
1654
1653
  * <p>The time when the recommendation was last generated.</p>
1654
+ * @public
1655
1655
  */
1656
1656
  lastRefreshTimestamp?: Date;
1657
1657
  /**
1658
- * @public
1659
1658
  * <p>The estimated monthly savings amount for the recommendation.</p>
1659
+ * @public
1660
1660
  */
1661
1661
  estimatedMonthlySavings?: number;
1662
1662
  /**
1663
- * @public
1664
1663
  * <p>The estimated monthly cost of the recommendation.</p>
1664
+ * @public
1665
1665
  */
1666
1666
  estimatedMonthlyCost?: number;
1667
1667
  /**
1668
- * @public
1669
1668
  * <p>The effort required to implement the recommendation.</p>
1669
+ * @public
1670
1670
  */
1671
1671
  implementationEffort?: ImplementationEffort;
1672
1672
  /**
1673
- * @public
1674
1673
  * <p>Whether or not implementing the recommendation requires a restart.</p>
1674
+ * @public
1675
1675
  */
1676
1676
  restartNeeded?: boolean;
1677
1677
  /**
1678
- * @public
1679
1678
  * <p>The type of action you can take by adopting the recommendation.</p>
1679
+ * @public
1680
1680
  */
1681
1681
  actionType?: ActionType;
1682
1682
  /**
1683
- * @public
1684
1683
  * <p>Whether or not implementing the recommendation can be rolled back.</p>
1684
+ * @public
1685
1685
  */
1686
1686
  rollbackPossible?: boolean;
1687
1687
  /**
1688
- * @public
1689
1688
  * <p>The details for the resource.</p>
1689
+ * @public
1690
1690
  */
1691
1691
  currentResourceDetails?: ResourceDetails;
1692
1692
  /**
1693
- * @public
1694
1693
  * <p>The details about the recommended resource.</p>
1694
+ * @public
1695
1695
  */
1696
1696
  recommendedResourceDetails?: ResourceDetails;
1697
1697
  /**
1698
- * @public
1699
1698
  * <p>A list of tags associated with the resource for which the recommendation exists.</p>
1699
+ * @public
1700
1700
  */
1701
1701
  tags?: Tag[];
1702
1702
  }
1703
1703
  /**
1704
- * @public
1705
1704
  * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
1705
+ * @public
1706
1706
  */
1707
1707
  export declare class ResourceNotFoundException extends __BaseException {
1708
1708
  readonly name: "ResourceNotFoundException";
1709
1709
  readonly $fault: "client";
1710
1710
  /**
1711
- * @public
1712
1711
  * <p>The identifier of the resource that was not found.</p>
1712
+ * @public
1713
1713
  */
1714
1714
  resourceId: string | undefined;
1715
1715
  /**
@@ -1722,23 +1722,23 @@ export declare class ResourceNotFoundException extends __BaseException {
1722
1722
  */
1723
1723
  export interface ListEnrollmentStatusesRequest {
1724
1724
  /**
1725
- * @public
1726
1725
  * <p>Indicates whether to return the enrollment status for the organization.</p>
1726
+ * @public
1727
1727
  */
1728
1728
  includeOrganizationInfo?: boolean;
1729
1729
  /**
1730
- * @public
1731
1730
  * <p>The account ID of a member account in the organization.</p>
1731
+ * @public
1732
1732
  */
1733
1733
  accountId?: string;
1734
1734
  /**
1735
- * @public
1736
1735
  * <p>The token to retrieve the next set of results.</p>
1736
+ * @public
1737
1737
  */
1738
1738
  nextToken?: string;
1739
1739
  /**
1740
- * @public
1741
1740
  * <p>The maximum number of objects that are returned for the request.</p>
1741
+ * @public
1742
1742
  */
1743
1743
  maxResults?: number;
1744
1744
  }
@@ -1747,82 +1747,82 @@ export interface ListEnrollmentStatusesRequest {
1747
1747
  */
1748
1748
  export interface ListEnrollmentStatusesResponse {
1749
1749
  /**
1750
- * @public
1751
1750
  * <p>The enrollment status of a specific account ID, including creation and last updated
1752
1751
  * timestamps.</p>
1752
+ * @public
1753
1753
  */
1754
1754
  items?: AccountEnrollmentStatus[];
1755
1755
  /**
1756
- * @public
1757
1756
  * <p>The enrollment status of all member accounts in the organization if the account is the
1758
1757
  * management account.</p>
1758
+ * @public
1759
1759
  */
1760
1760
  includeMemberAccounts?: boolean;
1761
1761
  /**
1762
- * @public
1763
1762
  * <p>The token to retrieve the next set of results.</p>
1763
+ * @public
1764
1764
  */
1765
1765
  nextToken?: string;
1766
1766
  }
1767
1767
  /**
1768
- * @public
1769
1768
  * <p>Describes a filter that returns a more specific list of recommendations. Filters
1770
1769
  * recommendations by different dimensions.</p>
1770
+ * @public
1771
1771
  */
1772
1772
  export interface Filter {
1773
1773
  /**
1774
- * @public
1775
1774
  * <p>Whether or not implementing the recommendation requires a restart.</p>
1775
+ * @public
1776
1776
  */
1777
1777
  restartNeeded?: boolean;
1778
1778
  /**
1779
- * @public
1780
1779
  * <p>Whether or not implementing the recommendation can be rolled back.</p>
1780
+ * @public
1781
1781
  */
1782
1782
  rollbackPossible?: boolean;
1783
1783
  /**
1784
- * @public
1785
1784
  * <p>The effort required to implement the recommendation.</p>
1785
+ * @public
1786
1786
  */
1787
1787
  implementationEfforts?: ImplementationEffort[];
1788
1788
  /**
1789
- * @public
1790
1789
  * <p>The account that the recommendation is for.</p>
1790
+ * @public
1791
1791
  */
1792
1792
  accountIds?: string[];
1793
1793
  /**
1794
- * @public
1795
1794
  * <p>The Amazon Web Services Region of the resource.</p>
1795
+ * @public
1796
1796
  */
1797
1797
  regions?: string[];
1798
1798
  /**
1799
- * @public
1800
1799
  * <p>The resource type of the recommendation.</p>
1800
+ * @public
1801
1801
  */
1802
1802
  resourceTypes?: ResourceType[];
1803
1803
  /**
1804
- * @public
1805
1804
  * <p>The type of action you can take by adopting the recommendation.</p>
1805
+ * @public
1806
1806
  */
1807
1807
  actionTypes?: ActionType[];
1808
1808
  /**
1809
- * @public
1810
1809
  * <p>A list of tags assigned to the recommendation.</p>
1810
+ * @public
1811
1811
  */
1812
1812
  tags?: Tag[];
1813
1813
  /**
1814
- * @public
1815
1814
  * <p>The resource ID of the recommendation.</p>
1815
+ * @public
1816
1816
  */
1817
1817
  resourceIds?: string[];
1818
1818
  /**
1819
- * @public
1820
1819
  * <p>The Amazon Resource Name (ARN) of the recommendation.</p>
1820
+ * @public
1821
1821
  */
1822
1822
  resourceArns?: string[];
1823
1823
  /**
1824
- * @public
1825
1824
  * <p>The IDs for the recommendations.</p>
1825
+ * @public
1826
1826
  */
1827
1827
  recommendationIds?: string[];
1828
1828
  }
@@ -1839,18 +1839,18 @@ export declare const Order: {
1839
1839
  */
1840
1840
  export type Order = (typeof Order)[keyof typeof Order];
1841
1841
  /**
1842
- * @public
1843
1842
  * <p>Defines how rows will be sorted in the response.</p>
1843
+ * @public
1844
1844
  */
1845
1845
  export interface OrderBy {
1846
1846
  /**
1847
- * @public
1848
1847
  * <p>Sorts by dimension values.</p>
1848
+ * @public
1849
1849
  */
1850
1850
  dimension?: string;
1851
1851
  /**
1852
- * @public
1853
1852
  * <p>The order that's used to sort the data.</p>
1853
+ * @public
1854
1854
  */
1855
1855
  order?: Order;
1856
1856
  }
@@ -1859,141 +1859,141 @@ export interface OrderBy {
1859
1859
  */
1860
1860
  export interface ListRecommendationsRequest {
1861
1861
  /**
1862
- * @public
1863
1862
  * <p>The constraints that you want all returned recommendations to match.</p>
1863
+ * @public
1864
1864
  */
1865
1865
  filter?: Filter;
1866
1866
  /**
1867
- * @public
1868
1867
  * <p>The ordering of recommendations by a dimension.</p>
1868
+ * @public
1869
1869
  */
1870
1870
  orderBy?: OrderBy;
1871
1871
  /**
1872
- * @public
1873
1872
  * <p>List of all recommendations for a resource, or a single recommendation if de-duped by
1874
1873
  * <code>resourceId</code>.</p>
1874
+ * @public
1875
1875
  */
1876
1876
  includeAllRecommendations?: boolean;
1877
1877
  /**
1878
- * @public
1879
1878
  * <p>The maximum number of recommendations that are returned for the request.</p>
1879
+ * @public
1880
1880
  */
1881
1881
  maxResults?: number;
1882
1882
  /**
1883
- * @public
1884
1883
  * <p>The token to retrieve the next set of results.</p>
1884
+ * @public
1885
1885
  */
1886
1886
  nextToken?: string;
1887
1887
  }
1888
1888
  /**
1889
- * @public
1890
1889
  * <p>Describes a recommendation.</p>
1890
+ * @public
1891
1891
  */
1892
1892
  export interface Recommendation {
1893
1893
  /**
1894
- * @public
1895
1894
  * <p>The ID for the recommendation.</p>
1895
+ * @public
1896
1896
  */
1897
1897
  recommendationId?: string;
1898
1898
  /**
1899
- * @public
1900
1899
  * <p>The account that the recommendation is for.</p>
1900
+ * @public
1901
1901
  */
1902
1902
  accountId?: string;
1903
1903
  /**
1904
- * @public
1905
1904
  * <p>The Amazon Web Services Region of the resource.</p>
1905
+ * @public
1906
1906
  */
1907
1907
  region?: string;
1908
1908
  /**
1909
- * @public
1910
1909
  * <p>The resource ID for the recommendation.</p>
1910
+ * @public
1911
1911
  */
1912
1912
  resourceId?: string;
1913
1913
  /**
1914
- * @public
1915
1914
  * <p>The Amazon Resource Name (ARN) for the recommendation.</p>
1915
+ * @public
1916
1916
  */
1917
1917
  resourceArn?: string;
1918
1918
  /**
1919
- * @public
1920
1919
  * <p>The current resource type.</p>
1920
+ * @public
1921
1921
  */
1922
1922
  currentResourceType?: string;
1923
1923
  /**
1924
- * @public
1925
1924
  * <p>The recommended resource type.</p>
1925
+ * @public
1926
1926
  */
1927
1927
  recommendedResourceType?: string;
1928
1928
  /**
1929
- * @public
1930
1929
  * <p>The estimated monthly savings amount for the recommendation.</p>
1930
+ * @public
1931
1931
  */
1932
1932
  estimatedMonthlySavings?: number;
1933
1933
  /**
1934
- * @public
1935
1934
  * <p>The estimated savings percentage relative to the total cost over the cost calculation
1936
1935
  * lookback period.</p>
1936
+ * @public
1937
1937
  */
1938
1938
  estimatedSavingsPercentage?: number;
1939
1939
  /**
1940
- * @public
1941
1940
  * <p>The estimated monthly cost for the recommendation.</p>
1941
+ * @public
1942
1942
  */
1943
1943
  estimatedMonthlyCost?: number;
1944
1944
  /**
1945
- * @public
1946
1945
  * <p>The currency code used for the recommendation.</p>
1946
+ * @public
1947
1947
  */
1948
1948
  currencyCode?: string;
1949
1949
  /**
1950
- * @public
1951
1950
  * <p>The effort required to implement the recommendation.</p>
1951
+ * @public
1952
1952
  */
1953
1953
  implementationEffort?: string;
1954
1954
  /**
1955
- * @public
1956
1955
  * <p>Whether or not implementing the recommendation requires a restart.</p>
1956
+ * @public
1957
1957
  */
1958
1958
  restartNeeded?: boolean;
1959
1959
  /**
1960
- * @public
1961
1960
  * <p>The type of tasks that can be carried out by this action.</p>
1961
+ * @public
1962
1962
  */
1963
1963
  actionType?: string;
1964
1964
  /**
1965
- * @public
1966
1965
  * <p>Whether or not implementing the recommendation can be rolled back.</p>
1966
+ * @public
1967
1967
  */
1968
1968
  rollbackPossible?: boolean;
1969
1969
  /**
1970
- * @public
1971
1970
  * <p>Describes the current resource.</p>
1971
+ * @public
1972
1972
  */
1973
1973
  currentResourceSummary?: string;
1974
1974
  /**
1975
- * @public
1976
1975
  * <p>Describes the recommended resource.</p>
1976
+ * @public
1977
1977
  */
1978
1978
  recommendedResourceSummary?: string;
1979
1979
  /**
1980
- * @public
1981
1980
  * <p>The time when the recommendation was last generated.</p>
1981
+ * @public
1982
1982
  */
1983
1983
  lastRefreshTimestamp?: Date;
1984
1984
  /**
1985
- * @public
1986
1985
  * <p>The lookback period that's used to generate the recommendation.</p>
1986
+ * @public
1987
1987
  */
1988
1988
  recommendationLookbackPeriodInDays?: number;
1989
1989
  /**
1990
- * @public
1991
1990
  * <p>The source of the recommendation.</p>
1991
+ * @public
1992
1992
  */
1993
1993
  source?: Source;
1994
1994
  /**
1995
- * @public
1996
1995
  * <p>A list of tags assigned to the recommendation.</p>
1996
+ * @public
1997
1997
  */
1998
1998
  tags?: Tag[];
1999
1999
  }
@@ -2002,13 +2002,13 @@ export interface Recommendation {
2002
2002
  */
2003
2003
  export interface ListRecommendationsResponse {
2004
2004
  /**
2005
- * @public
2006
2005
  * <p>List of all savings recommendations.</p>
2006
+ * @public
2007
2007
  */
2008
2008
  items?: Recommendation[];
2009
2009
  /**
2010
- * @public
2011
2010
  * <p>The token to retrieve the next set of results.</p>
2011
+ * @public
2012
2012
  */
2013
2013
  nextToken?: string;
2014
2014
  }
@@ -2017,46 +2017,46 @@ export interface ListRecommendationsResponse {
2017
2017
  */
2018
2018
  export interface ListRecommendationSummariesRequest {
2019
2019
  /**
2020
- * @public
2021
2020
  * <p>Describes a filter that returns a more specific list of recommendations. Filters
2022
2021
  * recommendations by different dimensions.</p>
2022
+ * @public
2023
2023
  */
2024
2024
  filter?: Filter;
2025
2025
  /**
2026
- * @public
2027
2026
  * <p>The grouping of recommendations by a dimension.</p>
2027
+ * @public
2028
2028
  */
2029
2029
  groupBy: string | undefined;
2030
2030
  /**
2031
- * @public
2032
2031
  * <p>The maximum number of recommendations that are returned for the request.</p>
2032
+ * @public
2033
2033
  */
2034
2034
  maxResults?: number;
2035
2035
  /**
2036
- * @public
2037
2036
  * <p>The token to retrieve the next set of results.</p>
2037
+ * @public
2038
2038
  */
2039
2039
  nextToken?: string;
2040
2040
  }
2041
2041
  /**
2042
- * @public
2043
2042
  * <p>The summary of rightsizing recommendations, including de-duped savings from all types of
2044
2043
  * recommendations.</p>
2044
+ * @public
2045
2045
  */
2046
2046
  export interface RecommendationSummary {
2047
2047
  /**
2048
- * @public
2049
2048
  * <p>The grouping of recommendations.</p>
2049
+ * @public
2050
2050
  */
2051
2051
  group?: string;
2052
2052
  /**
2053
- * @public
2054
2053
  * <p>The estimated total savings resulting from modifications, on a monthly basis.</p>
2054
+ * @public
2055
2055
  */
2056
2056
  estimatedMonthlySavings?: number;
2057
2057
  /**
2058
- * @public
2059
2058
  * <p>The total number of instance recommendations.</p>
2059
+ * @public
2060
2060
  */
2061
2061
  recommendationCount?: number;
2062
2062
  }
@@ -2065,28 +2065,28 @@ export interface RecommendationSummary {
2065
2065
  */
2066
2066
  export interface ListRecommendationSummariesResponse {
2067
2067
  /**
2068
- * @public
2069
2068
  * <p>The total overall savings for the aggregated view.</p>
2069
+ * @public
2070
2070
  */
2071
2071
  estimatedTotalDedupedSavings?: number;
2072
2072
  /**
2073
- * @public
2074
2073
  * <p>List of all savings recommendations.</p>
2074
+ * @public
2075
2075
  */
2076
2076
  items?: RecommendationSummary[];
2077
2077
  /**
2078
- * @public
2079
2078
  * <p>The dimension used to group the recommendations by.</p>
2079
+ * @public
2080
2080
  */
2081
2081
  groupBy?: string;
2082
2082
  /**
2083
- * @public
2084
2083
  * <p>The currency code used for the recommendation.</p>
2084
+ * @public
2085
2085
  */
2086
2086
  currencyCode?: string;
2087
2087
  /**
2088
- * @public
2089
2088
  * <p>The token to retrieve the next set of results.</p>
2089
+ * @public
2090
2090
  */
2091
2091
  nextToken?: string;
2092
2092
  }
@@ -2095,14 +2095,14 @@ export interface ListRecommendationSummariesResponse {
2095
2095
  */
2096
2096
  export interface UpdateEnrollmentStatusRequest {
2097
2097
  /**
2098
- * @public
2099
2098
  * <p>Sets the account status.</p>
2099
+ * @public
2100
2100
  */
2101
2101
  status: EnrollmentStatus | undefined;
2102
2102
  /**
2103
- * @public
2104
2103
  * <p>Indicates whether to enroll member accounts of the organization if the account is the
2105
2104
  * management account.</p>
2105
+ * @public
2106
2106
  */
2107
2107
  includeMemberAccounts?: boolean;
2108
2108
  }
@@ -2111,8 +2111,8 @@ export interface UpdateEnrollmentStatusRequest {
2111
2111
  */
2112
2112
  export interface UpdateEnrollmentStatusResponse {
2113
2113
  /**
2114
- * @public
2115
2114
  * <p>The enrollment status of the account.</p>
2115
+ * @public
2116
2116
  */
2117
2117
  status?: string;
2118
2118
  }
@@ -2121,13 +2121,13 @@ export interface UpdateEnrollmentStatusResponse {
2121
2121
  */
2122
2122
  export interface UpdatePreferencesRequest {
2123
2123
  /**
2124
- * @public
2125
2124
  * <p>Sets the "savings estimation mode" preference.</p>
2125
+ * @public
2126
2126
  */
2127
2127
  savingsEstimationMode?: SavingsEstimationMode;
2128
2128
  /**
2129
- * @public
2130
2129
  * <p>Sets the "member account discount visibility" preference.</p>
2130
+ * @public
2131
2131
  */
2132
2132
  memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
2133
2133
  }
@@ -2136,13 +2136,13 @@ export interface UpdatePreferencesRequest {
2136
2136
  */
2137
2137
  export interface UpdatePreferencesResponse {
2138
2138
  /**
2139
- * @public
2140
2139
  * <p>Shows the status of the "savings estimation mode" preference.</p>
2140
+ * @public
2141
2141
  */
2142
2142
  savingsEstimationMode?: SavingsEstimationMode;
2143
2143
  /**
2144
- * @public
2145
2144
  * <p>Shows the status of the "member account discount visibility" preference.</p>
2145
+ * @public
2146
2146
  */
2147
2147
  memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
2148
2148
  }