@aws-sdk/client-cost-optimization-hub 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +262 -262
- package/dist-types/ts3.4/models/models_0.d.ts +262 -262
- package/package.json +7 -7
|
@@ -34,22 +34,22 @@ export interface AccountEnrollmentStatus {
|
|
|
34
34
|
* <p>The Amazon Web Services account ID.</p>
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
37
|
-
accountId?: string;
|
|
37
|
+
accountId?: string | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* <p>The account enrollment status.</p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
status?: EnrollmentStatus;
|
|
42
|
+
status?: EnrollmentStatus | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* <p>The time when the account enrollment status was last updated.</p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
lastUpdatedTimestamp?: Date;
|
|
47
|
+
lastUpdatedTimestamp?: Date | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* <p>The time when the account enrollment status was created.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
createdTimestamp?: Date;
|
|
52
|
+
createdTimestamp?: Date | undefined;
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
55
|
* @public
|
|
@@ -77,12 +77,12 @@ export interface BlockStoragePerformanceConfiguration {
|
|
|
77
77
|
* <p>The number of I/O operations per second.</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
iops?: number;
|
|
80
|
+
iops?: number | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>The throughput that the volume supports.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
throughput?: number;
|
|
85
|
+
throughput?: number | undefined;
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* <p>Describes the performance configuration for compute services such as Amazon EC2, Lambda,
|
|
@@ -94,23 +94,23 @@ export interface ComputeConfiguration {
|
|
|
94
94
|
* <p>The number of vCPU cores in the resource.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
vCpu?: number;
|
|
97
|
+
vCpu?: number | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* <p>The memory size of the resource.</p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
memorySizeInMB?: number;
|
|
102
|
+
memorySizeInMB?: number | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>The architecture of the resource.</p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
architecture?: string;
|
|
107
|
+
architecture?: string | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>The platform of the resource. The platform is the specific combination of operating
|
|
110
110
|
* system, license model, and software on an instance.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
platform?: string;
|
|
113
|
+
platform?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
116
116
|
* <p>The Compute Savings Plans configuration used for recommendations.</p>
|
|
@@ -124,22 +124,22 @@ export interface ComputeSavingsPlansConfiguration {
|
|
|
124
124
|
* individual member accounts only.</p>
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
|
-
accountScope?: string;
|
|
127
|
+
accountScope?: string | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* <p>The Savings Plans recommendation term in years.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
term?: string;
|
|
132
|
+
term?: string | undefined;
|
|
133
133
|
/**
|
|
134
134
|
* <p>The payment option for the commitment.</p>
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
|
-
paymentOption?: string;
|
|
137
|
+
paymentOption?: string | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* <p>The hourly commitment for the Savings Plans type.</p>
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
|
-
hourlyCommitment?: string;
|
|
142
|
+
hourlyCommitment?: string | undefined;
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
145
145
|
* <p>Pricing information about a Savings Plan.</p>
|
|
@@ -150,22 +150,22 @@ export interface SavingsPlansPricing {
|
|
|
150
150
|
* <p>The cost of paying for the recommended Savings Plan monthly.</p>
|
|
151
151
|
* @public
|
|
152
152
|
*/
|
|
153
|
-
monthlySavingsPlansEligibleCost?: number;
|
|
153
|
+
monthlySavingsPlansEligibleCost?: number | undefined;
|
|
154
154
|
/**
|
|
155
155
|
* <p>Estimated monthly commitment for the Savings Plan.</p>
|
|
156
156
|
* @public
|
|
157
157
|
*/
|
|
158
|
-
estimatedMonthlyCommitment?: number;
|
|
158
|
+
estimatedMonthlyCommitment?: number | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* <p>Estimated savings as a percentage of your overall costs after buying the Savings Plan.</p>
|
|
161
161
|
* @public
|
|
162
162
|
*/
|
|
163
|
-
savingsPercentage?: number;
|
|
163
|
+
savingsPercentage?: number | undefined;
|
|
164
164
|
/**
|
|
165
165
|
* <p>Estimated On-Demand cost you will pay after buying the Savings Plan.</p>
|
|
166
166
|
* @public
|
|
167
167
|
*/
|
|
168
|
-
estimatedOnDemandCost?: number;
|
|
168
|
+
estimatedOnDemandCost?: number | undefined;
|
|
169
169
|
}
|
|
170
170
|
/**
|
|
171
171
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
@@ -176,7 +176,7 @@ export interface SavingsPlansCostCalculation {
|
|
|
176
176
|
* <p>Pricing details of the purchase recommendation.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
pricing?: SavingsPlansPricing;
|
|
179
|
+
pricing?: SavingsPlansPricing | undefined;
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
182
|
* <p>The Compute Savings Plans recommendation details.</p>
|
|
@@ -187,12 +187,12 @@ export interface ComputeSavingsPlans {
|
|
|
187
187
|
* <p>Configuration details of the Compute Savings Plans to purchase.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
configuration?: ComputeSavingsPlansConfiguration;
|
|
190
|
+
configuration?: ComputeSavingsPlansConfiguration | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* <p>Cost impact of the Savings Plans purchase recommendation.</p>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
costCalculation?: SavingsPlansCostCalculation;
|
|
195
|
+
costCalculation?: SavingsPlansCostCalculation | undefined;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
* @public
|
|
@@ -231,12 +231,12 @@ export interface GetPreferencesResponse {
|
|
|
231
231
|
* <p>Retrieves the status of the "savings estimation mode" preference.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
savingsEstimationMode?: SavingsEstimationMode;
|
|
234
|
+
savingsEstimationMode?: SavingsEstimationMode | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>Retrieves the status of the "member account discount visibility" preference.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
|
|
239
|
+
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* <p>An error on the server occurred during the processing of your request. Try again
|
|
@@ -304,12 +304,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
304
304
|
* <p>The reason for the validation exception.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
reason?: ValidationExceptionReason;
|
|
307
|
+
reason?: ValidationExceptionReason | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>The list of fields that are invalid.</p>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
fields?: ValidationExceptionDetail[];
|
|
312
|
+
fields?: ValidationExceptionDetail[] | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* @internal
|
|
315
315
|
*/
|
|
@@ -334,12 +334,12 @@ export interface StorageConfiguration {
|
|
|
334
334
|
* <p>The storage type.</p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
type?: string;
|
|
337
|
+
type?: string | undefined;
|
|
338
338
|
/**
|
|
339
339
|
* <p>The storage volume.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
sizeInGb?: number;
|
|
342
|
+
sizeInGb?: number | undefined;
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* <p>The Amazon Elastic Block Store volume configuration used for
|
|
@@ -351,17 +351,17 @@ export interface EbsVolumeConfiguration {
|
|
|
351
351
|
* <p>The disk storage of the Amazon Elastic Block Store volume.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
storage?: StorageConfiguration;
|
|
354
|
+
storage?: StorageConfiguration | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The Amazon Elastic Block Store performance configuration.</p>
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
performance?: BlockStoragePerformanceConfiguration;
|
|
359
|
+
performance?: BlockStoragePerformanceConfiguration | undefined;
|
|
360
360
|
/**
|
|
361
361
|
* <p>The Amazon Elastic Block Store attachment state.</p>
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
attachmentState?: string;
|
|
364
|
+
attachmentState?: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
/**
|
|
367
367
|
* <p>Estimated discount details of the current and recommended resource configuration for a
|
|
@@ -373,18 +373,18 @@ export interface EstimatedDiscounts {
|
|
|
373
373
|
* <p>Estimated Savings Plans discounts.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
savingsPlansDiscount?: number;
|
|
376
|
+
savingsPlansDiscount?: number | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>Estimated reserved instance discounts.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
reservedInstancesDiscount?: number;
|
|
381
|
+
reservedInstancesDiscount?: number | undefined;
|
|
382
382
|
/**
|
|
383
383
|
* <p>Estimated other discounts include all discounts that are not itemized. Itemized discounts
|
|
384
384
|
* include <code>reservedInstanceDiscount</code> and <code>savingsPlansDiscount</code>.</p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
otherDiscount?: number;
|
|
387
|
+
otherDiscount?: number | undefined;
|
|
388
388
|
}
|
|
389
389
|
/**
|
|
390
390
|
* <p>Contains pricing information about the specified resource.</p>
|
|
@@ -396,23 +396,23 @@ export interface ResourcePricing {
|
|
|
396
396
|
* discounts.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
estimatedCostBeforeDiscounts?: number;
|
|
399
|
+
estimatedCostBeforeDiscounts?: number | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* <p>The estimated net unused amortized commitment for the recommendation.</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
estimatedNetUnusedAmortizedCommitments?: number;
|
|
404
|
+
estimatedNetUnusedAmortizedCommitments?: number | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* <p>The estimated discounts for a recommendation.</p>
|
|
407
407
|
* @public
|
|
408
408
|
*/
|
|
409
|
-
estimatedDiscounts?: EstimatedDiscounts;
|
|
409
|
+
estimatedDiscounts?: EstimatedDiscounts | undefined;
|
|
410
410
|
/**
|
|
411
411
|
* <p>The savings estimate incorporating all discounts with Amazon Web Services, such as Reserved
|
|
412
412
|
* Instances and Savings Plans.</p>
|
|
413
413
|
* @public
|
|
414
414
|
*/
|
|
415
|
-
estimatedCostAfterDiscounts?: number;
|
|
415
|
+
estimatedCostAfterDiscounts?: number | undefined;
|
|
416
416
|
}
|
|
417
417
|
/**
|
|
418
418
|
* <p>Details about the usage.</p>
|
|
@@ -423,27 +423,27 @@ export interface Usage {
|
|
|
423
423
|
* <p>The usage type.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
usageType?: string;
|
|
426
|
+
usageType?: string | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>The usage amount.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
usageAmount?: number;
|
|
431
|
+
usageAmount?: number | undefined;
|
|
432
432
|
/**
|
|
433
433
|
* <p>The operation value.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
operation?: string;
|
|
436
|
+
operation?: string | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The product code.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
productCode?: string;
|
|
441
|
+
productCode?: string | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* <p>The usage unit.</p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
unit?: string;
|
|
446
|
+
unit?: string | undefined;
|
|
447
447
|
}
|
|
448
448
|
/**
|
|
449
449
|
* <p>Cost impact of the resource recommendation.</p>
|
|
@@ -454,12 +454,12 @@ export interface ResourceCostCalculation {
|
|
|
454
454
|
* <p>Usage details of the resource recommendation.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
usages?: Usage[];
|
|
457
|
+
usages?: Usage[] | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>Pricing details of the resource recommendation.</p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
pricing?: ResourcePricing;
|
|
462
|
+
pricing?: ResourcePricing | undefined;
|
|
463
463
|
}
|
|
464
464
|
/**
|
|
465
465
|
* <p>Describes the Amazon Elastic Block Store volume configuration of the current and
|
|
@@ -472,12 +472,12 @@ export interface EbsVolume {
|
|
|
472
472
|
* recommendations.</p>
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
configuration?: EbsVolumeConfiguration;
|
|
475
|
+
configuration?: EbsVolumeConfiguration | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* <p>Cost impact of the recommendation.</p>
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
costCalculation?: ResourceCostCalculation;
|
|
480
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
481
481
|
}
|
|
482
482
|
/**
|
|
483
483
|
* <p>The Instance configuration used for recommendations.</p>
|
|
@@ -488,7 +488,7 @@ export interface InstanceConfiguration {
|
|
|
488
488
|
* <p>Details about the type.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
type?: string;
|
|
491
|
+
type?: string | undefined;
|
|
492
492
|
}
|
|
493
493
|
/**
|
|
494
494
|
* <p>The EC2 auto scaling group configuration used for recommendations.</p>
|
|
@@ -499,7 +499,7 @@ export interface Ec2AutoScalingGroupConfiguration {
|
|
|
499
499
|
* <p>Details about the instance.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
instance?: InstanceConfiguration;
|
|
502
|
+
instance?: InstanceConfiguration | undefined;
|
|
503
503
|
}
|
|
504
504
|
/**
|
|
505
505
|
* <p>The EC2 Auto Scaling group recommendation details.</p>
|
|
@@ -510,12 +510,12 @@ export interface Ec2AutoScalingGroup {
|
|
|
510
510
|
* <p>The EC2 Auto Scaling group configuration used for recommendations.</p>
|
|
511
511
|
* @public
|
|
512
512
|
*/
|
|
513
|
-
configuration?: Ec2AutoScalingGroupConfiguration;
|
|
513
|
+
configuration?: Ec2AutoScalingGroupConfiguration | undefined;
|
|
514
514
|
/**
|
|
515
515
|
* <p>Cost impact of the recommendation.</p>
|
|
516
516
|
* @public
|
|
517
517
|
*/
|
|
518
|
-
costCalculation?: ResourceCostCalculation;
|
|
518
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
519
519
|
}
|
|
520
520
|
/**
|
|
521
521
|
* <p>The EC2 instance configuration used for recommendations.</p>
|
|
@@ -526,7 +526,7 @@ export interface Ec2InstanceConfiguration {
|
|
|
526
526
|
* <p>Details about the instance.</p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
instance?: InstanceConfiguration;
|
|
529
|
+
instance?: InstanceConfiguration | undefined;
|
|
530
530
|
}
|
|
531
531
|
/**
|
|
532
532
|
* <p>Describes the EC2 instance configuration of the current and recommended resource
|
|
@@ -538,12 +538,12 @@ export interface Ec2Instance {
|
|
|
538
538
|
* <p>The EC2 instance configuration used for recommendations.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
configuration?: Ec2InstanceConfiguration;
|
|
541
|
+
configuration?: Ec2InstanceConfiguration | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* <p>Cost impact of the recommendation.</p>
|
|
544
544
|
* @public
|
|
545
545
|
*/
|
|
546
|
-
costCalculation?: ResourceCostCalculation;
|
|
546
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
547
547
|
}
|
|
548
548
|
/**
|
|
549
549
|
* <p>The EC2 instance Savings Plans configuration used for recommendations.</p>
|
|
@@ -554,32 +554,32 @@ export interface Ec2InstanceSavingsPlansConfiguration {
|
|
|
554
554
|
* <p>The account scope that you want your recommendations for.</p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
accountScope?: string;
|
|
557
|
+
accountScope?: string | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>The Savings Plans recommendation term in years.</p>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
term?: string;
|
|
562
|
+
term?: string | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* <p>The payment option for the commitment.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
paymentOption?: string;
|
|
567
|
+
paymentOption?: string | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>The hourly commitment for the Savings Plans type.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
hourlyCommitment?: string;
|
|
572
|
+
hourlyCommitment?: string | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The instance family of the recommended Savings Plan.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
instanceFamily?: string;
|
|
577
|
+
instanceFamily?: string | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
savingsPlansRegion?: string;
|
|
582
|
+
savingsPlansRegion?: string | undefined;
|
|
583
583
|
}
|
|
584
584
|
/**
|
|
585
585
|
* <p>The EC2 instance Savings Plans recommendation details.</p>
|
|
@@ -590,12 +590,12 @@ export interface Ec2InstanceSavingsPlans {
|
|
|
590
590
|
* <p>The EC2 instance Savings Plans configuration used for recommendations.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
configuration?: Ec2InstanceSavingsPlansConfiguration;
|
|
593
|
+
configuration?: Ec2InstanceSavingsPlansConfiguration | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* <p>Cost impact of the Savings Plans purchase recommendation.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
costCalculation?: SavingsPlansCostCalculation;
|
|
598
|
+
costCalculation?: SavingsPlansCostCalculation | undefined;
|
|
599
599
|
}
|
|
600
600
|
/**
|
|
601
601
|
* <p>The EC2 reserved instances configuration used for recommendations.</p>
|
|
@@ -606,84 +606,84 @@ export interface Ec2ReservedInstancesConfiguration {
|
|
|
606
606
|
* <p>The account scope that you want your recommendations for.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
accountScope?: string;
|
|
609
|
+
accountScope?: string | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* <p>The service that you want your recommendations for.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
service?: string;
|
|
614
|
+
service?: string | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
617
617
|
* purchase.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
normalizedUnitsToPurchase?: string;
|
|
620
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>The reserved instances recommendation term in years.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
term?: string;
|
|
625
|
+
term?: string | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>The payment option for the commitment.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
paymentOption?: string;
|
|
630
|
+
paymentOption?: string | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
numberOfInstancesToPurchase?: string;
|
|
635
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* <p>Indicates whether the recommendation is for standard or convertible reservations.</p>
|
|
638
638
|
* @public
|
|
639
639
|
*/
|
|
640
|
-
offeringClass?: string;
|
|
640
|
+
offeringClass?: string | undefined;
|
|
641
641
|
/**
|
|
642
642
|
* <p>The instance family of the recommended reservation.</p>
|
|
643
643
|
* @public
|
|
644
644
|
*/
|
|
645
|
-
instanceFamily?: string;
|
|
645
|
+
instanceFamily?: string | undefined;
|
|
646
646
|
/**
|
|
647
647
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
648
648
|
* @public
|
|
649
649
|
*/
|
|
650
|
-
instanceType?: string;
|
|
650
|
+
instanceType?: string | undefined;
|
|
651
651
|
/**
|
|
652
652
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
reservedInstancesRegion?: string;
|
|
655
|
+
reservedInstancesRegion?: string | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
currentGeneration?: string;
|
|
660
|
+
currentGeneration?: string | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>The platform of the recommended reservation. The platform is the specific combination of
|
|
663
663
|
* operating system, license model, and software on an instance.</p>
|
|
664
664
|
* @public
|
|
665
665
|
*/
|
|
666
|
-
platform?: string;
|
|
666
|
+
platform?: string | undefined;
|
|
667
667
|
/**
|
|
668
668
|
* <p>Determines whether the recommended reservation is dedicated or shared.</p>
|
|
669
669
|
* @public
|
|
670
670
|
*/
|
|
671
|
-
tenancy?: string;
|
|
671
|
+
tenancy?: string | undefined;
|
|
672
672
|
/**
|
|
673
673
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
674
674
|
* @public
|
|
675
675
|
*/
|
|
676
|
-
sizeFlexEligible?: boolean;
|
|
676
|
+
sizeFlexEligible?: boolean | undefined;
|
|
677
677
|
/**
|
|
678
678
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
679
679
|
* @public
|
|
680
680
|
*/
|
|
681
|
-
upfrontCost?: string;
|
|
681
|
+
upfrontCost?: string | undefined;
|
|
682
682
|
/**
|
|
683
683
|
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
monthlyRecurringCost?: string;
|
|
686
|
+
monthlyRecurringCost?: string | undefined;
|
|
687
687
|
}
|
|
688
688
|
/**
|
|
689
689
|
* <p>Pricing details for your recommended reserved instance.</p>
|
|
@@ -695,24 +695,24 @@ export interface ReservedInstancesPricing {
|
|
|
695
695
|
* instance, over the length of the lookback period.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
estimatedOnDemandCost?: number;
|
|
698
|
+
estimatedOnDemandCost?: number | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>The cost of paying for the recommended reserved instance monthly.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
monthlyReservationEligibleCost?: number;
|
|
703
|
+
monthlyReservationEligibleCost?: number | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>The savings percentage relative to the total On-Demand costs that are associated with this
|
|
706
706
|
* instance.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
savingsPercentage?: number;
|
|
709
|
+
savingsPercentage?: number | undefined;
|
|
710
710
|
/**
|
|
711
711
|
* <p>The estimated cost of your recurring monthly fees for the recommended reserved instance
|
|
712
712
|
* across the month.</p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
estimatedMonthlyAmortizedReservationCost?: number;
|
|
715
|
+
estimatedMonthlyAmortizedReservationCost?: number | undefined;
|
|
716
716
|
}
|
|
717
717
|
/**
|
|
718
718
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
@@ -723,7 +723,7 @@ export interface ReservedInstancesCostCalculation {
|
|
|
723
723
|
* <p>Pricing details of the purchase recommendation.</p>
|
|
724
724
|
* @public
|
|
725
725
|
*/
|
|
726
|
-
pricing?: ReservedInstancesPricing;
|
|
726
|
+
pricing?: ReservedInstancesPricing | undefined;
|
|
727
727
|
}
|
|
728
728
|
/**
|
|
729
729
|
* <p>The EC2 reserved instances recommendation details.</p>
|
|
@@ -734,12 +734,12 @@ export interface Ec2ReservedInstances {
|
|
|
734
734
|
* <p>The EC2 reserved instances configuration used for recommendations.</p>
|
|
735
735
|
* @public
|
|
736
736
|
*/
|
|
737
|
-
configuration?: Ec2ReservedInstancesConfiguration;
|
|
737
|
+
configuration?: Ec2ReservedInstancesConfiguration | undefined;
|
|
738
738
|
/**
|
|
739
739
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
costCalculation?: ReservedInstancesCostCalculation;
|
|
742
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
743
743
|
}
|
|
744
744
|
/**
|
|
745
745
|
* <p>The ECS service configuration used for recommendations.</p>
|
|
@@ -750,7 +750,7 @@ export interface EcsServiceConfiguration {
|
|
|
750
750
|
* <p>Details about the compute configuration.</p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
compute?: ComputeConfiguration;
|
|
753
|
+
compute?: ComputeConfiguration | undefined;
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
* <p>The ECS service recommendation details.</p>
|
|
@@ -761,12 +761,12 @@ export interface EcsService {
|
|
|
761
761
|
* <p>The ECS service configuration used for recommendations.</p>
|
|
762
762
|
* @public
|
|
763
763
|
*/
|
|
764
|
-
configuration?: EcsServiceConfiguration;
|
|
764
|
+
configuration?: EcsServiceConfiguration | undefined;
|
|
765
765
|
/**
|
|
766
766
|
* <p>Cost impact of the recommendation.</p>
|
|
767
767
|
* @public
|
|
768
768
|
*/
|
|
769
|
-
costCalculation?: ResourceCostCalculation;
|
|
769
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
770
770
|
}
|
|
771
771
|
/**
|
|
772
772
|
* <p>The ElastiCache reserved instances configuration used for recommendations.</p>
|
|
@@ -777,68 +777,68 @@ export interface ElastiCacheReservedInstancesConfiguration {
|
|
|
777
777
|
* <p>The account scope that you want your recommendations for.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
accountScope?: string;
|
|
780
|
+
accountScope?: string | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* <p>The service that you want your recommendations for.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
service?: string;
|
|
785
|
+
service?: string | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
788
788
|
* purchase.</p>
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
normalizedUnitsToPurchase?: string;
|
|
791
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* <p>The reserved instances recommendation term in years.</p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
term?: string;
|
|
796
|
+
term?: string | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>The payment option for the commitment.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
paymentOption?: string;
|
|
801
|
+
paymentOption?: string | undefined;
|
|
802
802
|
/**
|
|
803
803
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
numberOfInstancesToPurchase?: string;
|
|
806
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* <p>The instance family of the recommended reservation.</p>
|
|
809
809
|
* @public
|
|
810
810
|
*/
|
|
811
|
-
instanceFamily?: string;
|
|
811
|
+
instanceFamily?: string | undefined;
|
|
812
812
|
/**
|
|
813
813
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
instanceType?: string;
|
|
816
|
+
instanceType?: string | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
reservedInstancesRegion?: string;
|
|
821
|
+
reservedInstancesRegion?: string | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
currentGeneration?: string;
|
|
826
|
+
currentGeneration?: string | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
sizeFlexEligible?: boolean;
|
|
831
|
+
sizeFlexEligible?: boolean | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
836
|
-
upfrontCost?: string;
|
|
836
|
+
upfrontCost?: string | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
monthlyRecurringCost?: string;
|
|
841
|
+
monthlyRecurringCost?: string | undefined;
|
|
842
842
|
}
|
|
843
843
|
/**
|
|
844
844
|
* <p>The ElastiCache reserved instances recommendation details.</p>
|
|
@@ -849,12 +849,12 @@ export interface ElastiCacheReservedInstances {
|
|
|
849
849
|
* <p>The ElastiCache reserved instances configuration used for recommendations.</p>
|
|
850
850
|
* @public
|
|
851
851
|
*/
|
|
852
|
-
configuration?: ElastiCacheReservedInstancesConfiguration;
|
|
852
|
+
configuration?: ElastiCacheReservedInstancesConfiguration | undefined;
|
|
853
853
|
/**
|
|
854
854
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
855
855
|
* @public
|
|
856
856
|
*/
|
|
857
|
-
costCalculation?: ReservedInstancesCostCalculation;
|
|
857
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
858
858
|
}
|
|
859
859
|
/**
|
|
860
860
|
* <p>The Lambda function configuration used for recommendations.</p>
|
|
@@ -865,7 +865,7 @@ export interface LambdaFunctionConfiguration {
|
|
|
865
865
|
* <p>Details about the compute configuration.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
compute?: ComputeConfiguration;
|
|
868
|
+
compute?: ComputeConfiguration | undefined;
|
|
869
869
|
}
|
|
870
870
|
/**
|
|
871
871
|
* <p>The Lambda function recommendation details.</p>
|
|
@@ -876,12 +876,12 @@ export interface LambdaFunction {
|
|
|
876
876
|
* <p>The Lambda function configuration used for recommendations.</p>
|
|
877
877
|
* @public
|
|
878
878
|
*/
|
|
879
|
-
configuration?: LambdaFunctionConfiguration;
|
|
879
|
+
configuration?: LambdaFunctionConfiguration | undefined;
|
|
880
880
|
/**
|
|
881
881
|
* <p>Cost impact of the recommendation.</p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
costCalculation?: ResourceCostCalculation;
|
|
884
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
885
885
|
}
|
|
886
886
|
/**
|
|
887
887
|
* <p>The OpenSearch reserved instances configuration used for recommendations.</p>
|
|
@@ -892,63 +892,63 @@ export interface OpenSearchReservedInstancesConfiguration {
|
|
|
892
892
|
* <p>The account scope that you want your recommendations for.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
accountScope?: string;
|
|
895
|
+
accountScope?: string | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>The service that you want your recommendations for.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
service?: string;
|
|
900
|
+
service?: string | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
903
903
|
* purchase.</p>
|
|
904
904
|
* @public
|
|
905
905
|
*/
|
|
906
|
-
normalizedUnitsToPurchase?: string;
|
|
906
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
907
907
|
/**
|
|
908
908
|
* <p>The reserved instances recommendation term in years.</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
term?: string;
|
|
911
|
+
term?: string | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>The payment option for the commitment.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
paymentOption?: string;
|
|
916
|
+
paymentOption?: string | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
numberOfInstancesToPurchase?: string;
|
|
921
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
instanceType?: string;
|
|
926
|
+
instanceType?: string | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
reservedInstancesRegion?: string;
|
|
931
|
+
reservedInstancesRegion?: string | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
currentGeneration?: string;
|
|
936
|
+
currentGeneration?: string | undefined;
|
|
937
937
|
/**
|
|
938
938
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
939
939
|
* @public
|
|
940
940
|
*/
|
|
941
|
-
sizeFlexEligible?: boolean;
|
|
941
|
+
sizeFlexEligible?: boolean | undefined;
|
|
942
942
|
/**
|
|
943
943
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
upfrontCost?: string;
|
|
946
|
+
upfrontCost?: string | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
monthlyRecurringCost?: string;
|
|
951
|
+
monthlyRecurringCost?: string | undefined;
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* <p>The OpenSearch reserved instances recommendation details.</p>
|
|
@@ -959,12 +959,12 @@ export interface OpenSearchReservedInstances {
|
|
|
959
959
|
* <p>The OpenSearch reserved instances configuration used for recommendations.</p>
|
|
960
960
|
* @public
|
|
961
961
|
*/
|
|
962
|
-
configuration?: OpenSearchReservedInstancesConfiguration;
|
|
962
|
+
configuration?: OpenSearchReservedInstancesConfiguration | undefined;
|
|
963
963
|
/**
|
|
964
964
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
costCalculation?: ReservedInstancesCostCalculation;
|
|
967
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
968
968
|
}
|
|
969
969
|
/**
|
|
970
970
|
* <p>The DB instance configuration used for recommendations.</p>
|
|
@@ -975,7 +975,7 @@ export interface DbInstanceConfiguration {
|
|
|
975
975
|
* <p>The DB instance class of the DB instance.</p>
|
|
976
976
|
* @public
|
|
977
977
|
*/
|
|
978
|
-
dbInstanceClass?: string;
|
|
978
|
+
dbInstanceClass?: string | undefined;
|
|
979
979
|
}
|
|
980
980
|
/**
|
|
981
981
|
* <p>The Amazon RDS DB instance configuration used for recommendations.</p>
|
|
@@ -986,7 +986,7 @@ export interface RdsDbInstanceConfiguration {
|
|
|
986
986
|
* <p>Details about the instance configuration.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
instance?: DbInstanceConfiguration;
|
|
989
|
+
instance?: DbInstanceConfiguration | undefined;
|
|
990
990
|
}
|
|
991
991
|
/**
|
|
992
992
|
* <p>Contains the details of an Amazon RDS DB instance.</p>
|
|
@@ -997,12 +997,12 @@ export interface RdsDbInstance {
|
|
|
997
997
|
* <p>The Amazon RDS DB instance configuration used for recommendations.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
configuration?: RdsDbInstanceConfiguration;
|
|
1000
|
+
configuration?: RdsDbInstanceConfiguration | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>Cost impact of the resource recommendation.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
costCalculation?: ResourceCostCalculation;
|
|
1005
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
/**
|
|
1008
1008
|
* <p>The Amazon RDS DB instance storage configuration used for recommendations.</p>
|
|
@@ -1013,23 +1013,23 @@ export interface RdsDbInstanceStorageConfiguration {
|
|
|
1013
1013
|
* <p>The storage type to associate with the DB instance.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
storageType?: string;
|
|
1016
|
+
storageType?: string | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>The new amount of storage in GB to allocate for the DB instance.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
allocatedStorageInGb?: number;
|
|
1021
|
+
allocatedStorageInGb?: number | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>The amount of Provisioned IOPS (input/output operations per second) to be initially
|
|
1024
1024
|
* allocated for the DB instance.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
iops?: number;
|
|
1027
|
+
iops?: number | undefined;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* <p>The storage throughput for the DB instance.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
storageThroughput?: number;
|
|
1032
|
+
storageThroughput?: number | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
/**
|
|
1035
1035
|
* <p>Contains the details of an Amazon RDS DB instance storage.</p>
|
|
@@ -1040,12 +1040,12 @@ export interface RdsDbInstanceStorage {
|
|
|
1040
1040
|
* <p>The Amazon RDS DB instance storage configuration used for recommendations.</p>
|
|
1041
1041
|
* @public
|
|
1042
1042
|
*/
|
|
1043
|
-
configuration?: RdsDbInstanceStorageConfiguration;
|
|
1043
|
+
configuration?: RdsDbInstanceStorageConfiguration | undefined;
|
|
1044
1044
|
/**
|
|
1045
1045
|
* <p>Cost impact of the resource recommendation.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
costCalculation?: ResourceCostCalculation;
|
|
1048
|
+
costCalculation?: ResourceCostCalculation | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>The RDS reserved instances configuration used for recommendations.</p>
|
|
@@ -1056,89 +1056,89 @@ export interface RdsReservedInstancesConfiguration {
|
|
|
1056
1056
|
* <p>The account scope that you want your recommendations for.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
accountScope?: string;
|
|
1059
|
+
accountScope?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The service that you want your recommendations for.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
service?: string;
|
|
1064
|
+
service?: string | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1067
1067
|
* purchase.</p>
|
|
1068
1068
|
* @public
|
|
1069
1069
|
*/
|
|
1070
|
-
normalizedUnitsToPurchase?: string;
|
|
1070
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
1071
1071
|
/**
|
|
1072
1072
|
* <p>The reserved instances recommendation term in years.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
term?: string;
|
|
1075
|
+
term?: string | undefined;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* <p>The payment option for the commitment.</p>
|
|
1078
1078
|
* @public
|
|
1079
1079
|
*/
|
|
1080
|
-
paymentOption?: string;
|
|
1080
|
+
paymentOption?: string | undefined;
|
|
1081
1081
|
/**
|
|
1082
1082
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
numberOfInstancesToPurchase?: string;
|
|
1085
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>The instance family of the recommended reservation.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
instanceFamily?: string;
|
|
1090
|
+
instanceFamily?: string | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
1093
1093
|
* @public
|
|
1094
1094
|
*/
|
|
1095
|
-
instanceType?: string;
|
|
1095
|
+
instanceType?: string | undefined;
|
|
1096
1096
|
/**
|
|
1097
1097
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1098
1098
|
* @public
|
|
1099
1099
|
*/
|
|
1100
|
-
reservedInstancesRegion?: string;
|
|
1100
|
+
reservedInstancesRegion?: string | undefined;
|
|
1101
1101
|
/**
|
|
1102
1102
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
sizeFlexEligible?: boolean;
|
|
1105
|
+
sizeFlexEligible?: boolean | undefined;
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
currentGeneration?: string;
|
|
1110
|
+
currentGeneration?: string | undefined;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1113
1113
|
* @public
|
|
1114
1114
|
*/
|
|
1115
|
-
upfrontCost?: string;
|
|
1115
|
+
upfrontCost?: string | undefined;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* <p>How much purchasing this instance costs you on a monthly basis.</p>
|
|
1118
1118
|
* @public
|
|
1119
1119
|
*/
|
|
1120
|
-
monthlyRecurringCost?: string;
|
|
1120
|
+
monthlyRecurringCost?: string | undefined;
|
|
1121
1121
|
/**
|
|
1122
1122
|
* <p>The license model that the recommended reservation supports.</p>
|
|
1123
1123
|
* @public
|
|
1124
1124
|
*/
|
|
1125
|
-
licenseModel?: string;
|
|
1125
|
+
licenseModel?: string | undefined;
|
|
1126
1126
|
/**
|
|
1127
1127
|
* <p>The database edition that the recommended reservation supports.</p>
|
|
1128
1128
|
* @public
|
|
1129
1129
|
*/
|
|
1130
|
-
databaseEdition?: string;
|
|
1130
|
+
databaseEdition?: string | undefined;
|
|
1131
1131
|
/**
|
|
1132
1132
|
* <p>The database engine that the recommended reservation supports.</p>
|
|
1133
1133
|
* @public
|
|
1134
1134
|
*/
|
|
1135
|
-
databaseEngine?: string;
|
|
1135
|
+
databaseEngine?: string | undefined;
|
|
1136
1136
|
/**
|
|
1137
1137
|
* <p>Determines whether the recommendation is for a reservation in a single Availability Zone
|
|
1138
1138
|
* or a reservation with a backup in a second Availability Zone.</p>
|
|
1139
1139
|
* @public
|
|
1140
1140
|
*/
|
|
1141
|
-
deploymentOption?: string;
|
|
1141
|
+
deploymentOption?: string | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
/**
|
|
1144
1144
|
* <p>The RDS reserved instances recommendation details.</p>
|
|
@@ -1149,12 +1149,12 @@ export interface RdsReservedInstances {
|
|
|
1149
1149
|
* <p>The RDS reserved instances configuration used for recommendations.</p>
|
|
1150
1150
|
* @public
|
|
1151
1151
|
*/
|
|
1152
|
-
configuration?: RdsReservedInstancesConfiguration;
|
|
1152
|
+
configuration?: RdsReservedInstancesConfiguration | undefined;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
1155
1155
|
* @public
|
|
1156
1156
|
*/
|
|
1157
|
-
costCalculation?: ReservedInstancesCostCalculation;
|
|
1157
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
1158
1158
|
}
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>The Redshift reserved instances configuration used for recommendations.</p>
|
|
@@ -1165,68 +1165,68 @@ export interface RedshiftReservedInstancesConfiguration {
|
|
|
1165
1165
|
* <p>The account scope that you want your recommendations for.</p>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
accountScope?: string;
|
|
1168
|
+
accountScope?: string | undefined;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* <p>The service that you want your recommendations for.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
service?: string;
|
|
1173
|
+
service?: string | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1176
1176
|
* purchase.</p>
|
|
1177
1177
|
* @public
|
|
1178
1178
|
*/
|
|
1179
|
-
normalizedUnitsToPurchase?: string;
|
|
1179
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>The reserved instances recommendation term in years.</p>
|
|
1182
1182
|
* @public
|
|
1183
1183
|
*/
|
|
1184
|
-
term?: string;
|
|
1184
|
+
term?: string | undefined;
|
|
1185
1185
|
/**
|
|
1186
1186
|
* <p>The payment option for the commitment.</p>
|
|
1187
1187
|
* @public
|
|
1188
1188
|
*/
|
|
1189
|
-
paymentOption?: string;
|
|
1189
|
+
paymentOption?: string | undefined;
|
|
1190
1190
|
/**
|
|
1191
1191
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
numberOfInstancesToPurchase?: string;
|
|
1194
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>The instance family of the recommended reservation.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
instanceFamily?: string;
|
|
1199
|
+
instanceFamily?: string | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
1202
1202
|
* @public
|
|
1203
1203
|
*/
|
|
1204
|
-
instanceType?: string;
|
|
1204
|
+
instanceType?: string | undefined;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
reservedInstancesRegion?: string;
|
|
1209
|
+
reservedInstancesRegion?: string | undefined;
|
|
1210
1210
|
/**
|
|
1211
1211
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
sizeFlexEligible?: boolean;
|
|
1214
|
+
sizeFlexEligible?: boolean | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
currentGeneration?: string;
|
|
1219
|
+
currentGeneration?: string | undefined;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
upfrontCost?: string;
|
|
1224
|
+
upfrontCost?: string | undefined;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
1227
1227
|
* @public
|
|
1228
1228
|
*/
|
|
1229
|
-
monthlyRecurringCost?: string;
|
|
1229
|
+
monthlyRecurringCost?: string | undefined;
|
|
1230
1230
|
}
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>The Redshift reserved instances recommendation details.</p>
|
|
@@ -1237,12 +1237,12 @@ export interface RedshiftReservedInstances {
|
|
|
1237
1237
|
* <p>The Redshift reserved instances configuration used for recommendations.</p>
|
|
1238
1238
|
* @public
|
|
1239
1239
|
*/
|
|
1240
|
-
configuration?: RedshiftReservedInstancesConfiguration;
|
|
1240
|
+
configuration?: RedshiftReservedInstancesConfiguration | undefined;
|
|
1241
1241
|
/**
|
|
1242
1242
|
* <p>Cost impact of the purchase recommendation.</p>
|
|
1243
1243
|
* @public
|
|
1244
1244
|
*/
|
|
1245
|
-
costCalculation?: ReservedInstancesCostCalculation;
|
|
1245
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
1246
1246
|
}
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>The SageMaker Savings Plans configuration used for recommendations.</p>
|
|
@@ -1253,22 +1253,22 @@ export interface SageMakerSavingsPlansConfiguration {
|
|
|
1253
1253
|
* <p>The account scope that you want your recommendations for.</p>
|
|
1254
1254
|
* @public
|
|
1255
1255
|
*/
|
|
1256
|
-
accountScope?: string;
|
|
1256
|
+
accountScope?: string | undefined;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* <p>The Savings Plans recommendation term in years.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
term?: string;
|
|
1261
|
+
term?: string | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>The payment option for the commitment.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
paymentOption?: string;
|
|
1266
|
+
paymentOption?: string | undefined;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>The hourly commitment for the Savings Plans type.</p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
hourlyCommitment?: string;
|
|
1271
|
+
hourlyCommitment?: string | undefined;
|
|
1272
1272
|
}
|
|
1273
1273
|
/**
|
|
1274
1274
|
* <p>The SageMaker Savings Plans recommendation details.</p>
|
|
@@ -1279,12 +1279,12 @@ export interface SageMakerSavingsPlans {
|
|
|
1279
1279
|
* <p>The SageMaker Savings Plans configuration used for recommendations.</p>
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
configuration?: SageMakerSavingsPlansConfiguration;
|
|
1282
|
+
configuration?: SageMakerSavingsPlansConfiguration | undefined;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* <p>Cost impact of the Savings Plans purchase recommendation.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
costCalculation?: SavingsPlansCostCalculation;
|
|
1287
|
+
costCalculation?: SavingsPlansCostCalculation | undefined;
|
|
1288
1288
|
}
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>Contains detailed information about the specified resource.</p>
|
|
@@ -1727,12 +1727,12 @@ export interface Tag {
|
|
|
1727
1727
|
* <p>The key that's associated with the tag.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
key?: string;
|
|
1730
|
+
key?: string | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>The value that's associated with the tag.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
value?: string;
|
|
1735
|
+
value?: string | undefined;
|
|
1736
1736
|
}
|
|
1737
1737
|
/**
|
|
1738
1738
|
* @public
|
|
@@ -1742,120 +1742,120 @@ export interface GetRecommendationResponse {
|
|
|
1742
1742
|
* <p>The ID for the recommendation.</p>
|
|
1743
1743
|
* @public
|
|
1744
1744
|
*/
|
|
1745
|
-
recommendationId?: string;
|
|
1745
|
+
recommendationId?: string | undefined;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* <p>The unique identifier for the resource. This is the same as the Amazon Resource Name
|
|
1748
1748
|
* (ARN), if available.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
resourceId?: string;
|
|
1751
|
+
resourceId?: string | undefined;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
1754
1754
|
* @public
|
|
1755
1755
|
*/
|
|
1756
|
-
resourceArn?: string;
|
|
1756
|
+
resourceArn?: string | undefined;
|
|
1757
1757
|
/**
|
|
1758
1758
|
* <p>The account that the recommendation is for.</p>
|
|
1759
1759
|
* @public
|
|
1760
1760
|
*/
|
|
1761
|
-
accountId?: string;
|
|
1761
|
+
accountId?: string | undefined;
|
|
1762
1762
|
/**
|
|
1763
1763
|
* <p>The currency code used for the recommendation.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
currencyCode?: string;
|
|
1766
|
+
currencyCode?: string | undefined;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* <p>The lookback period that's used to generate the recommendation.</p>
|
|
1769
1769
|
* @public
|
|
1770
1770
|
*/
|
|
1771
|
-
recommendationLookbackPeriodInDays?: number;
|
|
1771
|
+
recommendationLookbackPeriodInDays?: number | undefined;
|
|
1772
1772
|
/**
|
|
1773
1773
|
* <p>The lookback period used to calculate cost impact for a recommendation.</p>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
costCalculationLookbackPeriodInDays?: number;
|
|
1776
|
+
costCalculationLookbackPeriodInDays?: number | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>The estimated savings percentage relative to the total cost over the cost calculation
|
|
1779
1779
|
* lookback period.</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
estimatedSavingsPercentage?: number;
|
|
1782
|
+
estimatedSavingsPercentage?: number | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The estimated savings amount over the lookback period used to calculate cost impact for a
|
|
1785
1785
|
* recommendation.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
estimatedSavingsOverCostCalculationLookbackPeriod?: number;
|
|
1788
|
+
estimatedSavingsOverCostCalculationLookbackPeriod?: number | undefined;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* <p>The type of resource.</p>
|
|
1791
1791
|
* @public
|
|
1792
1792
|
*/
|
|
1793
|
-
currentResourceType?: ResourceType;
|
|
1793
|
+
currentResourceType?: ResourceType | undefined;
|
|
1794
1794
|
/**
|
|
1795
1795
|
* <p>The resource type of the recommendation.</p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
recommendedResourceType?: ResourceType;
|
|
1798
|
+
recommendedResourceType?: ResourceType | undefined;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>The Amazon Web Services Region of the resource.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
region?: string;
|
|
1803
|
+
region?: string | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p>The source of the recommendation.</p>
|
|
1806
1806
|
* @public
|
|
1807
1807
|
*/
|
|
1808
|
-
source?: Source;
|
|
1808
|
+
source?: Source | undefined;
|
|
1809
1809
|
/**
|
|
1810
1810
|
* <p>The time when the recommendation was last generated.</p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
lastRefreshTimestamp?: Date;
|
|
1813
|
+
lastRefreshTimestamp?: Date | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>The estimated monthly savings amount for the recommendation.</p>
|
|
1816
1816
|
* @public
|
|
1817
1817
|
*/
|
|
1818
|
-
estimatedMonthlySavings?: number;
|
|
1818
|
+
estimatedMonthlySavings?: number | undefined;
|
|
1819
1819
|
/**
|
|
1820
1820
|
* <p>The estimated monthly cost of the current resource. For Reserved Instances and Savings Plans, it refers to the cost for eligible usage.</p>
|
|
1821
1821
|
* @public
|
|
1822
1822
|
*/
|
|
1823
|
-
estimatedMonthlyCost?: number;
|
|
1823
|
+
estimatedMonthlyCost?: number | undefined;
|
|
1824
1824
|
/**
|
|
1825
1825
|
* <p>The effort required to implement the recommendation.</p>
|
|
1826
1826
|
* @public
|
|
1827
1827
|
*/
|
|
1828
|
-
implementationEffort?: ImplementationEffort;
|
|
1828
|
+
implementationEffort?: ImplementationEffort | undefined;
|
|
1829
1829
|
/**
|
|
1830
1830
|
* <p>Whether or not implementing the recommendation requires a restart.</p>
|
|
1831
1831
|
* @public
|
|
1832
1832
|
*/
|
|
1833
|
-
restartNeeded?: boolean;
|
|
1833
|
+
restartNeeded?: boolean | undefined;
|
|
1834
1834
|
/**
|
|
1835
1835
|
* <p>The type of action you can take by adopting the recommendation.</p>
|
|
1836
1836
|
* @public
|
|
1837
1837
|
*/
|
|
1838
|
-
actionType?: ActionType;
|
|
1838
|
+
actionType?: ActionType | undefined;
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p>Whether or not implementing the recommendation can be rolled back.</p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
rollbackPossible?: boolean;
|
|
1843
|
+
rollbackPossible?: boolean | undefined;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p>The details for the resource.</p>
|
|
1846
1846
|
* @public
|
|
1847
1847
|
*/
|
|
1848
|
-
currentResourceDetails?: ResourceDetails;
|
|
1848
|
+
currentResourceDetails?: ResourceDetails | undefined;
|
|
1849
1849
|
/**
|
|
1850
1850
|
* <p>The details about the recommended resource.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
recommendedResourceDetails?: ResourceDetails;
|
|
1853
|
+
recommendedResourceDetails?: ResourceDetails | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>A list of tags associated with the resource for which the recommendation exists.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
tags?: Tag[];
|
|
1858
|
+
tags?: Tag[] | undefined;
|
|
1859
1859
|
}
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
|
|
@@ -1882,22 +1882,22 @@ export interface ListEnrollmentStatusesRequest {
|
|
|
1882
1882
|
* <p>Indicates whether to return the enrollment status for the organization.</p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
includeOrganizationInfo?: boolean;
|
|
1885
|
+
includeOrganizationInfo?: boolean | undefined;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* <p>The account ID of a member account in the organization.</p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
accountId?: string;
|
|
1890
|
+
accountId?: string | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The token to retrieve the next set of results.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
nextToken?: string;
|
|
1895
|
+
nextToken?: string | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>The maximum number of objects that are returned for the request.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
maxResults?: number;
|
|
1900
|
+
maxResults?: number | undefined;
|
|
1901
1901
|
}
|
|
1902
1902
|
/**
|
|
1903
1903
|
* @public
|
|
@@ -1908,18 +1908,18 @@ export interface ListEnrollmentStatusesResponse {
|
|
|
1908
1908
|
* timestamps.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
items?: AccountEnrollmentStatus[];
|
|
1911
|
+
items?: AccountEnrollmentStatus[] | undefined;
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p>The enrollment status of all member accounts in the organization if the account is the
|
|
1914
1914
|
* management account or delegated administrator.</p>
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
includeMemberAccounts?: boolean;
|
|
1917
|
+
includeMemberAccounts?: boolean | undefined;
|
|
1918
1918
|
/**
|
|
1919
1919
|
* <p>The token to retrieve the next set of results.</p>
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
nextToken?: string;
|
|
1922
|
+
nextToken?: string | undefined;
|
|
1923
1923
|
}
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>Describes a filter that returns a more specific list of recommendations. Filters
|
|
@@ -1931,57 +1931,57 @@ export interface Filter {
|
|
|
1931
1931
|
* <p>Whether or not implementing the recommendation requires a restart.</p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
restartNeeded?: boolean;
|
|
1934
|
+
restartNeeded?: boolean | undefined;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* <p>Whether or not implementing the recommendation can be rolled back.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
rollbackPossible?: boolean;
|
|
1939
|
+
rollbackPossible?: boolean | undefined;
|
|
1940
1940
|
/**
|
|
1941
1941
|
* <p>The effort required to implement the recommendation.</p>
|
|
1942
1942
|
* @public
|
|
1943
1943
|
*/
|
|
1944
|
-
implementationEfforts?: ImplementationEffort[];
|
|
1944
|
+
implementationEfforts?: ImplementationEffort[] | undefined;
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>The account that the recommendation is for.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
accountIds?: string[];
|
|
1949
|
+
accountIds?: string[] | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>The Amazon Web Services Region of the resource.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
regions?: string[];
|
|
1954
|
+
regions?: string[] | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>The resource type of the recommendation.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
resourceTypes?: ResourceType[];
|
|
1959
|
+
resourceTypes?: ResourceType[] | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>The type of action you can take by adopting the recommendation.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
actionTypes?: ActionType[];
|
|
1964
|
+
actionTypes?: ActionType[] | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>A list of tags assigned to the recommendation.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
tags?: Tag[];
|
|
1969
|
+
tags?: Tag[] | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* <p>The resource ID of the recommendation.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
resourceIds?: string[];
|
|
1974
|
+
resourceIds?: string[] | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p>The Amazon Resource Name (ARN) of the recommendation.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
resourceArns?: string[];
|
|
1979
|
+
resourceArns?: string[] | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>The IDs for the recommendations.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
recommendationIds?: string[];
|
|
1984
|
+
recommendationIds?: string[] | undefined;
|
|
1985
1985
|
}
|
|
1986
1986
|
/**
|
|
1987
1987
|
* @public
|
|
@@ -2004,12 +2004,12 @@ export interface OrderBy {
|
|
|
2004
2004
|
* <p>Sorts by dimension values.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
dimension?: string;
|
|
2007
|
+
dimension?: string | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>The order that's used to sort the data.</p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
order?: Order;
|
|
2012
|
+
order?: Order | undefined;
|
|
2013
2013
|
}
|
|
2014
2014
|
/**
|
|
2015
2015
|
* @public
|
|
@@ -2019,28 +2019,28 @@ export interface ListRecommendationsRequest {
|
|
|
2019
2019
|
* <p>The constraints that you want all returned recommendations to match.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
filter?: Filter;
|
|
2022
|
+
filter?: Filter | undefined;
|
|
2023
2023
|
/**
|
|
2024
2024
|
* <p>The ordering of recommendations by a dimension.</p>
|
|
2025
2025
|
* @public
|
|
2026
2026
|
*/
|
|
2027
|
-
orderBy?: OrderBy;
|
|
2027
|
+
orderBy?: OrderBy | undefined;
|
|
2028
2028
|
/**
|
|
2029
2029
|
* <p>List of all recommendations for a resource, or a single recommendation if de-duped by
|
|
2030
2030
|
* <code>resourceId</code>.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
includeAllRecommendations?: boolean;
|
|
2033
|
+
includeAllRecommendations?: boolean | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>The maximum number of recommendations that are returned for the request.</p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
maxResults?: number;
|
|
2038
|
+
maxResults?: number | undefined;
|
|
2039
2039
|
/**
|
|
2040
2040
|
* <p>The token to retrieve the next set of results.</p>
|
|
2041
2041
|
* @public
|
|
2042
2042
|
*/
|
|
2043
|
-
nextToken?: string;
|
|
2043
|
+
nextToken?: string | undefined;
|
|
2044
2044
|
}
|
|
2045
2045
|
/**
|
|
2046
2046
|
* <p>Describes a recommendation.</p>
|
|
@@ -2051,108 +2051,108 @@ export interface Recommendation {
|
|
|
2051
2051
|
* <p>The ID for the recommendation.</p>
|
|
2052
2052
|
* @public
|
|
2053
2053
|
*/
|
|
2054
|
-
recommendationId?: string;
|
|
2054
|
+
recommendationId?: string | undefined;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* <p>The account that the recommendation is for.</p>
|
|
2057
2057
|
* @public
|
|
2058
2058
|
*/
|
|
2059
|
-
accountId?: string;
|
|
2059
|
+
accountId?: string | undefined;
|
|
2060
2060
|
/**
|
|
2061
2061
|
* <p>The Amazon Web Services Region of the resource.</p>
|
|
2062
2062
|
* @public
|
|
2063
2063
|
*/
|
|
2064
|
-
region?: string;
|
|
2064
|
+
region?: string | undefined;
|
|
2065
2065
|
/**
|
|
2066
2066
|
* <p>The resource ID for the recommendation.</p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
resourceId?: string;
|
|
2069
|
+
resourceId?: string | undefined;
|
|
2070
2070
|
/**
|
|
2071
2071
|
* <p>The Amazon Resource Name (ARN) for the recommendation.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
resourceArn?: string;
|
|
2074
|
+
resourceArn?: string | undefined;
|
|
2075
2075
|
/**
|
|
2076
2076
|
* <p>The current resource type.</p>
|
|
2077
2077
|
* @public
|
|
2078
2078
|
*/
|
|
2079
|
-
currentResourceType?: string;
|
|
2079
|
+
currentResourceType?: string | undefined;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* <p>The recommended resource type.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
recommendedResourceType?: string;
|
|
2084
|
+
recommendedResourceType?: string | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>The estimated monthly savings amount for the recommendation.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
estimatedMonthlySavings?: number;
|
|
2089
|
+
estimatedMonthlySavings?: number | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* <p>The estimated savings percentage relative to the total cost over the cost calculation
|
|
2092
2092
|
* lookback period.</p>
|
|
2093
2093
|
* @public
|
|
2094
2094
|
*/
|
|
2095
|
-
estimatedSavingsPercentage?: number;
|
|
2095
|
+
estimatedSavingsPercentage?: number | undefined;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* <p>The estimated monthly cost of the current resource. For Reserved Instances and Savings Plans, it refers to the cost for eligible usage.</p>
|
|
2098
2098
|
* @public
|
|
2099
2099
|
*/
|
|
2100
|
-
estimatedMonthlyCost?: number;
|
|
2100
|
+
estimatedMonthlyCost?: number | undefined;
|
|
2101
2101
|
/**
|
|
2102
2102
|
* <p>The currency code used for the recommendation.</p>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
currencyCode?: string;
|
|
2105
|
+
currencyCode?: string | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>The effort required to implement the recommendation.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
implementationEffort?: string;
|
|
2110
|
+
implementationEffort?: string | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>Whether or not implementing the recommendation requires a restart.</p>
|
|
2113
2113
|
* @public
|
|
2114
2114
|
*/
|
|
2115
|
-
restartNeeded?: boolean;
|
|
2115
|
+
restartNeeded?: boolean | undefined;
|
|
2116
2116
|
/**
|
|
2117
2117
|
* <p>The type of tasks that can be carried out by this action.</p>
|
|
2118
2118
|
* @public
|
|
2119
2119
|
*/
|
|
2120
|
-
actionType?: string;
|
|
2120
|
+
actionType?: string | undefined;
|
|
2121
2121
|
/**
|
|
2122
2122
|
* <p>Whether or not implementing the recommendation can be rolled back.</p>
|
|
2123
2123
|
* @public
|
|
2124
2124
|
*/
|
|
2125
|
-
rollbackPossible?: boolean;
|
|
2125
|
+
rollbackPossible?: boolean | undefined;
|
|
2126
2126
|
/**
|
|
2127
2127
|
* <p>Describes the current resource.</p>
|
|
2128
2128
|
* @public
|
|
2129
2129
|
*/
|
|
2130
|
-
currentResourceSummary?: string;
|
|
2130
|
+
currentResourceSummary?: string | undefined;
|
|
2131
2131
|
/**
|
|
2132
2132
|
* <p>Describes the recommended resource.</p>
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
|
-
recommendedResourceSummary?: string;
|
|
2135
|
+
recommendedResourceSummary?: string | undefined;
|
|
2136
2136
|
/**
|
|
2137
2137
|
* <p>The time when the recommendation was last generated.</p>
|
|
2138
2138
|
* @public
|
|
2139
2139
|
*/
|
|
2140
|
-
lastRefreshTimestamp?: Date;
|
|
2140
|
+
lastRefreshTimestamp?: Date | undefined;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* <p>The lookback period that's used to generate the recommendation.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
recommendationLookbackPeriodInDays?: number;
|
|
2145
|
+
recommendationLookbackPeriodInDays?: number | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The source of the recommendation.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
source?: Source;
|
|
2150
|
+
source?: Source | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>A list of tags assigned to the recommendation.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
tags?: Tag[];
|
|
2155
|
+
tags?: Tag[] | undefined;
|
|
2156
2156
|
}
|
|
2157
2157
|
/**
|
|
2158
2158
|
* @public
|
|
@@ -2162,12 +2162,12 @@ export interface ListRecommendationsResponse {
|
|
|
2162
2162
|
* <p>List of all savings recommendations.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
items?: Recommendation[];
|
|
2165
|
+
items?: Recommendation[] | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* <p>The token to retrieve the next set of results.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
nextToken?: string;
|
|
2170
|
+
nextToken?: string | undefined;
|
|
2171
2171
|
}
|
|
2172
2172
|
/**
|
|
2173
2173
|
* @public
|
|
@@ -2189,7 +2189,7 @@ export interface ListRecommendationSummariesRequest {
|
|
|
2189
2189
|
* recommendations by different dimensions.</p>
|
|
2190
2190
|
* @public
|
|
2191
2191
|
*/
|
|
2192
|
-
filter?: Filter;
|
|
2192
|
+
filter?: Filter | undefined;
|
|
2193
2193
|
/**
|
|
2194
2194
|
* <p>The grouping of recommendations by a dimension.</p>
|
|
2195
2195
|
* @public
|
|
@@ -2199,18 +2199,18 @@ export interface ListRecommendationSummariesRequest {
|
|
|
2199
2199
|
* <p>The maximum number of recommendations to be returned for the request.</p>
|
|
2200
2200
|
* @public
|
|
2201
2201
|
*/
|
|
2202
|
-
maxResults?: number;
|
|
2202
|
+
maxResults?: number | undefined;
|
|
2203
2203
|
/**
|
|
2204
2204
|
* <p>Additional metrics to be returned for the request. The only valid value is
|
|
2205
2205
|
* <code>savingsPercentage</code>.</p>
|
|
2206
2206
|
* @public
|
|
2207
2207
|
*/
|
|
2208
|
-
metrics?: SummaryMetrics[];
|
|
2208
|
+
metrics?: SummaryMetrics[] | undefined;
|
|
2209
2209
|
/**
|
|
2210
2210
|
* <p>The token to retrieve the next set of results.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
nextToken?: string;
|
|
2213
|
+
nextToken?: string | undefined;
|
|
2214
2214
|
}
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>The summary of rightsizing recommendations, including de-duped savings from all types of
|
|
@@ -2222,17 +2222,17 @@ export interface RecommendationSummary {
|
|
|
2222
2222
|
* <p>The grouping of recommendations.</p>
|
|
2223
2223
|
* @public
|
|
2224
2224
|
*/
|
|
2225
|
-
group?: string;
|
|
2225
|
+
group?: string | undefined;
|
|
2226
2226
|
/**
|
|
2227
2227
|
* <p>The estimated total savings resulting from modifications, on a monthly basis.</p>
|
|
2228
2228
|
* @public
|
|
2229
2229
|
*/
|
|
2230
|
-
estimatedMonthlySavings?: number;
|
|
2230
|
+
estimatedMonthlySavings?: number | undefined;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>The total number of instance recommendations.</p>
|
|
2233
2233
|
* @public
|
|
2234
2234
|
*/
|
|
2235
|
-
recommendationCount?: number;
|
|
2235
|
+
recommendationCount?: number | undefined;
|
|
2236
2236
|
}
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>The results or descriptions for the additional metrics, based on whether the metrics were
|
|
@@ -2249,7 +2249,7 @@ export interface SummaryMetricsResult {
|
|
|
2249
2249
|
* </note>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
savingsPercentage?: string;
|
|
2252
|
+
savingsPercentage?: string | undefined;
|
|
2253
2253
|
}
|
|
2254
2254
|
/**
|
|
2255
2255
|
* @public
|
|
@@ -2259,33 +2259,33 @@ export interface ListRecommendationSummariesResponse {
|
|
|
2259
2259
|
* <p>The total overall savings for the aggregated view.</p>
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
estimatedTotalDedupedSavings?: number;
|
|
2262
|
+
estimatedTotalDedupedSavings?: number | undefined;
|
|
2263
2263
|
/**
|
|
2264
2264
|
* <p>A list of all savings recommendations.</p>
|
|
2265
2265
|
* @public
|
|
2266
2266
|
*/
|
|
2267
|
-
items?: RecommendationSummary[];
|
|
2267
|
+
items?: RecommendationSummary[] | undefined;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* <p>The dimension used to group the recommendations by.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
groupBy?: string;
|
|
2272
|
+
groupBy?: string | undefined;
|
|
2273
2273
|
/**
|
|
2274
2274
|
* <p>The currency code used for the recommendation.</p>
|
|
2275
2275
|
* @public
|
|
2276
2276
|
*/
|
|
2277
|
-
currencyCode?: string;
|
|
2277
|
+
currencyCode?: string | undefined;
|
|
2278
2278
|
/**
|
|
2279
2279
|
* <p>The results or descriptions for the additional metrics, based on whether the metrics were
|
|
2280
2280
|
* or were not requested.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
metrics?: SummaryMetricsResult;
|
|
2283
|
+
metrics?: SummaryMetricsResult | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The token to retrieve the next set of results.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
nextToken?: string;
|
|
2288
|
+
nextToken?: string | undefined;
|
|
2289
2289
|
}
|
|
2290
2290
|
/**
|
|
2291
2291
|
* @public
|
|
@@ -2301,7 +2301,7 @@ export interface UpdateEnrollmentStatusRequest {
|
|
|
2301
2301
|
* management account or delegated administrator.</p>
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
includeMemberAccounts?: boolean;
|
|
2304
|
+
includeMemberAccounts?: boolean | undefined;
|
|
2305
2305
|
}
|
|
2306
2306
|
/**
|
|
2307
2307
|
* @public
|
|
@@ -2311,7 +2311,7 @@ export interface UpdateEnrollmentStatusResponse {
|
|
|
2311
2311
|
* <p>The enrollment status of the account.</p>
|
|
2312
2312
|
* @public
|
|
2313
2313
|
*/
|
|
2314
|
-
status?: string;
|
|
2314
|
+
status?: string | undefined;
|
|
2315
2315
|
}
|
|
2316
2316
|
/**
|
|
2317
2317
|
* @public
|
|
@@ -2321,12 +2321,12 @@ export interface UpdatePreferencesRequest {
|
|
|
2321
2321
|
* <p>Sets the "savings estimation mode" preference.</p>
|
|
2322
2322
|
* @public
|
|
2323
2323
|
*/
|
|
2324
|
-
savingsEstimationMode?: SavingsEstimationMode;
|
|
2324
|
+
savingsEstimationMode?: SavingsEstimationMode | undefined;
|
|
2325
2325
|
/**
|
|
2326
2326
|
* <p>Sets the "member account discount visibility" preference.</p>
|
|
2327
2327
|
* @public
|
|
2328
2328
|
*/
|
|
2329
|
-
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
|
|
2329
|
+
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility | undefined;
|
|
2330
2330
|
}
|
|
2331
2331
|
/**
|
|
2332
2332
|
* @public
|
|
@@ -2336,10 +2336,10 @@ export interface UpdatePreferencesResponse {
|
|
|
2336
2336
|
* <p>Shows the status of the "savings estimation mode" preference.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
savingsEstimationMode?: SavingsEstimationMode;
|
|
2339
|
+
savingsEstimationMode?: SavingsEstimationMode | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>Shows the status of the "member account discount visibility" preference.</p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility;
|
|
2344
|
+
memberAccountDiscountVisibility?: MemberAccountDiscountVisibility | undefined;
|
|
2345
2345
|
}
|