@aws-sdk/client-cost-optimization-hub 3.782.0 → 3.787.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-cjs/index.js +28 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +22 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +106 -42
- package/dist-types/commands/ListRecommendationSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListRecommendationsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +404 -154
- package/dist-types/ts3.4/models/models_0.d.ts +141 -29
- package/package.json +5 -5
|
@@ -132,7 +132,7 @@ export interface ComputeConfiguration {
|
|
|
132
132
|
*/
|
|
133
133
|
export interface ComputeSavingsPlansConfiguration {
|
|
134
134
|
/**
|
|
135
|
-
* <p>The account scope
|
|
135
|
+
* <p>The account scope for which you want recommendations. Amazon Web Services calculates
|
|
136
136
|
* recommendations including the management account and member accounts if the value is set to
|
|
137
137
|
* <code>PAYER</code>. If the value is <code>LINKED</code>, recommendations are calculated for
|
|
138
138
|
* individual member accounts only.</p>
|
|
@@ -339,6 +339,114 @@ export interface GetRecommendationRequest {
|
|
|
339
339
|
*/
|
|
340
340
|
recommendationId: string | undefined;
|
|
341
341
|
}
|
|
342
|
+
/**
|
|
343
|
+
* <p>The DynamoDB reserved capacity configuration used for recommendations.</p>
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
export interface DynamoDbReservedCapacityConfiguration {
|
|
347
|
+
/**
|
|
348
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
351
|
+
accountScope?: string | undefined;
|
|
352
|
+
/**
|
|
353
|
+
* <p>The service for which you want recommendations.</p>
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
356
|
+
service?: string | undefined;
|
|
357
|
+
/**
|
|
358
|
+
* <p>The reserved capacity recommendation term in years.</p>
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
term?: string | undefined;
|
|
362
|
+
/**
|
|
363
|
+
* <p>The payment option for the commitment.</p>
|
|
364
|
+
* @public
|
|
365
|
+
*/
|
|
366
|
+
paymentOption?: string | undefined;
|
|
367
|
+
/**
|
|
368
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
reservedInstancesRegion?: string | undefined;
|
|
372
|
+
/**
|
|
373
|
+
* <p>How much purchasing this reserved capacity costs you upfront.</p>
|
|
374
|
+
* @public
|
|
375
|
+
*/
|
|
376
|
+
upfrontCost?: string | undefined;
|
|
377
|
+
/**
|
|
378
|
+
* <p>How much purchasing this reserved capacity costs you on a monthly basis.</p>
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
monthlyRecurringCost?: string | undefined;
|
|
382
|
+
/**
|
|
383
|
+
* <p>The number of reserved capacity units that Amazon Web Services recommends that you
|
|
384
|
+
* purchase.</p>
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
numberOfCapacityUnitsToPurchase?: string | undefined;
|
|
388
|
+
/**
|
|
389
|
+
* <p>The capacity unit of the recommended reservation.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
capacityUnits?: string | undefined;
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* <p>Pricing details for your recommended reserved instance.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
export interface ReservedInstancesPricing {
|
|
399
|
+
/**
|
|
400
|
+
* <p>The remaining On-Demand cost estimated to not be covered by the recommended reserved
|
|
401
|
+
* instance, over the length of the lookback period.</p>
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
404
|
+
estimatedOnDemandCost?: number | undefined;
|
|
405
|
+
/**
|
|
406
|
+
* <p>The cost of paying for the recommended reserved instance monthly.</p>
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
monthlyReservationEligibleCost?: number | undefined;
|
|
410
|
+
/**
|
|
411
|
+
* <p>The savings percentage relative to the total On-Demand costs that are associated with this
|
|
412
|
+
* instance.</p>
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
415
|
+
savingsPercentage?: number | undefined;
|
|
416
|
+
/**
|
|
417
|
+
* <p>The estimated cost of your recurring monthly fees for the recommended reserved instance
|
|
418
|
+
* across the month.</p>
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
421
|
+
estimatedMonthlyAmortizedReservationCost?: number | undefined;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* <p>Cost impact of the purchase recommendation.</p>
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
export interface ReservedInstancesCostCalculation {
|
|
428
|
+
/**
|
|
429
|
+
* <p>Pricing details of the purchase recommendation.</p>
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
pricing?: ReservedInstancesPricing | undefined;
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* <p>The DynamoDB reserved capacity recommendation details.</p>
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
export interface DynamoDbReservedCapacity {
|
|
439
|
+
/**
|
|
440
|
+
* <p>The DynamoDB reserved capacity configuration used for recommendations.</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
configuration?: DynamoDbReservedCapacityConfiguration | undefined;
|
|
444
|
+
/**
|
|
445
|
+
* <p>Cost impact of the purchase recommendation.</p>
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
449
|
+
}
|
|
342
450
|
/**
|
|
343
451
|
* <p>The storage configuration used for recommendations.</p>
|
|
344
452
|
* @public
|
|
@@ -604,7 +712,7 @@ export interface Ec2Instance {
|
|
|
604
712
|
*/
|
|
605
713
|
export interface Ec2InstanceSavingsPlansConfiguration {
|
|
606
714
|
/**
|
|
607
|
-
* <p>The account scope
|
|
715
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
608
716
|
* @public
|
|
609
717
|
*/
|
|
610
718
|
accountScope?: string | undefined;
|
|
@@ -656,21 +764,15 @@ export interface Ec2InstanceSavingsPlans {
|
|
|
656
764
|
*/
|
|
657
765
|
export interface Ec2ReservedInstancesConfiguration {
|
|
658
766
|
/**
|
|
659
|
-
* <p>The account scope
|
|
767
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
660
768
|
* @public
|
|
661
769
|
*/
|
|
662
770
|
accountScope?: string | undefined;
|
|
663
771
|
/**
|
|
664
|
-
* <p>The service
|
|
772
|
+
* <p>The service for which you want recommendations.</p>
|
|
665
773
|
* @public
|
|
666
774
|
*/
|
|
667
775
|
service?: string | undefined;
|
|
668
|
-
/**
|
|
669
|
-
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
670
|
-
* purchase.</p>
|
|
671
|
-
* @public
|
|
672
|
-
*/
|
|
673
|
-
normalizedUnitsToPurchase?: string | undefined;
|
|
674
776
|
/**
|
|
675
777
|
* <p>The reserved instances recommendation term in years.</p>
|
|
676
778
|
* @public
|
|
@@ -681,6 +783,27 @@ export interface Ec2ReservedInstancesConfiguration {
|
|
|
681
783
|
* @public
|
|
682
784
|
*/
|
|
683
785
|
paymentOption?: string | undefined;
|
|
786
|
+
/**
|
|
787
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
788
|
+
* @public
|
|
789
|
+
*/
|
|
790
|
+
reservedInstancesRegion?: string | undefined;
|
|
791
|
+
/**
|
|
792
|
+
* <p>How much purchasing this instance costs you upfront.</p>
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
795
|
+
upfrontCost?: string | undefined;
|
|
796
|
+
/**
|
|
797
|
+
* <p>How much purchasing these reserved instances costs you on a monthly basis.</p>
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
monthlyRecurringCost?: string | undefined;
|
|
801
|
+
/**
|
|
802
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
803
|
+
* purchase.</p>
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
806
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
684
807
|
/**
|
|
685
808
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
686
809
|
* @public
|
|
@@ -701,11 +824,6 @@ export interface Ec2ReservedInstancesConfiguration {
|
|
|
701
824
|
* @public
|
|
702
825
|
*/
|
|
703
826
|
instanceType?: string | undefined;
|
|
704
|
-
/**
|
|
705
|
-
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
706
|
-
* @public
|
|
707
|
-
*/
|
|
708
|
-
reservedInstancesRegion?: string | undefined;
|
|
709
827
|
/**
|
|
710
828
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
711
829
|
* @public
|
|
@@ -727,56 +845,6 @@ export interface Ec2ReservedInstancesConfiguration {
|
|
|
727
845
|
* @public
|
|
728
846
|
*/
|
|
729
847
|
sizeFlexEligible?: boolean | undefined;
|
|
730
|
-
/**
|
|
731
|
-
* <p>How much purchasing this instance costs you upfront.</p>
|
|
732
|
-
* @public
|
|
733
|
-
*/
|
|
734
|
-
upfrontCost?: string | undefined;
|
|
735
|
-
/**
|
|
736
|
-
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
737
|
-
* @public
|
|
738
|
-
*/
|
|
739
|
-
monthlyRecurringCost?: string | undefined;
|
|
740
|
-
}
|
|
741
|
-
/**
|
|
742
|
-
* <p>Pricing details for your recommended reserved instance.</p>
|
|
743
|
-
* @public
|
|
744
|
-
*/
|
|
745
|
-
export interface ReservedInstancesPricing {
|
|
746
|
-
/**
|
|
747
|
-
* <p>The remaining On-Demand cost estimated to not be covered by the recommended reserved
|
|
748
|
-
* instance, over the length of the lookback period.</p>
|
|
749
|
-
* @public
|
|
750
|
-
*/
|
|
751
|
-
estimatedOnDemandCost?: number | undefined;
|
|
752
|
-
/**
|
|
753
|
-
* <p>The cost of paying for the recommended reserved instance monthly.</p>
|
|
754
|
-
* @public
|
|
755
|
-
*/
|
|
756
|
-
monthlyReservationEligibleCost?: number | undefined;
|
|
757
|
-
/**
|
|
758
|
-
* <p>The savings percentage relative to the total On-Demand costs that are associated with this
|
|
759
|
-
* instance.</p>
|
|
760
|
-
* @public
|
|
761
|
-
*/
|
|
762
|
-
savingsPercentage?: number | undefined;
|
|
763
|
-
/**
|
|
764
|
-
* <p>The estimated cost of your recurring monthly fees for the recommended reserved instance
|
|
765
|
-
* across the month.</p>
|
|
766
|
-
* @public
|
|
767
|
-
*/
|
|
768
|
-
estimatedMonthlyAmortizedReservationCost?: number | undefined;
|
|
769
|
-
}
|
|
770
|
-
/**
|
|
771
|
-
* <p>Cost impact of the purchase recommendation.</p>
|
|
772
|
-
* @public
|
|
773
|
-
*/
|
|
774
|
-
export interface ReservedInstancesCostCalculation {
|
|
775
|
-
/**
|
|
776
|
-
* <p>Pricing details of the purchase recommendation.</p>
|
|
777
|
-
* @public
|
|
778
|
-
*/
|
|
779
|
-
pricing?: ReservedInstancesPricing | undefined;
|
|
780
848
|
}
|
|
781
849
|
/**
|
|
782
850
|
* <p>The EC2 reserved instances recommendation details.</p>
|
|
@@ -827,21 +895,15 @@ export interface EcsService {
|
|
|
827
895
|
*/
|
|
828
896
|
export interface ElastiCacheReservedInstancesConfiguration {
|
|
829
897
|
/**
|
|
830
|
-
* <p>The account scope
|
|
898
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
831
899
|
* @public
|
|
832
900
|
*/
|
|
833
901
|
accountScope?: string | undefined;
|
|
834
902
|
/**
|
|
835
|
-
* <p>The service
|
|
903
|
+
* <p>The service for which you want recommendations.</p>
|
|
836
904
|
* @public
|
|
837
905
|
*/
|
|
838
906
|
service?: string | undefined;
|
|
839
|
-
/**
|
|
840
|
-
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
841
|
-
* purchase.</p>
|
|
842
|
-
* @public
|
|
843
|
-
*/
|
|
844
|
-
normalizedUnitsToPurchase?: string | undefined;
|
|
845
907
|
/**
|
|
846
908
|
* <p>The reserved instances recommendation term in years.</p>
|
|
847
909
|
* @public
|
|
@@ -852,6 +914,27 @@ export interface ElastiCacheReservedInstancesConfiguration {
|
|
|
852
914
|
* @public
|
|
853
915
|
*/
|
|
854
916
|
paymentOption?: string | undefined;
|
|
917
|
+
/**
|
|
918
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
reservedInstancesRegion?: string | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* <p>How much purchasing this instance costs you upfront.</p>
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
upfrontCost?: string | undefined;
|
|
927
|
+
/**
|
|
928
|
+
* <p>How much purchasing these reserved instances costs you on a monthly basis.</p>
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
monthlyRecurringCost?: string | undefined;
|
|
932
|
+
/**
|
|
933
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
934
|
+
* purchase.</p>
|
|
935
|
+
* @public
|
|
936
|
+
*/
|
|
937
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
855
938
|
/**
|
|
856
939
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
857
940
|
* @public
|
|
@@ -867,11 +950,6 @@ export interface ElastiCacheReservedInstancesConfiguration {
|
|
|
867
950
|
* @public
|
|
868
951
|
*/
|
|
869
952
|
instanceType?: string | undefined;
|
|
870
|
-
/**
|
|
871
|
-
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
872
|
-
* @public
|
|
873
|
-
*/
|
|
874
|
-
reservedInstancesRegion?: string | undefined;
|
|
875
953
|
/**
|
|
876
954
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
877
955
|
* @public
|
|
@@ -882,16 +960,6 @@ export interface ElastiCacheReservedInstancesConfiguration {
|
|
|
882
960
|
* @public
|
|
883
961
|
*/
|
|
884
962
|
sizeFlexEligible?: boolean | undefined;
|
|
885
|
-
/**
|
|
886
|
-
* <p>How much purchasing this instance costs you upfront.</p>
|
|
887
|
-
* @public
|
|
888
|
-
*/
|
|
889
|
-
upfrontCost?: string | undefined;
|
|
890
|
-
/**
|
|
891
|
-
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
892
|
-
* @public
|
|
893
|
-
*/
|
|
894
|
-
monthlyRecurringCost?: string | undefined;
|
|
895
963
|
}
|
|
896
964
|
/**
|
|
897
965
|
* <p>The ElastiCache reserved instances recommendation details.</p>
|
|
@@ -937,26 +1005,24 @@ export interface LambdaFunction {
|
|
|
937
1005
|
costCalculation?: ResourceCostCalculation | undefined;
|
|
938
1006
|
}
|
|
939
1007
|
/**
|
|
940
|
-
* <p>The
|
|
1008
|
+
* <p>The MemoryDB reserved instances configuration used for recommendations.</p>
|
|
1009
|
+
* <note>
|
|
1010
|
+
* <p>MemoryDB reserved instances are referred to as "MemoryDB reserved nodes" in
|
|
1011
|
+
* customer-facing documentation.</p>
|
|
1012
|
+
* </note>
|
|
941
1013
|
* @public
|
|
942
1014
|
*/
|
|
943
|
-
export interface
|
|
1015
|
+
export interface MemoryDbReservedInstancesConfiguration {
|
|
944
1016
|
/**
|
|
945
|
-
* <p>The account scope
|
|
1017
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
946
1018
|
* @public
|
|
947
1019
|
*/
|
|
948
1020
|
accountScope?: string | undefined;
|
|
949
1021
|
/**
|
|
950
|
-
* <p>The service
|
|
1022
|
+
* <p>The service for which you want recommendations.</p>
|
|
951
1023
|
* @public
|
|
952
1024
|
*/
|
|
953
1025
|
service?: string | undefined;
|
|
954
|
-
/**
|
|
955
|
-
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
956
|
-
* purchase.</p>
|
|
957
|
-
* @public
|
|
958
|
-
*/
|
|
959
|
-
normalizedUnitsToPurchase?: string | undefined;
|
|
960
1026
|
/**
|
|
961
1027
|
* <p>The reserved instances recommendation term in years.</p>
|
|
962
1028
|
* @public
|
|
@@ -967,6 +1033,27 @@ export interface OpenSearchReservedInstancesConfiguration {
|
|
|
967
1033
|
* @public
|
|
968
1034
|
*/
|
|
969
1035
|
paymentOption?: string | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
reservedInstancesRegion?: string | undefined;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>How much purchasing these reserved instances costs you upfront.</p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
upfrontCost?: string | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>How much purchasing these reserved instances costs you on a monthly basis.</p>
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
monthlyRecurringCost?: string | undefined;
|
|
1051
|
+
/**
|
|
1052
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1053
|
+
* purchase.</p>
|
|
1054
|
+
* @public
|
|
1055
|
+
*/
|
|
1056
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
970
1057
|
/**
|
|
971
1058
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
972
1059
|
* @public
|
|
@@ -978,30 +1065,107 @@ export interface OpenSearchReservedInstancesConfiguration {
|
|
|
978
1065
|
*/
|
|
979
1066
|
instanceType?: string | undefined;
|
|
980
1067
|
/**
|
|
981
|
-
* <p>The
|
|
1068
|
+
* <p>The instance family of the recommended reservation.</p>
|
|
982
1069
|
* @public
|
|
983
1070
|
*/
|
|
984
|
-
|
|
1071
|
+
instanceFamily?: string | undefined;
|
|
1072
|
+
/**
|
|
1073
|
+
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1074
|
+
* @public
|
|
1075
|
+
*/
|
|
1076
|
+
sizeFlexEligible?: boolean | undefined;
|
|
985
1077
|
/**
|
|
986
1078
|
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
987
1079
|
* @public
|
|
988
1080
|
*/
|
|
989
1081
|
currentGeneration?: string | undefined;
|
|
1082
|
+
}
|
|
1083
|
+
/**
|
|
1084
|
+
* <p>The MemoryDB reserved instances recommendation details.</p>
|
|
1085
|
+
* <note>
|
|
1086
|
+
* <p>MemoryDB reserved instances are referred to as "MemoryDB reserved nodes" in
|
|
1087
|
+
* customer-facing documentation.</p>
|
|
1088
|
+
* </note>
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
1091
|
+
export interface MemoryDbReservedInstances {
|
|
990
1092
|
/**
|
|
991
|
-
* <p>
|
|
1093
|
+
* <p>The MemoryDB reserved instances configuration used for recommendations.</p>
|
|
992
1094
|
* @public
|
|
993
1095
|
*/
|
|
994
|
-
|
|
1096
|
+
configuration?: MemoryDbReservedInstancesConfiguration | undefined;
|
|
1097
|
+
/**
|
|
1098
|
+
* <p>Cost impact of the purchase recommendation.</p>
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
1101
|
+
costCalculation?: ReservedInstancesCostCalculation | undefined;
|
|
1102
|
+
}
|
|
1103
|
+
/**
|
|
1104
|
+
* <p>The OpenSearch reserved instances configuration used for recommendations.</p>
|
|
1105
|
+
* @public
|
|
1106
|
+
*/
|
|
1107
|
+
export interface OpenSearchReservedInstancesConfiguration {
|
|
1108
|
+
/**
|
|
1109
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
1110
|
+
* @public
|
|
1111
|
+
*/
|
|
1112
|
+
accountScope?: string | undefined;
|
|
1113
|
+
/**
|
|
1114
|
+
* <p>The service for which you want recommendations.</p>
|
|
1115
|
+
* @public
|
|
1116
|
+
*/
|
|
1117
|
+
service?: string | undefined;
|
|
1118
|
+
/**
|
|
1119
|
+
* <p>The reserved instances recommendation term in years.</p>
|
|
1120
|
+
* @public
|
|
1121
|
+
*/
|
|
1122
|
+
term?: string | undefined;
|
|
1123
|
+
/**
|
|
1124
|
+
* <p>The payment option for the commitment.</p>
|
|
1125
|
+
* @public
|
|
1126
|
+
*/
|
|
1127
|
+
paymentOption?: string | undefined;
|
|
1128
|
+
/**
|
|
1129
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1130
|
+
* @public
|
|
1131
|
+
*/
|
|
1132
|
+
reservedInstancesRegion?: string | undefined;
|
|
995
1133
|
/**
|
|
996
1134
|
* <p>How much purchasing this instance costs you upfront.</p>
|
|
997
1135
|
* @public
|
|
998
1136
|
*/
|
|
999
1137
|
upfrontCost?: string | undefined;
|
|
1000
1138
|
/**
|
|
1001
|
-
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
1139
|
+
* <p>How much purchasing these reserved instances costs you on a monthly basis.</p>
|
|
1002
1140
|
* @public
|
|
1003
1141
|
*/
|
|
1004
1142
|
monthlyRecurringCost?: string | undefined;
|
|
1143
|
+
/**
|
|
1144
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1145
|
+
* purchase.</p>
|
|
1146
|
+
* @public
|
|
1147
|
+
*/
|
|
1148
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
1151
|
+
* @public
|
|
1152
|
+
*/
|
|
1153
|
+
numberOfInstancesToPurchase?: string | undefined;
|
|
1154
|
+
/**
|
|
1155
|
+
* <p>The type of instance that Amazon Web Services recommends.</p>
|
|
1156
|
+
* @public
|
|
1157
|
+
*/
|
|
1158
|
+
instanceType?: string | undefined;
|
|
1159
|
+
/**
|
|
1160
|
+
* <p>Determines whether the recommendation is for a current generation instance.</p>
|
|
1161
|
+
* @public
|
|
1162
|
+
*/
|
|
1163
|
+
currentGeneration?: string | undefined;
|
|
1164
|
+
/**
|
|
1165
|
+
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1166
|
+
* @public
|
|
1167
|
+
*/
|
|
1168
|
+
sizeFlexEligible?: boolean | undefined;
|
|
1005
1169
|
}
|
|
1006
1170
|
/**
|
|
1007
1171
|
* <p>The OpenSearch reserved instances recommendation details.</p>
|
|
@@ -1106,21 +1270,15 @@ export interface RdsDbInstanceStorage {
|
|
|
1106
1270
|
*/
|
|
1107
1271
|
export interface RdsReservedInstancesConfiguration {
|
|
1108
1272
|
/**
|
|
1109
|
-
* <p>The account scope
|
|
1273
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
1110
1274
|
* @public
|
|
1111
1275
|
*/
|
|
1112
1276
|
accountScope?: string | undefined;
|
|
1113
1277
|
/**
|
|
1114
|
-
* <p>The service
|
|
1278
|
+
* <p>The service for which you want recommendations.</p>
|
|
1115
1279
|
* @public
|
|
1116
1280
|
*/
|
|
1117
1281
|
service?: string | undefined;
|
|
1118
|
-
/**
|
|
1119
|
-
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1120
|
-
* purchase.</p>
|
|
1121
|
-
* @public
|
|
1122
|
-
*/
|
|
1123
|
-
normalizedUnitsToPurchase?: string | undefined;
|
|
1124
1282
|
/**
|
|
1125
1283
|
* <p>The reserved instances recommendation term in years.</p>
|
|
1126
1284
|
* @public
|
|
@@ -1131,6 +1289,27 @@ export interface RdsReservedInstancesConfiguration {
|
|
|
1131
1289
|
* @public
|
|
1132
1290
|
*/
|
|
1133
1291
|
paymentOption?: string | undefined;
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1294
|
+
* @public
|
|
1295
|
+
*/
|
|
1296
|
+
reservedInstancesRegion?: string | undefined;
|
|
1297
|
+
/**
|
|
1298
|
+
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1299
|
+
* @public
|
|
1300
|
+
*/
|
|
1301
|
+
upfrontCost?: string | undefined;
|
|
1302
|
+
/**
|
|
1303
|
+
* <p>How much purchasing this instance costs you on a monthly basis.</p>
|
|
1304
|
+
* @public
|
|
1305
|
+
*/
|
|
1306
|
+
monthlyRecurringCost?: string | undefined;
|
|
1307
|
+
/**
|
|
1308
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1309
|
+
* purchase.</p>
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
1134
1313
|
/**
|
|
1135
1314
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
1136
1315
|
* @public
|
|
@@ -1146,11 +1325,6 @@ export interface RdsReservedInstancesConfiguration {
|
|
|
1146
1325
|
* @public
|
|
1147
1326
|
*/
|
|
1148
1327
|
instanceType?: string | undefined;
|
|
1149
|
-
/**
|
|
1150
|
-
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1151
|
-
* @public
|
|
1152
|
-
*/
|
|
1153
|
-
reservedInstancesRegion?: string | undefined;
|
|
1154
1328
|
/**
|
|
1155
1329
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1156
1330
|
* @public
|
|
@@ -1161,16 +1335,6 @@ export interface RdsReservedInstancesConfiguration {
|
|
|
1161
1335
|
* @public
|
|
1162
1336
|
*/
|
|
1163
1337
|
currentGeneration?: string | undefined;
|
|
1164
|
-
/**
|
|
1165
|
-
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1166
|
-
* @public
|
|
1167
|
-
*/
|
|
1168
|
-
upfrontCost?: string | undefined;
|
|
1169
|
-
/**
|
|
1170
|
-
* <p>How much purchasing this instance costs you on a monthly basis.</p>
|
|
1171
|
-
* @public
|
|
1172
|
-
*/
|
|
1173
|
-
monthlyRecurringCost?: string | undefined;
|
|
1174
1338
|
/**
|
|
1175
1339
|
* <p>The license model that the recommended reservation supports.</p>
|
|
1176
1340
|
* @public
|
|
@@ -1215,21 +1379,15 @@ export interface RdsReservedInstances {
|
|
|
1215
1379
|
*/
|
|
1216
1380
|
export interface RedshiftReservedInstancesConfiguration {
|
|
1217
1381
|
/**
|
|
1218
|
-
* <p>The account scope
|
|
1382
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
1219
1383
|
* @public
|
|
1220
1384
|
*/
|
|
1221
1385
|
accountScope?: string | undefined;
|
|
1222
1386
|
/**
|
|
1223
|
-
* <p>The service
|
|
1387
|
+
* <p>The service for which you want recommendations.</p>
|
|
1224
1388
|
* @public
|
|
1225
1389
|
*/
|
|
1226
1390
|
service?: string | undefined;
|
|
1227
|
-
/**
|
|
1228
|
-
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1229
|
-
* purchase.</p>
|
|
1230
|
-
* @public
|
|
1231
|
-
*/
|
|
1232
|
-
normalizedUnitsToPurchase?: string | undefined;
|
|
1233
1391
|
/**
|
|
1234
1392
|
* <p>The reserved instances recommendation term in years.</p>
|
|
1235
1393
|
* @public
|
|
@@ -1240,6 +1398,27 @@ export interface RedshiftReservedInstancesConfiguration {
|
|
|
1240
1398
|
* @public
|
|
1241
1399
|
*/
|
|
1242
1400
|
paymentOption?: string | undefined;
|
|
1401
|
+
/**
|
|
1402
|
+
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1403
|
+
* @public
|
|
1404
|
+
*/
|
|
1405
|
+
reservedInstancesRegion?: string | undefined;
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1408
|
+
* @public
|
|
1409
|
+
*/
|
|
1410
|
+
upfrontCost?: string | undefined;
|
|
1411
|
+
/**
|
|
1412
|
+
* <p>How much purchasing these reserved instances costs you on a monthly basis.</p>
|
|
1413
|
+
* @public
|
|
1414
|
+
*/
|
|
1415
|
+
monthlyRecurringCost?: string | undefined;
|
|
1416
|
+
/**
|
|
1417
|
+
* <p>The number of normalized units that Amazon Web Services recommends that you
|
|
1418
|
+
* purchase.</p>
|
|
1419
|
+
* @public
|
|
1420
|
+
*/
|
|
1421
|
+
normalizedUnitsToPurchase?: string | undefined;
|
|
1243
1422
|
/**
|
|
1244
1423
|
* <p>The number of instances that Amazon Web Services recommends that you purchase.</p>
|
|
1245
1424
|
* @public
|
|
@@ -1255,11 +1434,6 @@ export interface RedshiftReservedInstancesConfiguration {
|
|
|
1255
1434
|
* @public
|
|
1256
1435
|
*/
|
|
1257
1436
|
instanceType?: string | undefined;
|
|
1258
|
-
/**
|
|
1259
|
-
* <p>The Amazon Web Services Region of the commitment.</p>
|
|
1260
|
-
* @public
|
|
1261
|
-
*/
|
|
1262
|
-
reservedInstancesRegion?: string | undefined;
|
|
1263
1437
|
/**
|
|
1264
1438
|
* <p>Determines whether the recommendation is size flexible.</p>
|
|
1265
1439
|
* @public
|
|
@@ -1270,16 +1444,6 @@ export interface RedshiftReservedInstancesConfiguration {
|
|
|
1270
1444
|
* @public
|
|
1271
1445
|
*/
|
|
1272
1446
|
currentGeneration?: string | undefined;
|
|
1273
|
-
/**
|
|
1274
|
-
* <p>How much purchasing this instance costs you upfront.</p>
|
|
1275
|
-
* @public
|
|
1276
|
-
*/
|
|
1277
|
-
upfrontCost?: string | undefined;
|
|
1278
|
-
/**
|
|
1279
|
-
* <p>How much purchasing reserved instances costs you on a monthly basis.</p>
|
|
1280
|
-
* @public
|
|
1281
|
-
*/
|
|
1282
|
-
monthlyRecurringCost?: string | undefined;
|
|
1283
1447
|
}
|
|
1284
1448
|
/**
|
|
1285
1449
|
* <p>The Redshift reserved instances recommendation details.</p>
|
|
@@ -1303,7 +1467,7 @@ export interface RedshiftReservedInstances {
|
|
|
1303
1467
|
*/
|
|
1304
1468
|
export interface SageMakerSavingsPlansConfiguration {
|
|
1305
1469
|
/**
|
|
1306
|
-
* <p>The account scope
|
|
1470
|
+
* <p>The account scope for which you want recommendations.</p>
|
|
1307
1471
|
* @public
|
|
1308
1472
|
*/
|
|
1309
1473
|
accountScope?: string | undefined;
|
|
@@ -1343,7 +1507,7 @@ export interface SageMakerSavingsPlans {
|
|
|
1343
1507
|
* <p>Contains detailed information about the specified resource.</p>
|
|
1344
1508
|
* @public
|
|
1345
1509
|
*/
|
|
1346
|
-
export type ResourceDetails = ResourceDetails.ComputeSavingsPlansMember | ResourceDetails.EbsVolumeMember | ResourceDetails.Ec2AutoScalingGroupMember | ResourceDetails.Ec2InstanceMember | ResourceDetails.Ec2InstanceSavingsPlansMember | ResourceDetails.Ec2ReservedInstancesMember | ResourceDetails.EcsServiceMember | ResourceDetails.ElastiCacheReservedInstancesMember | ResourceDetails.LambdaFunctionMember | ResourceDetails.OpenSearchReservedInstancesMember | ResourceDetails.RdsDbInstanceMember | ResourceDetails.RdsDbInstanceStorageMember | ResourceDetails.RdsReservedInstancesMember | ResourceDetails.RedshiftReservedInstancesMember | ResourceDetails.SageMakerSavingsPlansMember | ResourceDetails.$UnknownMember;
|
|
1510
|
+
export type ResourceDetails = ResourceDetails.ComputeSavingsPlansMember | ResourceDetails.DynamoDbReservedCapacityMember | ResourceDetails.EbsVolumeMember | ResourceDetails.Ec2AutoScalingGroupMember | ResourceDetails.Ec2InstanceMember | ResourceDetails.Ec2InstanceSavingsPlansMember | ResourceDetails.Ec2ReservedInstancesMember | ResourceDetails.EcsServiceMember | ResourceDetails.ElastiCacheReservedInstancesMember | ResourceDetails.LambdaFunctionMember | ResourceDetails.MemoryDbReservedInstancesMember | ResourceDetails.OpenSearchReservedInstancesMember | ResourceDetails.RdsDbInstanceMember | ResourceDetails.RdsDbInstanceStorageMember | ResourceDetails.RdsReservedInstancesMember | ResourceDetails.RedshiftReservedInstancesMember | ResourceDetails.SageMakerSavingsPlansMember | ResourceDetails.$UnknownMember;
|
|
1347
1511
|
/**
|
|
1348
1512
|
* @public
|
|
1349
1513
|
*/
|
|
@@ -1368,6 +1532,8 @@ export declare namespace ResourceDetails {
|
|
|
1368
1532
|
sageMakerSavingsPlans?: never;
|
|
1369
1533
|
rdsDbInstance?: never;
|
|
1370
1534
|
rdsDbInstanceStorage?: never;
|
|
1535
|
+
dynamoDbReservedCapacity?: never;
|
|
1536
|
+
memoryDbReservedInstances?: never;
|
|
1371
1537
|
$unknown?: never;
|
|
1372
1538
|
}
|
|
1373
1539
|
/**
|
|
@@ -1390,6 +1556,8 @@ export declare namespace ResourceDetails {
|
|
|
1390
1556
|
sageMakerSavingsPlans?: never;
|
|
1391
1557
|
rdsDbInstance?: never;
|
|
1392
1558
|
rdsDbInstanceStorage?: never;
|
|
1559
|
+
dynamoDbReservedCapacity?: never;
|
|
1560
|
+
memoryDbReservedInstances?: never;
|
|
1393
1561
|
$unknown?: never;
|
|
1394
1562
|
}
|
|
1395
1563
|
/**
|
|
@@ -1412,6 +1580,8 @@ export declare namespace ResourceDetails {
|
|
|
1412
1580
|
sageMakerSavingsPlans?: never;
|
|
1413
1581
|
rdsDbInstance?: never;
|
|
1414
1582
|
rdsDbInstanceStorage?: never;
|
|
1583
|
+
dynamoDbReservedCapacity?: never;
|
|
1584
|
+
memoryDbReservedInstances?: never;
|
|
1415
1585
|
$unknown?: never;
|
|
1416
1586
|
}
|
|
1417
1587
|
/**
|
|
@@ -1434,6 +1604,8 @@ export declare namespace ResourceDetails {
|
|
|
1434
1604
|
sageMakerSavingsPlans?: never;
|
|
1435
1605
|
rdsDbInstance?: never;
|
|
1436
1606
|
rdsDbInstanceStorage?: never;
|
|
1607
|
+
dynamoDbReservedCapacity?: never;
|
|
1608
|
+
memoryDbReservedInstances?: never;
|
|
1437
1609
|
$unknown?: never;
|
|
1438
1610
|
}
|
|
1439
1611
|
/**
|
|
@@ -1456,6 +1628,8 @@ export declare namespace ResourceDetails {
|
|
|
1456
1628
|
sageMakerSavingsPlans?: never;
|
|
1457
1629
|
rdsDbInstance?: never;
|
|
1458
1630
|
rdsDbInstanceStorage?: never;
|
|
1631
|
+
dynamoDbReservedCapacity?: never;
|
|
1632
|
+
memoryDbReservedInstances?: never;
|
|
1459
1633
|
$unknown?: never;
|
|
1460
1634
|
}
|
|
1461
1635
|
/**
|
|
@@ -1478,6 +1652,8 @@ export declare namespace ResourceDetails {
|
|
|
1478
1652
|
sageMakerSavingsPlans?: never;
|
|
1479
1653
|
rdsDbInstance?: never;
|
|
1480
1654
|
rdsDbInstanceStorage?: never;
|
|
1655
|
+
dynamoDbReservedCapacity?: never;
|
|
1656
|
+
memoryDbReservedInstances?: never;
|
|
1481
1657
|
$unknown?: never;
|
|
1482
1658
|
}
|
|
1483
1659
|
/**
|
|
@@ -1500,6 +1676,8 @@ export declare namespace ResourceDetails {
|
|
|
1500
1676
|
sageMakerSavingsPlans?: never;
|
|
1501
1677
|
rdsDbInstance?: never;
|
|
1502
1678
|
rdsDbInstanceStorage?: never;
|
|
1679
|
+
dynamoDbReservedCapacity?: never;
|
|
1680
|
+
memoryDbReservedInstances?: never;
|
|
1503
1681
|
$unknown?: never;
|
|
1504
1682
|
}
|
|
1505
1683
|
/**
|
|
@@ -1522,6 +1700,8 @@ export declare namespace ResourceDetails {
|
|
|
1522
1700
|
sageMakerSavingsPlans?: never;
|
|
1523
1701
|
rdsDbInstance?: never;
|
|
1524
1702
|
rdsDbInstanceStorage?: never;
|
|
1703
|
+
dynamoDbReservedCapacity?: never;
|
|
1704
|
+
memoryDbReservedInstances?: never;
|
|
1525
1705
|
$unknown?: never;
|
|
1526
1706
|
}
|
|
1527
1707
|
/**
|
|
@@ -1544,6 +1724,8 @@ export declare namespace ResourceDetails {
|
|
|
1544
1724
|
sageMakerSavingsPlans?: never;
|
|
1545
1725
|
rdsDbInstance?: never;
|
|
1546
1726
|
rdsDbInstanceStorage?: never;
|
|
1727
|
+
dynamoDbReservedCapacity?: never;
|
|
1728
|
+
memoryDbReservedInstances?: never;
|
|
1547
1729
|
$unknown?: never;
|
|
1548
1730
|
}
|
|
1549
1731
|
/**
|
|
@@ -1566,6 +1748,8 @@ export declare namespace ResourceDetails {
|
|
|
1566
1748
|
sageMakerSavingsPlans?: never;
|
|
1567
1749
|
rdsDbInstance?: never;
|
|
1568
1750
|
rdsDbInstanceStorage?: never;
|
|
1751
|
+
dynamoDbReservedCapacity?: never;
|
|
1752
|
+
memoryDbReservedInstances?: never;
|
|
1569
1753
|
$unknown?: never;
|
|
1570
1754
|
}
|
|
1571
1755
|
/**
|
|
@@ -1588,6 +1772,8 @@ export declare namespace ResourceDetails {
|
|
|
1588
1772
|
sageMakerSavingsPlans?: never;
|
|
1589
1773
|
rdsDbInstance?: never;
|
|
1590
1774
|
rdsDbInstanceStorage?: never;
|
|
1775
|
+
dynamoDbReservedCapacity?: never;
|
|
1776
|
+
memoryDbReservedInstances?: never;
|
|
1591
1777
|
$unknown?: never;
|
|
1592
1778
|
}
|
|
1593
1779
|
/**
|
|
@@ -1610,6 +1796,8 @@ export declare namespace ResourceDetails {
|
|
|
1610
1796
|
sageMakerSavingsPlans?: never;
|
|
1611
1797
|
rdsDbInstance?: never;
|
|
1612
1798
|
rdsDbInstanceStorage?: never;
|
|
1799
|
+
dynamoDbReservedCapacity?: never;
|
|
1800
|
+
memoryDbReservedInstances?: never;
|
|
1613
1801
|
$unknown?: never;
|
|
1614
1802
|
}
|
|
1615
1803
|
/**
|
|
@@ -1633,6 +1821,8 @@ export declare namespace ResourceDetails {
|
|
|
1633
1821
|
sageMakerSavingsPlans: SageMakerSavingsPlans;
|
|
1634
1822
|
rdsDbInstance?: never;
|
|
1635
1823
|
rdsDbInstanceStorage?: never;
|
|
1824
|
+
dynamoDbReservedCapacity?: never;
|
|
1825
|
+
memoryDbReservedInstances?: never;
|
|
1636
1826
|
$unknown?: never;
|
|
1637
1827
|
}
|
|
1638
1828
|
/**
|
|
@@ -1655,6 +1845,8 @@ export declare namespace ResourceDetails {
|
|
|
1655
1845
|
sageMakerSavingsPlans?: never;
|
|
1656
1846
|
rdsDbInstance: RdsDbInstance;
|
|
1657
1847
|
rdsDbInstanceStorage?: never;
|
|
1848
|
+
dynamoDbReservedCapacity?: never;
|
|
1849
|
+
memoryDbReservedInstances?: never;
|
|
1658
1850
|
$unknown?: never;
|
|
1659
1851
|
}
|
|
1660
1852
|
/**
|
|
@@ -1677,6 +1869,58 @@ export declare namespace ResourceDetails {
|
|
|
1677
1869
|
sageMakerSavingsPlans?: never;
|
|
1678
1870
|
rdsDbInstance?: never;
|
|
1679
1871
|
rdsDbInstanceStorage: RdsDbInstanceStorage;
|
|
1872
|
+
dynamoDbReservedCapacity?: never;
|
|
1873
|
+
memoryDbReservedInstances?: never;
|
|
1874
|
+
$unknown?: never;
|
|
1875
|
+
}
|
|
1876
|
+
/**
|
|
1877
|
+
* <p>The DynamoDB reserved capacity recommendation
|
|
1878
|
+
* details.</p>
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
interface DynamoDbReservedCapacityMember {
|
|
1882
|
+
lambdaFunction?: never;
|
|
1883
|
+
ecsService?: never;
|
|
1884
|
+
ec2Instance?: never;
|
|
1885
|
+
ebsVolume?: never;
|
|
1886
|
+
ec2AutoScalingGroup?: never;
|
|
1887
|
+
ec2ReservedInstances?: never;
|
|
1888
|
+
rdsReservedInstances?: never;
|
|
1889
|
+
elastiCacheReservedInstances?: never;
|
|
1890
|
+
openSearchReservedInstances?: never;
|
|
1891
|
+
redshiftReservedInstances?: never;
|
|
1892
|
+
ec2InstanceSavingsPlans?: never;
|
|
1893
|
+
computeSavingsPlans?: never;
|
|
1894
|
+
sageMakerSavingsPlans?: never;
|
|
1895
|
+
rdsDbInstance?: never;
|
|
1896
|
+
rdsDbInstanceStorage?: never;
|
|
1897
|
+
dynamoDbReservedCapacity: DynamoDbReservedCapacity;
|
|
1898
|
+
memoryDbReservedInstances?: never;
|
|
1899
|
+
$unknown?: never;
|
|
1900
|
+
}
|
|
1901
|
+
/**
|
|
1902
|
+
* <p>The MemoryDB reserved instances recommendation
|
|
1903
|
+
* details.</p>
|
|
1904
|
+
* @public
|
|
1905
|
+
*/
|
|
1906
|
+
interface MemoryDbReservedInstancesMember {
|
|
1907
|
+
lambdaFunction?: never;
|
|
1908
|
+
ecsService?: never;
|
|
1909
|
+
ec2Instance?: never;
|
|
1910
|
+
ebsVolume?: never;
|
|
1911
|
+
ec2AutoScalingGroup?: never;
|
|
1912
|
+
ec2ReservedInstances?: never;
|
|
1913
|
+
rdsReservedInstances?: never;
|
|
1914
|
+
elastiCacheReservedInstances?: never;
|
|
1915
|
+
openSearchReservedInstances?: never;
|
|
1916
|
+
redshiftReservedInstances?: never;
|
|
1917
|
+
ec2InstanceSavingsPlans?: never;
|
|
1918
|
+
computeSavingsPlans?: never;
|
|
1919
|
+
sageMakerSavingsPlans?: never;
|
|
1920
|
+
rdsDbInstance?: never;
|
|
1921
|
+
rdsDbInstanceStorage?: never;
|
|
1922
|
+
dynamoDbReservedCapacity?: never;
|
|
1923
|
+
memoryDbReservedInstances: MemoryDbReservedInstances;
|
|
1680
1924
|
$unknown?: never;
|
|
1681
1925
|
}
|
|
1682
1926
|
/**
|
|
@@ -1698,6 +1942,8 @@ export declare namespace ResourceDetails {
|
|
|
1698
1942
|
sageMakerSavingsPlans?: never;
|
|
1699
1943
|
rdsDbInstance?: never;
|
|
1700
1944
|
rdsDbInstanceStorage?: never;
|
|
1945
|
+
dynamoDbReservedCapacity?: never;
|
|
1946
|
+
memoryDbReservedInstances?: never;
|
|
1701
1947
|
$unknown: [string, any];
|
|
1702
1948
|
}
|
|
1703
1949
|
interface Visitor<T> {
|
|
@@ -1716,6 +1962,8 @@ export declare namespace ResourceDetails {
|
|
|
1716
1962
|
sageMakerSavingsPlans: (value: SageMakerSavingsPlans) => T;
|
|
1717
1963
|
rdsDbInstance: (value: RdsDbInstance) => T;
|
|
1718
1964
|
rdsDbInstanceStorage: (value: RdsDbInstanceStorage) => T;
|
|
1965
|
+
dynamoDbReservedCapacity: (value: DynamoDbReservedCapacity) => T;
|
|
1966
|
+
memoryDbReservedInstances: (value: MemoryDbReservedInstances) => T;
|
|
1719
1967
|
_: (name: string, value: any) => T;
|
|
1720
1968
|
}
|
|
1721
1969
|
const visit: <T>(value: ResourceDetails, visitor: Visitor<T>) => T;
|
|
@@ -1726,6 +1974,7 @@ export declare namespace ResourceDetails {
|
|
|
1726
1974
|
*/
|
|
1727
1975
|
export declare const ResourceType: {
|
|
1728
1976
|
readonly COMPUTE_SAVINGS_PLANS: "ComputeSavingsPlans";
|
|
1977
|
+
readonly DYNAMO_DB_RESERVED_CAPACITY: "DynamoDbReservedCapacity";
|
|
1729
1978
|
readonly EBS_VOLUME: "EbsVolume";
|
|
1730
1979
|
readonly EC2_AUTO_SCALING_GROUP: "Ec2AutoScalingGroup";
|
|
1731
1980
|
readonly EC2_INSTANCE: "Ec2Instance";
|
|
@@ -1734,6 +1983,7 @@ export declare const ResourceType: {
|
|
|
1734
1983
|
readonly ECS_SERVICE: "EcsService";
|
|
1735
1984
|
readonly ELASTI_CACHE_RESERVED_INSTANCES: "ElastiCacheReservedInstances";
|
|
1736
1985
|
readonly LAMBDA_FUNCTION: "LambdaFunction";
|
|
1986
|
+
readonly MEMORY_DB_RESERVED_INSTANCES: "MemoryDbReservedInstances";
|
|
1737
1987
|
readonly OPEN_SEARCH_RESERVED_INSTANCES: "OpenSearchReservedInstances";
|
|
1738
1988
|
readonly RDS_DB_INSTANCE: "RdsDbInstance";
|
|
1739
1989
|
readonly RDS_DB_INSTANCE_STORAGE: "RdsDbInstanceStorage";
|
|
@@ -1809,7 +2059,7 @@ export interface GetRecommendationResponse {
|
|
|
1809
2059
|
*/
|
|
1810
2060
|
resourceArn?: string | undefined;
|
|
1811
2061
|
/**
|
|
1812
|
-
* <p>The account
|
|
2062
|
+
* <p>The account to which the recommendation applies.</p>
|
|
1813
2063
|
* @public
|
|
1814
2064
|
*/
|
|
1815
2065
|
accountId?: string | undefined;
|
|
@@ -1997,7 +2247,7 @@ export interface Filter {
|
|
|
1997
2247
|
*/
|
|
1998
2248
|
implementationEfforts?: ImplementationEffort[] | undefined;
|
|
1999
2249
|
/**
|
|
2000
|
-
* <p>The account
|
|
2250
|
+
* <p>The account to which the recommendation applies.</p>
|
|
2001
2251
|
* @public
|
|
2002
2252
|
*/
|
|
2003
2253
|
accountIds?: string[] | undefined;
|
|
@@ -2107,7 +2357,7 @@ export interface Recommendation {
|
|
|
2107
2357
|
*/
|
|
2108
2358
|
recommendationId?: string | undefined;
|
|
2109
2359
|
/**
|
|
2110
|
-
* <p>The account
|
|
2360
|
+
* <p>The account to which the recommendation applies.</p>
|
|
2111
2361
|
* @public
|
|
2112
2362
|
*/
|
|
2113
2363
|
accountId?: string | undefined;
|