@aws-sdk/client-compute-optimizer 3.686.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.
@@ -35,25 +35,25 @@ export interface AccountEnrollmentStatus {
35
35
  * <p>The Amazon Web Services account ID.</p>
36
36
  * @public
37
37
  */
38
- accountId?: string;
38
+ accountId?: string | undefined;
39
39
  /**
40
40
  * <p>The account enrollment status.</p>
41
41
  * @public
42
42
  */
43
- status?: Status;
43
+ status?: Status | undefined;
44
44
  /**
45
45
  * <p>The reason for the account enrollment status.</p>
46
46
  * <p>For example, an account might show a status of <code>Pending</code> because member
47
47
  * accounts of an organization require more time to be enrolled in the service.</p>
48
48
  * @public
49
49
  */
50
- statusReason?: string;
50
+ statusReason?: string | undefined;
51
51
  /**
52
52
  * <p>The Unix epoch timestamp, in seconds, of when the account enrollment status was last
53
53
  * updated.</p>
54
54
  * @public
55
55
  */
56
- lastUpdatedTimestamp?: Date;
56
+ lastUpdatedTimestamp?: Date | undefined;
57
57
  }
58
58
  /**
59
59
  * @public
@@ -76,24 +76,24 @@ export interface AutoScalingGroupConfiguration {
76
76
  * <p>The desired capacity, or number of instances, for the Auto Scaling group.</p>
77
77
  * @public
78
78
  */
79
- desiredCapacity?: number;
79
+ desiredCapacity?: number | undefined;
80
80
  /**
81
81
  * <p>The minimum size, or minimum number of instances, for the Auto Scaling
82
82
  * group.</p>
83
83
  * @public
84
84
  */
85
- minSize?: number;
85
+ minSize?: number | undefined;
86
86
  /**
87
87
  * <p>The maximum size, or maximum number of instances, for the Auto Scaling
88
88
  * group.</p>
89
89
  * @public
90
90
  */
91
- maxSize?: number;
91
+ maxSize?: number | undefined;
92
92
  /**
93
93
  * <p>The instance type for the Auto Scaling group.</p>
94
94
  * @public
95
95
  */
96
- instanceType?: string;
96
+ instanceType?: string | undefined;
97
97
  }
98
98
  /**
99
99
  * @public
@@ -121,14 +121,14 @@ export interface AutoScalingGroupEstimatedMonthlySavings {
121
121
  * </p>
122
122
  * @public
123
123
  */
124
- currency?: Currency;
124
+ currency?: Currency | undefined;
125
125
  /**
126
126
  * <p>
127
127
  * The value of the estimated monthly savings.
128
128
  * </p>
129
129
  * @public
130
130
  */
131
- value?: number;
131
+ value?: number | undefined;
132
132
  }
133
133
  /**
134
134
  * <p>
@@ -143,14 +143,14 @@ export interface Gpu {
143
143
  * </p>
144
144
  * @public
145
145
  */
146
- gpuCount?: number;
146
+ gpuCount?: number | undefined;
147
147
  /**
148
148
  * <p>
149
149
  * The total size of the memory for the GPU accelerators for the instance type, in MiB.
150
150
  * </p>
151
151
  * @public
152
152
  */
153
- gpuMemorySizeInMiB?: number;
153
+ gpuMemorySizeInMiB?: number | undefined;
154
154
  }
155
155
  /**
156
156
  * <p>
@@ -165,7 +165,7 @@ export interface GpuInfo {
165
165
  * </p>
166
166
  * @public
167
167
  */
168
- gpus?: Gpu[];
168
+ gpus?: Gpu[] | undefined;
169
169
  }
170
170
  /**
171
171
  * @public
@@ -229,7 +229,7 @@ export interface ExternalMetricsPreference {
229
229
  * <p> Contains the source options for external metrics preferences. </p>
230
230
  * @public
231
231
  */
232
- source?: ExternalMetricsSource;
232
+ source?: ExternalMetricsSource | undefined;
233
233
  }
234
234
  /**
235
235
  * @public
@@ -283,28 +283,28 @@ export interface EffectivePreferredResource {
283
283
  * </p>
284
284
  * @public
285
285
  */
286
- name?: PreferredResourceName;
286
+ name?: PreferredResourceName | undefined;
287
287
  /**
288
288
  * <p>
289
289
  * The list of preferred resource values that you want considered as rightsizing recommendation candidates.
290
290
  * </p>
291
291
  * @public
292
292
  */
293
- includeList?: string[];
293
+ includeList?: string[] | undefined;
294
294
  /**
295
295
  * <p>
296
296
  * The expanded version of your preferred resource's include list.
297
297
  * </p>
298
298
  * @public
299
299
  */
300
- effectiveIncludeList?: string[];
300
+ effectiveIncludeList?: string[] | undefined;
301
301
  /**
302
302
  * <p>
303
303
  * The list of preferred resources values that you want excluded from rightsizing recommendation candidates.
304
304
  * </p>
305
305
  * @public
306
306
  */
307
- excludeList?: string[];
307
+ excludeList?: string[] | undefined;
308
308
  }
309
309
  /**
310
310
  * @public
@@ -332,7 +332,7 @@ export interface InstanceSavingsEstimationMode {
332
332
  * </p>
333
333
  * @public
334
334
  */
335
- source?: InstanceSavingsEstimationModeSource;
335
+ source?: InstanceSavingsEstimationModeSource | undefined;
336
336
  }
337
337
  /**
338
338
  * @public
@@ -389,7 +389,7 @@ export interface CustomizableMetricParameters {
389
389
  * </note>
390
390
  * @public
391
391
  */
392
- threshold?: CustomizableMetricThreshold;
392
+ threshold?: CustomizableMetricThreshold | undefined;
393
393
  /**
394
394
  * <p>
395
395
  * The headroom value in percentage used for the specified metric parameter.
@@ -407,7 +407,7 @@ export interface CustomizableMetricParameters {
407
407
  * </ul>
408
408
  * @public
409
409
  */
410
- headroom?: CustomizableMetricHeadroom;
410
+ headroom?: CustomizableMetricHeadroom | undefined;
411
411
  }
412
412
  /**
413
413
  * <p>
@@ -425,14 +425,14 @@ export interface UtilizationPreference {
425
425
  * </p>
426
426
  * @public
427
427
  */
428
- metricName?: CustomizableMetricName;
428
+ metricName?: CustomizableMetricName | undefined;
429
429
  /**
430
430
  * <p>
431
431
  * The parameters to set when customizing the resource utilization thresholds.
432
432
  * </p>
433
433
  * @public
434
434
  */
435
- metricParameters?: CustomizableMetricParameters;
435
+ metricParameters?: CustomizableMetricParameters | undefined;
436
436
  }
437
437
  /**
438
438
  * <p>Describes the effective recommendation preferences for a resource.</p>
@@ -459,7 +459,7 @@ export interface EffectiveRecommendationPreferences {
459
459
  * </ul>
460
460
  * @public
461
461
  */
462
- cpuVendorArchitectures?: CpuVendorArchitecture[];
462
+ cpuVendorArchitectures?: CpuVendorArchitecture[] | undefined;
463
463
  /**
464
464
  * <p>Describes the activation status of the enhanced infrastructure metrics
465
465
  * preference.</p>
@@ -471,7 +471,7 @@ export interface EffectiveRecommendationPreferences {
471
471
  * Guide</i>.</p>
472
472
  * @public
473
473
  */
474
- enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics;
474
+ enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | undefined;
475
475
  /**
476
476
  * <p>Describes the activation status of the inferred workload types preference.</p>
477
477
  * <p>A status of <code>Active</code> confirms that the preference is applied in the latest
@@ -479,7 +479,7 @@ export interface EffectiveRecommendationPreferences {
479
479
  * applied to recommendations.</p>
480
480
  * @public
481
481
  */
482
- inferredWorkloadTypes?: InferredWorkloadTypesPreference;
482
+ inferredWorkloadTypes?: InferredWorkloadTypesPreference | undefined;
483
483
  /**
484
484
  * <p> An object that describes the external metrics recommendation preference. </p>
485
485
  * <p> If the preference is applied in the latest recommendation refresh, an object with a
@@ -487,14 +487,14 @@ export interface EffectiveRecommendationPreferences {
487
487
  * to the recommendations already, then this object doesn't appear in the response. </p>
488
488
  * @public
489
489
  */
490
- externalMetricsPreference?: ExternalMetricsPreference;
490
+ externalMetricsPreference?: ExternalMetricsPreference | undefined;
491
491
  /**
492
492
  * <p>
493
493
  * The number of days the utilization metrics of the Amazon Web Services resource are analyzed.
494
494
  * </p>
495
495
  * @public
496
496
  */
497
- lookBackPeriod?: LookBackPeriodPreference;
497
+ lookBackPeriod?: LookBackPeriodPreference | undefined;
498
498
  /**
499
499
  * <p>
500
500
  * The resource’s CPU and memory utilization preferences, such as threshold and headroom, that
@@ -505,21 +505,21 @@ export interface EffectiveRecommendationPreferences {
505
505
  * </note>
506
506
  * @public
507
507
  */
508
- utilizationPreferences?: UtilizationPreference[];
508
+ utilizationPreferences?: UtilizationPreference[] | undefined;
509
509
  /**
510
510
  * <p>
511
511
  * The resource type values that are considered as candidates when generating rightsizing recommendations.
512
512
  * </p>
513
513
  * @public
514
514
  */
515
- preferredResources?: EffectivePreferredResource[];
515
+ preferredResources?: EffectivePreferredResource[] | undefined;
516
516
  /**
517
517
  * <p>
518
518
  * Describes the savings estimation mode applied for calculating savings opportunity for a resource.
519
519
  * </p>
520
520
  * @public
521
521
  */
522
- savingsEstimationMode?: InstanceSavingsEstimationMode;
522
+ savingsEstimationMode?: InstanceSavingsEstimationMode | undefined;
523
523
  }
524
524
  /**
525
525
  * @public
@@ -743,7 +743,7 @@ export interface UtilizationMetric {
743
743
  * </ul>
744
744
  * @public
745
745
  */
746
- name?: MetricName;
746
+ name?: MetricName | undefined;
747
747
  /**
748
748
  * <p>The statistic of the utilization metric.</p>
749
749
  * <p>The Compute Optimizer API, Command Line Interface (CLI), and SDKs
@@ -759,12 +759,12 @@ export interface UtilizationMetric {
759
759
  * User Guide</a>.</p>
760
760
  * @public
761
761
  */
762
- statistic?: MetricStatistic;
762
+ statistic?: MetricStatistic | undefined;
763
763
  /**
764
764
  * <p>The value of the utilization metric.</p>
765
765
  * @public
766
766
  */
767
- value?: number;
767
+ value?: number | undefined;
768
768
  }
769
769
  /**
770
770
  * <p>Describes the estimated monthly savings amount possible, based on On-Demand instance
@@ -779,12 +779,12 @@ export interface EstimatedMonthlySavings {
779
779
  * savings.</p>
780
780
  * @public
781
781
  */
782
- currency?: Currency;
782
+ currency?: Currency | undefined;
783
783
  /**
784
784
  * <p>The value of the estimated monthly savings.</p>
785
785
  * @public
786
786
  */
787
- value?: number;
787
+ value?: number | undefined;
788
788
  }
789
789
  /**
790
790
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
@@ -811,13 +811,13 @@ export interface SavingsOpportunity {
811
811
  * Compute Optimizer recommendations for a given resource.</p>
812
812
  * @public
813
813
  */
814
- savingsOpportunityPercentage?: number;
814
+ savingsOpportunityPercentage?: number | undefined;
815
815
  /**
816
816
  * <p>An object that describes the estimated monthly savings amount possible by adopting Compute Optimizer recommendations for a given
817
817
  * resource. This is based on the On-Demand instance pricing..</p>
818
818
  * @public
819
819
  */
820
- estimatedMonthlySavings?: EstimatedMonthlySavings;
820
+ estimatedMonthlySavings?: EstimatedMonthlySavings | undefined;
821
821
  }
822
822
  /**
823
823
  * <p>
@@ -834,7 +834,7 @@ export interface AutoScalingGroupSavingsOpportunityAfterDiscounts {
834
834
  * </p>
835
835
  * @public
836
836
  */
837
- savingsOpportunityPercentage?: number;
837
+ savingsOpportunityPercentage?: number | undefined;
838
838
  /**
839
839
  * <p>
840
840
  * An object that describes the estimated monthly savings possible by adopting Compute Optimizer’s Auto Scaling group recommendations. This is based on the
@@ -842,7 +842,7 @@ export interface AutoScalingGroupSavingsOpportunityAfterDiscounts {
842
842
  * </p>
843
843
  * @public
844
844
  */
845
- estimatedMonthlySavings?: AutoScalingGroupEstimatedMonthlySavings;
845
+ estimatedMonthlySavings?: AutoScalingGroupEstimatedMonthlySavings | undefined;
846
846
  }
847
847
  /**
848
848
  * <p>Describes a recommendation option for an Auto Scaling group.</p>
@@ -853,14 +853,14 @@ export interface AutoScalingGroupRecommendationOption {
853
853
  * <p>An array of objects that describe an Auto Scaling group configuration.</p>
854
854
  * @public
855
855
  */
856
- configuration?: AutoScalingGroupConfiguration;
856
+ configuration?: AutoScalingGroupConfiguration | undefined;
857
857
  /**
858
858
  * <p>
859
859
  * Describes the GPU accelerator settings for the recommended instance type of the Auto Scaling group.
860
860
  * </p>
861
861
  * @public
862
862
  */
863
- instanceGpuInfo?: GpuInfo;
863
+ instanceGpuInfo?: GpuInfo | undefined;
864
864
  /**
865
865
  * <p>An array of objects that describe the projected utilization metrics of the Auto Scaling group recommendation option.</p>
866
866
  * <note>
@@ -872,7 +872,7 @@ export interface AutoScalingGroupRecommendationOption {
872
872
  * </note>
873
873
  * @public
874
874
  */
875
- projectedUtilizationMetrics?: UtilizationMetric[];
875
+ projectedUtilizationMetrics?: UtilizationMetric[] | undefined;
876
876
  /**
877
877
  * <p>The performance risk of the Auto Scaling group configuration
878
878
  * recommendation.</p>
@@ -891,20 +891,20 @@ export interface AutoScalingGroupRecommendationOption {
891
891
  * your resource.</p>
892
892
  * @public
893
893
  */
894
- performanceRisk?: number;
894
+ performanceRisk?: number | undefined;
895
895
  /**
896
896
  * <p>The rank of the Auto Scaling group recommendation option.</p>
897
897
  * <p>The top recommendation option is ranked as <code>1</code>.</p>
898
898
  * @public
899
899
  */
900
- rank?: number;
900
+ rank?: number | undefined;
901
901
  /**
902
902
  * <p>An object that describes the savings opportunity for the Auto Scaling group
903
903
  * recommendation option. Savings opportunity includes the estimated monthly savings amount
904
904
  * and percentage.</p>
905
905
  * @public
906
906
  */
907
- savingsOpportunity?: SavingsOpportunity;
907
+ savingsOpportunity?: SavingsOpportunity | undefined;
908
908
  /**
909
909
  * <p>
910
910
  * An object that describes the savings opportunity for the Auto Scaling group recommendation option that includes Savings Plans and Reserved Instances discounts.
@@ -912,7 +912,7 @@ export interface AutoScalingGroupRecommendationOption {
912
912
  * </p>
913
913
  * @public
914
914
  */
915
- savingsOpportunityAfterDiscounts?: AutoScalingGroupSavingsOpportunityAfterDiscounts;
915
+ savingsOpportunityAfterDiscounts?: AutoScalingGroupSavingsOpportunityAfterDiscounts | undefined;
916
916
  /**
917
917
  * <p>The level of effort required to migrate from the current instance type to the
918
918
  * recommended instance type.</p>
@@ -924,7 +924,7 @@ export interface AutoScalingGroupRecommendationOption {
924
924
  * same CPU architecture.</p>
925
925
  * @public
926
926
  */
927
- migrationEffort?: MigrationEffort;
927
+ migrationEffort?: MigrationEffort | undefined;
928
928
  }
929
929
  /**
930
930
  * <p>Describes an Auto Scaling group recommendation.</p>
@@ -935,17 +935,17 @@ export interface AutoScalingGroupRecommendation {
935
935
  * <p>The Amazon Web Services account ID of the Auto Scaling group.</p>
936
936
  * @public
937
937
  */
938
- accountId?: string;
938
+ accountId?: string | undefined;
939
939
  /**
940
940
  * <p>The Amazon Resource Name (ARN) of the Auto Scaling group.</p>
941
941
  * @public
942
942
  */
943
- autoScalingGroupArn?: string;
943
+ autoScalingGroupArn?: string | undefined;
944
944
  /**
945
945
  * <p>The name of the Auto Scaling group.</p>
946
946
  * @public
947
947
  */
948
- autoScalingGroupName?: string;
948
+ autoScalingGroupName?: string | undefined;
949
949
  /**
950
950
  * <p>The finding classification of the Auto Scaling group.</p>
951
951
  * <p>Findings for Auto Scaling groups include:</p>
@@ -970,55 +970,55 @@ export interface AutoScalingGroupRecommendation {
970
970
  * </ul>
971
971
  * @public
972
972
  */
973
- finding?: Finding;
973
+ finding?: Finding | undefined;
974
974
  /**
975
975
  * <p>An array of objects that describe the utilization metrics of the Auto Scaling
976
976
  * group.</p>
977
977
  * @public
978
978
  */
979
- utilizationMetrics?: UtilizationMetric[];
979
+ utilizationMetrics?: UtilizationMetric[] | undefined;
980
980
  /**
981
981
  * <p>The number of days for which utilization metrics were analyzed for the Auto Scaling group.</p>
982
982
  * @public
983
983
  */
984
- lookBackPeriodInDays?: number;
984
+ lookBackPeriodInDays?: number | undefined;
985
985
  /**
986
986
  * <p>An array of objects that describe the current configuration of the Auto Scaling
987
987
  * group.</p>
988
988
  * @public
989
989
  */
990
- currentConfiguration?: AutoScalingGroupConfiguration;
990
+ currentConfiguration?: AutoScalingGroupConfiguration | undefined;
991
991
  /**
992
992
  * <p>
993
993
  * Describes the GPU accelerator settings for the current instance type of the Auto Scaling group.
994
994
  * </p>
995
995
  * @public
996
996
  */
997
- currentInstanceGpuInfo?: GpuInfo;
997
+ currentInstanceGpuInfo?: GpuInfo | undefined;
998
998
  /**
999
999
  * <p>An array of objects that describe the recommendation options for the Auto Scaling
1000
1000
  * group.</p>
1001
1001
  * @public
1002
1002
  */
1003
- recommendationOptions?: AutoScalingGroupRecommendationOption[];
1003
+ recommendationOptions?: AutoScalingGroupRecommendationOption[] | undefined;
1004
1004
  /**
1005
1005
  * <p>The timestamp of when the Auto Scaling group recommendation was last
1006
1006
  * generated.</p>
1007
1007
  * @public
1008
1008
  */
1009
- lastRefreshTimestamp?: Date;
1009
+ lastRefreshTimestamp?: Date | undefined;
1010
1010
  /**
1011
1011
  * <p>The risk of the current Auto Scaling group not meeting the performance needs of
1012
1012
  * its workloads. The higher the risk, the more likely the current Auto Scaling group
1013
1013
  * configuration has insufficient capacity and cannot meet workload requirements.</p>
1014
1014
  * @public
1015
1015
  */
1016
- currentPerformanceRisk?: CurrentPerformanceRisk;
1016
+ currentPerformanceRisk?: CurrentPerformanceRisk | undefined;
1017
1017
  /**
1018
1018
  * <p>An object that describes the effective recommendation preferences for the Auto Scaling group.</p>
1019
1019
  * @public
1020
1020
  */
1021
- effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
1021
+ effectiveRecommendationPreferences?: EffectiveRecommendationPreferences | undefined;
1022
1022
  /**
1023
1023
  * <p>The applications that might be running on the instances in the Auto Scaling group
1024
1024
  * as inferred by Compute Optimizer.</p>
@@ -1073,7 +1073,7 @@ export interface AutoScalingGroupRecommendation {
1073
1073
  * </ul>
1074
1074
  * @public
1075
1075
  */
1076
- inferredWorkloadTypes?: InferredWorkloadType[];
1076
+ inferredWorkloadTypes?: InferredWorkloadType[] | undefined;
1077
1077
  }
1078
1078
  /**
1079
1079
  * @public
@@ -1166,7 +1166,7 @@ export interface Scope {
1166
1166
  * </ul>
1167
1167
  * @public
1168
1168
  */
1169
- name?: ScopeName;
1169
+ name?: ScopeName | undefined;
1170
1170
  /**
1171
1171
  * <p>The value of the scope.</p>
1172
1172
  * <p>If you specified the <code>name</code> of the scope as:</p>
@@ -1189,7 +1189,7 @@ export interface Scope {
1189
1189
  * <p>Only EC2 instance and Auto Scaling group ARNs are currently supported.</p>
1190
1190
  * @public
1191
1191
  */
1192
- value?: string;
1192
+ value?: string | undefined;
1193
1193
  }
1194
1194
  /**
1195
1195
  * @public
@@ -1212,7 +1212,7 @@ export interface DeleteRecommendationPreferencesRequest {
1212
1212
  * Guide</i>.</p>
1213
1213
  * @public
1214
1214
  */
1215
- scope?: Scope;
1215
+ scope?: Scope | undefined;
1216
1216
  /**
1217
1217
  * <p>The name of the recommendation preference to delete.</p>
1218
1218
  * @public
@@ -1339,7 +1339,7 @@ export interface JobFilter {
1339
1339
  * <code>Complete</code>).</p>
1340
1340
  * @public
1341
1341
  */
1342
- name?: JobFilterName;
1342
+ name?: JobFilterName | undefined;
1343
1343
  /**
1344
1344
  * <p>The value of the filter.</p>
1345
1345
  * <p>The valid values for this parameter are as follows, depending on what you specify for
@@ -1359,7 +1359,7 @@ export interface JobFilter {
1359
1359
  * </ul>
1360
1360
  * @public
1361
1361
  */
1362
- values?: string[];
1362
+ values?: string[] | undefined;
1363
1363
  }
1364
1364
  /**
1365
1365
  * @public
@@ -1372,25 +1372,25 @@ export interface DescribeRecommendationExportJobsRequest {
1372
1372
  * omitted.</p>
1373
1373
  * @public
1374
1374
  */
1375
- jobIds?: string[];
1375
+ jobIds?: string[] | undefined;
1376
1376
  /**
1377
1377
  * <p>An array of objects to specify a filter that returns a more specific list of export
1378
1378
  * jobs.</p>
1379
1379
  * @public
1380
1380
  */
1381
- filters?: JobFilter[];
1381
+ filters?: JobFilter[] | undefined;
1382
1382
  /**
1383
1383
  * <p>The token to advance to the next page of export jobs.</p>
1384
1384
  * @public
1385
1385
  */
1386
- nextToken?: string;
1386
+ nextToken?: string | undefined;
1387
1387
  /**
1388
1388
  * <p>The maximum number of export jobs to return with a single request.</p>
1389
1389
  * <p>To retrieve the remaining results, make another request with the returned
1390
1390
  * <code>nextToken</code> value.</p>
1391
1391
  * @public
1392
1392
  */
1393
- maxResults?: number;
1393
+ maxResults?: number | undefined;
1394
1394
  }
1395
1395
  /**
1396
1396
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
@@ -1403,19 +1403,19 @@ export interface S3Destination {
1403
1403
  * file.</p>
1404
1404
  * @public
1405
1405
  */
1406
- bucket?: string;
1406
+ bucket?: string | undefined;
1407
1407
  /**
1408
1408
  * <p>The Amazon S3 bucket key of an export file.</p>
1409
1409
  * <p>The key uniquely identifies the object, or export file, in the S3 bucket.</p>
1410
1410
  * @public
1411
1411
  */
1412
- key?: string;
1412
+ key?: string | undefined;
1413
1413
  /**
1414
1414
  * <p>The Amazon S3 bucket key of a metadata file.</p>
1415
1415
  * <p>The key uniquely identifies the object, or metadata file, in the S3 bucket.</p>
1416
1416
  * @public
1417
1417
  */
1418
- metadataKey?: string;
1418
+ metadataKey?: string | undefined;
1419
1419
  }
1420
1420
  /**
1421
1421
  * <p>Describes the destination of the recommendations export and metadata files.</p>
@@ -1428,7 +1428,7 @@ export interface ExportDestination {
1428
1428
  * metadata file.</p>
1429
1429
  * @public
1430
1430
  */
1431
- s3?: S3Destination;
1431
+ s3?: S3Destination | undefined;
1432
1432
  }
1433
1433
  /**
1434
1434
  * @public
@@ -1457,37 +1457,37 @@ export interface RecommendationExportJob {
1457
1457
  * <p>The identification number of the export job.</p>
1458
1458
  * @public
1459
1459
  */
1460
- jobId?: string;
1460
+ jobId?: string | undefined;
1461
1461
  /**
1462
1462
  * <p>An object that describes the destination of the export file.</p>
1463
1463
  * @public
1464
1464
  */
1465
- destination?: ExportDestination;
1465
+ destination?: ExportDestination | undefined;
1466
1466
  /**
1467
1467
  * <p>The resource type of the exported recommendations.</p>
1468
1468
  * @public
1469
1469
  */
1470
- resourceType?: ResourceType;
1470
+ resourceType?: ResourceType | undefined;
1471
1471
  /**
1472
1472
  * <p>The status of the export job.</p>
1473
1473
  * @public
1474
1474
  */
1475
- status?: JobStatus;
1475
+ status?: JobStatus | undefined;
1476
1476
  /**
1477
1477
  * <p>The timestamp of when the export job was created.</p>
1478
1478
  * @public
1479
1479
  */
1480
- creationTimestamp?: Date;
1480
+ creationTimestamp?: Date | undefined;
1481
1481
  /**
1482
1482
  * <p>The timestamp of when the export job was last updated.</p>
1483
1483
  * @public
1484
1484
  */
1485
- lastUpdatedTimestamp?: Date;
1485
+ lastUpdatedTimestamp?: Date | undefined;
1486
1486
  /**
1487
1487
  * <p>The reason for an export job failure.</p>
1488
1488
  * @public
1489
1489
  */
1490
- failureReason?: string;
1490
+ failureReason?: string | undefined;
1491
1491
  }
1492
1492
  /**
1493
1493
  * @public
@@ -1497,13 +1497,13 @@ export interface DescribeRecommendationExportJobsResponse {
1497
1497
  * <p>An array of objects that describe recommendation export jobs.</p>
1498
1498
  * @public
1499
1499
  */
1500
- recommendationExportJobs?: RecommendationExportJob[];
1500
+ recommendationExportJobs?: RecommendationExportJob[] | undefined;
1501
1501
  /**
1502
1502
  * <p>The token to use to advance to the next page of export jobs.</p>
1503
1503
  * <p>This value is null when there are no more pages of export jobs to return.</p>
1504
1504
  * @public
1505
1505
  */
1506
- nextToken?: string;
1506
+ nextToken?: string | undefined;
1507
1507
  }
1508
1508
  /**
1509
1509
  * @public
@@ -1638,7 +1638,7 @@ export interface Filter {
1638
1638
  * keys assigned.</p>
1639
1639
  * @public
1640
1640
  */
1641
- name?: FilterName;
1641
+ name?: FilterName | undefined;
1642
1642
  /**
1643
1643
  * <p>The value of the filter.</p>
1644
1644
  * <p>The valid values for this parameter are as follows, depending on what you specify for
@@ -1808,7 +1808,7 @@ export interface Filter {
1808
1808
  * </ul>
1809
1809
  * @public
1810
1810
  */
1811
- values?: string[];
1811
+ values?: string[] | undefined;
1812
1812
  }
1813
1813
  /**
1814
1814
  * <p>Describes the recommendation preferences to return in the response of a <a>GetAutoScalingGroupRecommendations</a>, <a>GetEC2InstanceRecommendations</a>, <a>GetEC2RecommendationProjectedMetrics</a>, <a>GetRDSDatabaseRecommendations</a>, and <a>GetRDSDatabaseRecommendationProjectedMetrics</a> request.</p>
@@ -1834,7 +1834,7 @@ export interface RecommendationPreferences {
1834
1834
  * </ul>
1835
1835
  * @public
1836
1836
  */
1837
- cpuVendorArchitectures?: CpuVendorArchitecture[];
1837
+ cpuVendorArchitectures?: CpuVendorArchitecture[] | undefined;
1838
1838
  }
1839
1839
  /**
1840
1840
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
@@ -1854,12 +1854,12 @@ export interface S3DestinationConfig {
1854
1854
  * job.</p>
1855
1855
  * @public
1856
1856
  */
1857
- bucket?: string;
1857
+ bucket?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>The Amazon S3 bucket prefix for an export job.</p>
1860
1860
  * @public
1861
1861
  */
1862
- keyPrefix?: string;
1862
+ keyPrefix?: string | undefined;
1863
1863
  }
1864
1864
  /**
1865
1865
  * @public
@@ -1877,19 +1877,19 @@ export interface ExportAutoScalingGroupRecommendationsRequest {
1877
1877
  * <p>You can specify multiple account IDs per request.</p>
1878
1878
  * @public
1879
1879
  */
1880
- accountIds?: string[];
1880
+ accountIds?: string[] | undefined;
1881
1881
  /**
1882
1882
  * <p>An array of objects to specify a filter that exports a more specific set of Auto Scaling group recommendations.</p>
1883
1883
  * @public
1884
1884
  */
1885
- filters?: Filter[];
1885
+ filters?: Filter[] | undefined;
1886
1886
  /**
1887
1887
  * <p>The recommendations data to include in the export file. For more information about the
1888
1888
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
1889
1889
  * Guide</i>.</p>
1890
1890
  * @public
1891
1891
  */
1892
- fieldsToExport?: ExportableAutoScalingGroupField[];
1892
+ fieldsToExport?: ExportableAutoScalingGroupField[] | undefined;
1893
1893
  /**
1894
1894
  * <p>An object to specify the destination Amazon Simple Storage Service (Amazon S3) bucket
1895
1895
  * name and key prefix for the export job.</p>
@@ -1908,7 +1908,7 @@ export interface ExportAutoScalingGroupRecommendationsRequest {
1908
1908
  * <p>The only export file format currently supported is <code>Csv</code>.</p>
1909
1909
  * @public
1910
1910
  */
1911
- fileFormat?: FileFormat;
1911
+ fileFormat?: FileFormat | undefined;
1912
1912
  /**
1913
1913
  * <p>Indicates whether to include recommendations for resources in all member accounts of
1914
1914
  * the organization if your account is the management account of an organization.</p>
@@ -1924,13 +1924,13 @@ export interface ExportAutoScalingGroupRecommendationsRequest {
1924
1924
  * or the account IDs parameter, is omitted.</p>
1925
1925
  * @public
1926
1926
  */
1927
- includeMemberAccounts?: boolean;
1927
+ includeMemberAccounts?: boolean | undefined;
1928
1928
  /**
1929
1929
  * <p>An object to specify the preferences for the Auto Scaling group recommendations
1930
1930
  * to export.</p>
1931
1931
  * @public
1932
1932
  */
1933
- recommendationPreferences?: RecommendationPreferences;
1933
+ recommendationPreferences?: RecommendationPreferences | undefined;
1934
1934
  }
1935
1935
  /**
1936
1936
  * @public
@@ -1942,13 +1942,13 @@ export interface ExportAutoScalingGroupRecommendationsResponse {
1942
1942
  * ID to view the status of an export job.</p>
1943
1943
  * @public
1944
1944
  */
1945
- jobId?: string;
1945
+ jobId?: string | undefined;
1946
1946
  /**
1947
1947
  * <p>An object that describes the destination Amazon S3 bucket of a recommendations
1948
1948
  * export file.</p>
1949
1949
  * @public
1950
1950
  */
1951
- s3Destination?: S3Destination;
1951
+ s3Destination?: S3Destination | undefined;
1952
1952
  }
1953
1953
  /**
1954
1954
  * <p>The request exceeds a limit of the service.</p>
@@ -2045,13 +2045,13 @@ export interface EBSFilter {
2045
2045
  * keys assigned.</p>
2046
2046
  * @public
2047
2047
  */
2048
- name?: EBSFilterName;
2048
+ name?: EBSFilterName | undefined;
2049
2049
  /**
2050
2050
  * <p>The value of the filter.</p>
2051
2051
  * <p>The valid values are <code>Optimized</code>, or <code>NotOptimized</code>.</p>
2052
2052
  * @public
2053
2053
  */
2054
- values?: string[];
2054
+ values?: string[] | undefined;
2055
2055
  }
2056
2056
  /**
2057
2057
  * @public
@@ -2069,19 +2069,19 @@ export interface ExportEBSVolumeRecommendationsRequest {
2069
2069
  * <p>You can specify multiple account IDs per request.</p>
2070
2070
  * @public
2071
2071
  */
2072
- accountIds?: string[];
2072
+ accountIds?: string[] | undefined;
2073
2073
  /**
2074
2074
  * <p>An array of objects to specify a filter that exports a more specific set of Amazon EBS volume recommendations.</p>
2075
2075
  * @public
2076
2076
  */
2077
- filters?: EBSFilter[];
2077
+ filters?: EBSFilter[] | undefined;
2078
2078
  /**
2079
2079
  * <p>The recommendations data to include in the export file. For more information about the
2080
2080
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
2081
2081
  * Guide</i>.</p>
2082
2082
  * @public
2083
2083
  */
2084
- fieldsToExport?: ExportableVolumeField[];
2084
+ fieldsToExport?: ExportableVolumeField[] | undefined;
2085
2085
  /**
2086
2086
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2087
2087
  * key prefix for a recommendations export job.</p>
@@ -2100,7 +2100,7 @@ export interface ExportEBSVolumeRecommendationsRequest {
2100
2100
  * <p>The only export file format currently supported is <code>Csv</code>.</p>
2101
2101
  * @public
2102
2102
  */
2103
- fileFormat?: FileFormat;
2103
+ fileFormat?: FileFormat | undefined;
2104
2104
  /**
2105
2105
  * <p>Indicates whether to include recommendations for resources in all member accounts of
2106
2106
  * the organization if your account is the management account of an organization.</p>
@@ -2116,7 +2116,7 @@ export interface ExportEBSVolumeRecommendationsRequest {
2116
2116
  * or the account IDs parameter, is omitted.</p>
2117
2117
  * @public
2118
2118
  */
2119
- includeMemberAccounts?: boolean;
2119
+ includeMemberAccounts?: boolean | undefined;
2120
2120
  }
2121
2121
  /**
2122
2122
  * @public
@@ -2128,13 +2128,13 @@ export interface ExportEBSVolumeRecommendationsResponse {
2128
2128
  * ID to view the status of an export job.</p>
2129
2129
  * @public
2130
2130
  */
2131
- jobId?: string;
2131
+ jobId?: string | undefined;
2132
2132
  /**
2133
2133
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2134
2134
  * object keys of a recommendations export file, and its associated metadata file.</p>
2135
2135
  * @public
2136
2136
  */
2137
- s3Destination?: S3Destination;
2137
+ s3Destination?: S3Destination | undefined;
2138
2138
  }
2139
2139
  /**
2140
2140
  * @public
@@ -2233,20 +2233,20 @@ export interface ExportEC2InstanceRecommendationsRequest {
2233
2233
  * <p>You can specify multiple account IDs per request.</p>
2234
2234
  * @public
2235
2235
  */
2236
- accountIds?: string[];
2236
+ accountIds?: string[] | undefined;
2237
2237
  /**
2238
2238
  * <p>An array of objects to specify a filter that exports a more specific set of instance
2239
2239
  * recommendations.</p>
2240
2240
  * @public
2241
2241
  */
2242
- filters?: Filter[];
2242
+ filters?: Filter[] | undefined;
2243
2243
  /**
2244
2244
  * <p>The recommendations data to include in the export file. For more information about the
2245
2245
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
2246
2246
  * Guide</i>.</p>
2247
2247
  * @public
2248
2248
  */
2249
- fieldsToExport?: ExportableInstanceField[];
2249
+ fieldsToExport?: ExportableInstanceField[] | undefined;
2250
2250
  /**
2251
2251
  * <p>An object to specify the destination Amazon Simple Storage Service (Amazon S3) bucket
2252
2252
  * name and key prefix for the export job.</p>
@@ -2266,7 +2266,7 @@ export interface ExportEC2InstanceRecommendationsRequest {
2266
2266
  * <p>The only export file format currently supported is <code>Csv</code>.</p>
2267
2267
  * @public
2268
2268
  */
2269
- fileFormat?: FileFormat;
2269
+ fileFormat?: FileFormat | undefined;
2270
2270
  /**
2271
2271
  * <p>Indicates whether to include recommendations for resources in all member accounts of
2272
2272
  * the organization if your account is the management account of an organization.</p>
@@ -2280,13 +2280,13 @@ export interface ExportEC2InstanceRecommendationsRequest {
2280
2280
  * or the account IDs parameter, is omitted.</p>
2281
2281
  * @public
2282
2282
  */
2283
- includeMemberAccounts?: boolean;
2283
+ includeMemberAccounts?: boolean | undefined;
2284
2284
  /**
2285
2285
  * <p>An object to specify the preferences for the Amazon EC2 instance
2286
2286
  * recommendations to export.</p>
2287
2287
  * @public
2288
2288
  */
2289
- recommendationPreferences?: RecommendationPreferences;
2289
+ recommendationPreferences?: RecommendationPreferences | undefined;
2290
2290
  }
2291
2291
  /**
2292
2292
  * @public
@@ -2298,13 +2298,13 @@ export interface ExportEC2InstanceRecommendationsResponse {
2298
2298
  * ID to view the status of an export job.</p>
2299
2299
  * @public
2300
2300
  */
2301
- jobId?: string;
2301
+ jobId?: string | undefined;
2302
2302
  /**
2303
2303
  * <p>An object that describes the destination Amazon S3 bucket of a recommendations
2304
2304
  * export file.</p>
2305
2305
  * @public
2306
2306
  */
2307
- s3Destination?: S3Destination;
2307
+ s3Destination?: S3Destination | undefined;
2308
2308
  }
2309
2309
  /**
2310
2310
  * @public
@@ -2388,7 +2388,7 @@ export interface ECSServiceRecommendationFilter {
2388
2388
  * keys assigned.</p>
2389
2389
  * @public
2390
2390
  */
2391
- name?: ECSServiceRecommendationFilterName;
2391
+ name?: ECSServiceRecommendationFilterName | undefined;
2392
2392
  /**
2393
2393
  * <p>
2394
2394
  * The value of the filter.
@@ -2407,7 +2407,7 @@ export interface ECSServiceRecommendationFilter {
2407
2407
  * </ul>
2408
2408
  * @public
2409
2409
  */
2410
- values?: string[];
2410
+ values?: string[] | undefined;
2411
2411
  }
2412
2412
  /**
2413
2413
  * @public
@@ -2427,7 +2427,7 @@ export interface ExportECSServiceRecommendationsRequest {
2427
2427
  * <p>You can specify multiple account IDs per request.</p>
2428
2428
  * @public
2429
2429
  */
2430
- accountIds?: string[];
2430
+ accountIds?: string[] | undefined;
2431
2431
  /**
2432
2432
  * <p>
2433
2433
  * An array of objects to specify a filter that exports a more specific set
@@ -2435,14 +2435,14 @@ export interface ExportECSServiceRecommendationsRequest {
2435
2435
  * </p>
2436
2436
  * @public
2437
2437
  */
2438
- filters?: ECSServiceRecommendationFilter[];
2438
+ filters?: ECSServiceRecommendationFilter[] | undefined;
2439
2439
  /**
2440
2440
  * <p>The recommendations data to include in the export file. For more information about the
2441
2441
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
2442
2442
  * Guide</i>.</p>
2443
2443
  * @public
2444
2444
  */
2445
- fieldsToExport?: ExportableECSServiceField[];
2445
+ fieldsToExport?: ExportableECSServiceField[] | undefined;
2446
2446
  /**
2447
2447
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2448
2448
  * key prefix for a recommendations export job.</p>
@@ -2463,7 +2463,7 @@ export interface ExportECSServiceRecommendationsRequest {
2463
2463
  * <p>The CSV file is the only export file format currently supported.</p>
2464
2464
  * @public
2465
2465
  */
2466
- fileFormat?: FileFormat;
2466
+ fileFormat?: FileFormat | undefined;
2467
2467
  /**
2468
2468
  * <p>If your account is the management account or the delegated administrator of an organization,
2469
2469
  * this parameter indicates whether to include recommendations for resources in all member accounts of
@@ -2478,7 +2478,7 @@ export interface ExportECSServiceRecommendationsRequest {
2478
2478
  * member accounts aren't included in the export.</p>
2479
2479
  * @public
2480
2480
  */
2481
- includeMemberAccounts?: boolean;
2481
+ includeMemberAccounts?: boolean | undefined;
2482
2482
  }
2483
2483
  /**
2484
2484
  * @public
@@ -2493,13 +2493,13 @@ export interface ExportECSServiceRecommendationsResponse {
2493
2493
  * </p>
2494
2494
  * @public
2495
2495
  */
2496
- jobId?: string;
2496
+ jobId?: string | undefined;
2497
2497
  /**
2498
2498
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2499
2499
  * object keys of a recommendations export file, and its associated metadata file.</p>
2500
2500
  * @public
2501
2501
  */
2502
- s3Destination?: S3Destination;
2502
+ s3Destination?: S3Destination | undefined;
2503
2503
  }
2504
2504
  /**
2505
2505
  * @public
@@ -2583,7 +2583,7 @@ export interface LambdaFunctionRecommendationFilter {
2583
2583
  * keys assigned.</p>
2584
2584
  * @public
2585
2585
  */
2586
- name?: LambdaFunctionRecommendationFilterName;
2586
+ name?: LambdaFunctionRecommendationFilterName | undefined;
2587
2587
  /**
2588
2588
  * <p>The value of the filter.</p>
2589
2589
  * <p>The valid values for this parameter are as follows, depending on what you specify for
@@ -2603,7 +2603,7 @@ export interface LambdaFunctionRecommendationFilter {
2603
2603
  * </ul>
2604
2604
  * @public
2605
2605
  */
2606
- values?: string[];
2606
+ values?: string[] | undefined;
2607
2607
  }
2608
2608
  /**
2609
2609
  * @public
@@ -2621,19 +2621,19 @@ export interface ExportLambdaFunctionRecommendationsRequest {
2621
2621
  * <p>You can specify multiple account IDs per request.</p>
2622
2622
  * @public
2623
2623
  */
2624
- accountIds?: string[];
2624
+ accountIds?: string[] | undefined;
2625
2625
  /**
2626
2626
  * <p>An array of objects to specify a filter that exports a more specific set of Lambda function recommendations.</p>
2627
2627
  * @public
2628
2628
  */
2629
- filters?: LambdaFunctionRecommendationFilter[];
2629
+ filters?: LambdaFunctionRecommendationFilter[] | undefined;
2630
2630
  /**
2631
2631
  * <p>The recommendations data to include in the export file. For more information about the
2632
2632
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
2633
2633
  * Guide</i>.</p>
2634
2634
  * @public
2635
2635
  */
2636
- fieldsToExport?: ExportableLambdaFunctionField[];
2636
+ fieldsToExport?: ExportableLambdaFunctionField[] | undefined;
2637
2637
  /**
2638
2638
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2639
2639
  * key prefix for a recommendations export job.</p>
@@ -2652,7 +2652,7 @@ export interface ExportLambdaFunctionRecommendationsRequest {
2652
2652
  * <p>The only export file format currently supported is <code>Csv</code>.</p>
2653
2653
  * @public
2654
2654
  */
2655
- fileFormat?: FileFormat;
2655
+ fileFormat?: FileFormat | undefined;
2656
2656
  /**
2657
2657
  * <p>Indicates whether to include recommendations for resources in all member accounts of
2658
2658
  * the organization if your account is the management account of an organization.</p>
@@ -2668,7 +2668,7 @@ export interface ExportLambdaFunctionRecommendationsRequest {
2668
2668
  * or the account IDs parameter, is omitted.</p>
2669
2669
  * @public
2670
2670
  */
2671
- includeMemberAccounts?: boolean;
2671
+ includeMemberAccounts?: boolean | undefined;
2672
2672
  }
2673
2673
  /**
2674
2674
  * @public
@@ -2680,13 +2680,13 @@ export interface ExportLambdaFunctionRecommendationsResponse {
2680
2680
  * ID to view the status of an export job.</p>
2681
2681
  * @public
2682
2682
  */
2683
- jobId?: string;
2683
+ jobId?: string | undefined;
2684
2684
  /**
2685
2685
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2686
2686
  * object keys of a recommendations export file, and its associated metadata file.</p>
2687
2687
  * @public
2688
2688
  */
2689
- s3Destination?: S3Destination;
2689
+ s3Destination?: S3Destination | undefined;
2690
2690
  }
2691
2691
  /**
2692
2692
  * @public
@@ -2760,7 +2760,7 @@ export interface LicenseRecommendationFilter {
2760
2760
  * keys assigned.</p>
2761
2761
  * @public
2762
2762
  */
2763
- name?: LicenseRecommendationFilterName;
2763
+ name?: LicenseRecommendationFilterName | undefined;
2764
2764
  /**
2765
2765
  * <p>The value of the filter.</p>
2766
2766
  * <p>The valid values for this parameter are as follows, depending on what you specify for
@@ -2780,7 +2780,7 @@ export interface LicenseRecommendationFilter {
2780
2780
  * </ul>
2781
2781
  * @public
2782
2782
  */
2783
- values?: string[];
2783
+ values?: string[] | undefined;
2784
2784
  }
2785
2785
  /**
2786
2786
  * @public
@@ -2798,21 +2798,21 @@ export interface ExportLicenseRecommendationsRequest {
2798
2798
  * <p>You can specify multiple account IDs per request.</p>
2799
2799
  * @public
2800
2800
  */
2801
- accountIds?: string[];
2801
+ accountIds?: string[] | undefined;
2802
2802
  /**
2803
2803
  * <p>
2804
2804
  * An array of objects to specify a filter that exports a more specific set of license recommendations.
2805
2805
  * </p>
2806
2806
  * @public
2807
2807
  */
2808
- filters?: LicenseRecommendationFilter[];
2808
+ filters?: LicenseRecommendationFilter[] | undefined;
2809
2809
  /**
2810
2810
  * <p>The recommendations data to include in the export file. For more information about the
2811
2811
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
2812
2812
  * Guide</i>.</p>
2813
2813
  * @public
2814
2814
  */
2815
- fieldsToExport?: ExportableLicenseField[];
2815
+ fieldsToExport?: ExportableLicenseField[] | undefined;
2816
2816
  /**
2817
2817
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2818
2818
  * key prefix for a recommendations export job.</p>
@@ -2831,7 +2831,7 @@ export interface ExportLicenseRecommendationsRequest {
2831
2831
  * <p>A CSV file is the only export format currently supported.</p>
2832
2832
  * @public
2833
2833
  */
2834
- fileFormat?: FileFormat;
2834
+ fileFormat?: FileFormat | undefined;
2835
2835
  /**
2836
2836
  * <p>Indicates whether to include recommendations for resources in all member accounts of
2837
2837
  * the organization if your account is the management account of an organization.</p>
@@ -2845,7 +2845,7 @@ export interface ExportLicenseRecommendationsRequest {
2845
2845
  * parameters are mutually exclusive.</p>
2846
2846
  * @public
2847
2847
  */
2848
- includeMemberAccounts?: boolean;
2848
+ includeMemberAccounts?: boolean | undefined;
2849
2849
  }
2850
2850
  /**
2851
2851
  * @public
@@ -2859,13 +2859,13 @@ export interface ExportLicenseRecommendationsResponse {
2859
2859
  * action and specify the job ID.</p>
2860
2860
  * @public
2861
2861
  */
2862
- jobId?: string;
2862
+ jobId?: string | undefined;
2863
2863
  /**
2864
2864
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
2865
2865
  * object keys of a recommendations export file, and its associated metadata file.</p>
2866
2866
  * @public
2867
2867
  */
2868
- s3Destination?: S3Destination;
2868
+ s3Destination?: S3Destination | undefined;
2869
2869
  }
2870
2870
  /**
2871
2871
  * @public
@@ -2980,14 +2980,14 @@ export interface RDSDBRecommendationFilter {
2980
2980
  * keys assigned.</p>
2981
2981
  * @public
2982
2982
  */
2983
- name?: RDSDBRecommendationFilterName;
2983
+ name?: RDSDBRecommendationFilterName | undefined;
2984
2984
  /**
2985
2985
  * <p>
2986
2986
  * The value of the filter.
2987
2987
  * </p>
2988
2988
  * @public
2989
2989
  */
2990
- values?: string[];
2990
+ values?: string[] | undefined;
2991
2991
  }
2992
2992
  /**
2993
2993
  * @public
@@ -3007,7 +3007,7 @@ export interface ExportRDSDatabaseRecommendationsRequest {
3007
3007
  * <p>You can specify multiple account IDs per request.</p>
3008
3008
  * @public
3009
3009
  */
3010
- accountIds?: string[];
3010
+ accountIds?: string[] | undefined;
3011
3011
  /**
3012
3012
  * <p>
3013
3013
  * An array of objects to specify a filter that exports a more specific set of
@@ -3015,14 +3015,14 @@ export interface ExportRDSDatabaseRecommendationsRequest {
3015
3015
  * </p>
3016
3016
  * @public
3017
3017
  */
3018
- filters?: RDSDBRecommendationFilter[];
3018
+ filters?: RDSDBRecommendationFilter[] | undefined;
3019
3019
  /**
3020
3020
  * <p>The recommendations data to include in the export file. For more information about the
3021
3021
  * fields that can be exported, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html#exported-files">Exported files</a> in the <i>Compute Optimizer User
3022
3022
  * Guide</i>.</p>
3023
3023
  * @public
3024
3024
  */
3025
- fieldsToExport?: ExportableRDSDBField[];
3025
+ fieldsToExport?: ExportableRDSDBField[] | undefined;
3026
3026
  /**
3027
3027
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
3028
3028
  * key prefix for a recommendations export job.</p>
@@ -3043,7 +3043,7 @@ export interface ExportRDSDatabaseRecommendationsRequest {
3043
3043
  * <p>The CSV file is the only export file format currently supported.</p>
3044
3044
  * @public
3045
3045
  */
3046
- fileFormat?: FileFormat;
3046
+ fileFormat?: FileFormat | undefined;
3047
3047
  /**
3048
3048
  * <p>If your account is the management account or the delegated administrator of an organization,
3049
3049
  * this parameter indicates whether to include recommendations for resources in all member accounts of
@@ -3058,12 +3058,12 @@ export interface ExportRDSDatabaseRecommendationsRequest {
3058
3058
  * member accounts aren't included in the export.</p>
3059
3059
  * @public
3060
3060
  */
3061
- includeMemberAccounts?: boolean;
3061
+ includeMemberAccounts?: boolean | undefined;
3062
3062
  /**
3063
3063
  * <p>Describes the recommendation preferences to return in the response of a <a>GetAutoScalingGroupRecommendations</a>, <a>GetEC2InstanceRecommendations</a>, <a>GetEC2RecommendationProjectedMetrics</a>, <a>GetRDSDatabaseRecommendations</a>, and <a>GetRDSDatabaseRecommendationProjectedMetrics</a> request.</p>
3064
3064
  * @public
3065
3065
  */
3066
- recommendationPreferences?: RecommendationPreferences;
3066
+ recommendationPreferences?: RecommendationPreferences | undefined;
3067
3067
  }
3068
3068
  /**
3069
3069
  * @public
@@ -3078,13 +3078,13 @@ export interface ExportRDSDatabaseRecommendationsResponse {
3078
3078
  * </p>
3079
3079
  * @public
3080
3080
  */
3081
- jobId?: string;
3081
+ jobId?: string | undefined;
3082
3082
  /**
3083
3083
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and
3084
3084
  * object keys of a recommendations export file, and its associated metadata file.</p>
3085
3085
  * @public
3086
3086
  */
3087
- s3Destination?: S3Destination;
3087
+ s3Destination?: S3Destination | undefined;
3088
3088
  }
3089
3089
  /**
3090
3090
  * @public
@@ -3099,19 +3099,19 @@ export interface GetAutoScalingGroupRecommendationsRequest {
3099
3099
  * <p>Only one account ID can be specified per request.</p>
3100
3100
  * @public
3101
3101
  */
3102
- accountIds?: string[];
3102
+ accountIds?: string[] | undefined;
3103
3103
  /**
3104
3104
  * <p>The Amazon Resource Name (ARN) of the Auto Scaling groups for which to return
3105
3105
  * recommendations.</p>
3106
3106
  * @public
3107
3107
  */
3108
- autoScalingGroupArns?: string[];
3108
+ autoScalingGroupArns?: string[] | undefined;
3109
3109
  /**
3110
3110
  * <p>The token to advance to the next page of Auto Scaling group
3111
3111
  * recommendations.</p>
3112
3112
  * @public
3113
3113
  */
3114
- nextToken?: string;
3114
+ nextToken?: string | undefined;
3115
3115
  /**
3116
3116
  * <p>The maximum number of Auto Scaling group recommendations to return with a single
3117
3117
  * request.</p>
@@ -3119,18 +3119,18 @@ export interface GetAutoScalingGroupRecommendationsRequest {
3119
3119
  * <code>nextToken</code> value.</p>
3120
3120
  * @public
3121
3121
  */
3122
- maxResults?: number;
3122
+ maxResults?: number | undefined;
3123
3123
  /**
3124
3124
  * <p>An array of objects to specify a filter that returns a more specific list of Auto Scaling group recommendations.</p>
3125
3125
  * @public
3126
3126
  */
3127
- filters?: Filter[];
3127
+ filters?: Filter[] | undefined;
3128
3128
  /**
3129
3129
  * <p>An object to specify the preferences for the Auto Scaling group recommendations
3130
3130
  * to return in the response.</p>
3131
3131
  * @public
3132
3132
  */
3133
- recommendationPreferences?: RecommendationPreferences;
3133
+ recommendationPreferences?: RecommendationPreferences | undefined;
3134
3134
  }
3135
3135
  /**
3136
3136
  * <p>Describes an error experienced when getting recommendations.</p>
@@ -3144,17 +3144,17 @@ export interface GetRecommendationError {
3144
3144
  * <p>The ID of the error.</p>
3145
3145
  * @public
3146
3146
  */
3147
- identifier?: string;
3147
+ identifier?: string | undefined;
3148
3148
  /**
3149
3149
  * <p>The error code.</p>
3150
3150
  * @public
3151
3151
  */
3152
- code?: string;
3152
+ code?: string | undefined;
3153
3153
  /**
3154
3154
  * <p>The message, or reason, for the error.</p>
3155
3155
  * @public
3156
3156
  */
3157
- message?: string;
3157
+ message?: string | undefined;
3158
3158
  }
3159
3159
  /**
3160
3160
  * @public
@@ -3167,19 +3167,19 @@ export interface GetAutoScalingGroupRecommendationsResponse {
3167
3167
  * recommendations to return.</p>
3168
3168
  * @public
3169
3169
  */
3170
- nextToken?: string;
3170
+ nextToken?: string | undefined;
3171
3171
  /**
3172
3172
  * <p>An array of objects that describe Auto Scaling group recommendations.</p>
3173
3173
  * @public
3174
3174
  */
3175
- autoScalingGroupRecommendations?: AutoScalingGroupRecommendation[];
3175
+ autoScalingGroupRecommendations?: AutoScalingGroupRecommendation[] | undefined;
3176
3176
  /**
3177
3177
  * <p>An array of objects that describe errors of the request.</p>
3178
3178
  * <p>For example, an error is returned if you request recommendations for an unsupported
3179
3179
  * Auto Scaling group.</p>
3180
3180
  * @public
3181
3181
  */
3182
- errors?: GetRecommendationError[];
3182
+ errors?: GetRecommendationError[] | undefined;
3183
3183
  }
3184
3184
  /**
3185
3185
  * @public
@@ -3190,25 +3190,25 @@ export interface GetEBSVolumeRecommendationsRequest {
3190
3190
  * recommendations.</p>
3191
3191
  * @public
3192
3192
  */
3193
- volumeArns?: string[];
3193
+ volumeArns?: string[] | undefined;
3194
3194
  /**
3195
3195
  * <p>The token to advance to the next page of volume recommendations.</p>
3196
3196
  * @public
3197
3197
  */
3198
- nextToken?: string;
3198
+ nextToken?: string | undefined;
3199
3199
  /**
3200
3200
  * <p>The maximum number of volume recommendations to return with a single request.</p>
3201
3201
  * <p>To retrieve the remaining results, make another request with the returned
3202
3202
  * <code>nextToken</code> value.</p>
3203
3203
  * @public
3204
3204
  */
3205
- maxResults?: number;
3205
+ maxResults?: number | undefined;
3206
3206
  /**
3207
3207
  * <p>An array of objects to specify a filter that returns a more specific list of volume
3208
3208
  * recommendations.</p>
3209
3209
  * @public
3210
3210
  */
3211
- filters?: EBSFilter[];
3211
+ filters?: EBSFilter[] | undefined;
3212
3212
  /**
3213
3213
  * <p>The ID of the Amazon Web Services account for which to return volume
3214
3214
  * recommendations.</p>
@@ -3217,7 +3217,7 @@ export interface GetEBSVolumeRecommendationsRequest {
3217
3217
  * <p>Only one account ID can be specified per request.</p>
3218
3218
  * @public
3219
3219
  */
3220
- accountIds?: string[];
3220
+ accountIds?: string[] | undefined;
3221
3221
  }
3222
3222
  /**
3223
3223
  * <p>Describes the configuration of an Amazon Elastic Block Store (Amazon EBS)
@@ -3233,39 +3233,39 @@ export interface VolumeConfiguration {
3233
3233
  * volumes.</p>
3234
3234
  * @public
3235
3235
  */
3236
- volumeType?: string;
3236
+ volumeType?: string | undefined;
3237
3237
  /**
3238
3238
  * <p>The size of the volume, in GiB.</p>
3239
3239
  * @public
3240
3240
  */
3241
- volumeSize?: number;
3241
+ volumeSize?: number | undefined;
3242
3242
  /**
3243
3243
  * <p>The baseline IOPS of the volume.</p>
3244
3244
  * @public
3245
3245
  */
3246
- volumeBaselineIOPS?: number;
3246
+ volumeBaselineIOPS?: number | undefined;
3247
3247
  /**
3248
3248
  * <p>The burst IOPS of the volume.</p>
3249
3249
  * @public
3250
3250
  */
3251
- volumeBurstIOPS?: number;
3251
+ volumeBurstIOPS?: number | undefined;
3252
3252
  /**
3253
3253
  * <p>The baseline throughput of the volume.</p>
3254
3254
  * @public
3255
3255
  */
3256
- volumeBaselineThroughput?: number;
3256
+ volumeBaselineThroughput?: number | undefined;
3257
3257
  /**
3258
3258
  * <p>The burst throughput of the volume.</p>
3259
3259
  * @public
3260
3260
  */
3261
- volumeBurstThroughput?: number;
3261
+ volumeBurstThroughput?: number | undefined;
3262
3262
  /**
3263
3263
  * <p>
3264
3264
  * Contains the image used to boot the instance during launch.
3265
3265
  * </p>
3266
3266
  * @public
3267
3267
  */
3268
- rootVolume?: boolean;
3268
+ rootVolume?: boolean | undefined;
3269
3269
  }
3270
3270
  /**
3271
3271
  * @public
@@ -3293,7 +3293,7 @@ export interface EBSSavingsEstimationMode {
3293
3293
  * </p>
3294
3294
  * @public
3295
3295
  */
3296
- source?: EBSSavingsEstimationModeSource;
3296
+ source?: EBSSavingsEstimationModeSource | undefined;
3297
3297
  }
3298
3298
  /**
3299
3299
  * <p>
@@ -3308,7 +3308,7 @@ export interface EBSEffectiveRecommendationPreferences {
3308
3308
  * </p>
3309
3309
  * @public
3310
3310
  */
3311
- savingsEstimationMode?: EBSSavingsEstimationMode;
3311
+ savingsEstimationMode?: EBSSavingsEstimationMode | undefined;
3312
3312
  }
3313
3313
  /**
3314
3314
  * @public
@@ -3336,7 +3336,7 @@ export interface Tag {
3336
3336
  * </p>
3337
3337
  * @public
3338
3338
  */
3339
- key?: string;
3339
+ key?: string | undefined;
3340
3340
  /**
3341
3341
  * <p>
3342
3342
  * One part of a key-value pair that make up a tag. A value acts as a descriptor
@@ -3344,7 +3344,7 @@ export interface Tag {
3344
3344
  * </p>
3345
3345
  * @public
3346
3346
  */
3347
- value?: string;
3347
+ value?: string | undefined;
3348
3348
  }
3349
3349
  /**
3350
3350
  * @public
@@ -3400,7 +3400,7 @@ export interface EBSUtilizationMetric {
3400
3400
  * </ul>
3401
3401
  * @public
3402
3402
  */
3403
- name?: EBSMetricName;
3403
+ name?: EBSMetricName | undefined;
3404
3404
  /**
3405
3405
  * <p>The statistic of the utilization metric.</p>
3406
3406
  * <p>The Compute Optimizer API, Command Line Interface (CLI), and SDKs
@@ -3416,12 +3416,12 @@ export interface EBSUtilizationMetric {
3416
3416
  * User Guide</a>.</p>
3417
3417
  * @public
3418
3418
  */
3419
- statistic?: MetricStatistic;
3419
+ statistic?: MetricStatistic | undefined;
3420
3420
  /**
3421
3421
  * <p>The value of the utilization metric.</p>
3422
3422
  * @public
3423
3423
  */
3424
- value?: number;
3424
+ value?: number | undefined;
3425
3425
  }
3426
3426
  /**
3427
3427
  * <p>
@@ -3437,14 +3437,14 @@ export interface EBSEstimatedMonthlySavings {
3437
3437
  * </p>
3438
3438
  * @public
3439
3439
  */
3440
- currency?: Currency;
3440
+ currency?: Currency | undefined;
3441
3441
  /**
3442
3442
  * <p>
3443
3443
  * The value of the estimated monthly savings.
3444
3444
  * </p>
3445
3445
  * @public
3446
3446
  */
3447
- value?: number;
3447
+ value?: number | undefined;
3448
3448
  }
3449
3449
  /**
3450
3450
  * <p>
@@ -3460,7 +3460,7 @@ export interface EBSSavingsOpportunityAfterDiscounts {
3460
3460
  * </p>
3461
3461
  * @public
3462
3462
  */
3463
- savingsOpportunityPercentage?: number;
3463
+ savingsOpportunityPercentage?: number | undefined;
3464
3464
  /**
3465
3465
  * <p>
3466
3466
  * The estimated monthly savings possible as a percentage of monthly cost by adopting Compute Optimizer’s Amazon EBS volume
@@ -3468,7 +3468,7 @@ export interface EBSSavingsOpportunityAfterDiscounts {
3468
3468
  * </p>
3469
3469
  * @public
3470
3470
  */
3471
- estimatedMonthlySavings?: EBSEstimatedMonthlySavings;
3471
+ estimatedMonthlySavings?: EBSEstimatedMonthlySavings | undefined;
3472
3472
  }
3473
3473
  /**
3474
3474
  * <p>Describes a recommendation option for an Amazon Elastic Block Store (Amazon EBS)
@@ -3480,7 +3480,7 @@ export interface VolumeRecommendationOption {
3480
3480
  * <p>An array of objects that describe a volume configuration.</p>
3481
3481
  * @public
3482
3482
  */
3483
- configuration?: VolumeConfiguration;
3483
+ configuration?: VolumeConfiguration | undefined;
3484
3484
  /**
3485
3485
  * <p>The performance risk of the volume recommendation option.</p>
3486
3486
  * <p>Performance risk is the likelihood of the recommended volume type meeting the
@@ -3492,20 +3492,20 @@ export interface VolumeRecommendationOption {
3492
3492
  * your resource.</p>
3493
3493
  * @public
3494
3494
  */
3495
- performanceRisk?: number;
3495
+ performanceRisk?: number | undefined;
3496
3496
  /**
3497
3497
  * <p>The rank of the volume recommendation option.</p>
3498
3498
  * <p>The top recommendation option is ranked as <code>1</code>.</p>
3499
3499
  * @public
3500
3500
  */
3501
- rank?: number;
3501
+ rank?: number | undefined;
3502
3502
  /**
3503
3503
  * <p>An object that describes the savings opportunity for the EBS volume recommendation
3504
3504
  * option. Savings opportunity includes the estimated monthly savings amount and
3505
3505
  * percentage.</p>
3506
3506
  * @public
3507
3507
  */
3508
- savingsOpportunity?: SavingsOpportunity;
3508
+ savingsOpportunity?: SavingsOpportunity | undefined;
3509
3509
  /**
3510
3510
  * <p>
3511
3511
  * An object that describes the savings opportunity for the Amazon EBS volume recommendation option with specific discounts. Savings
@@ -3513,7 +3513,7 @@ export interface VolumeRecommendationOption {
3513
3513
  * </p>
3514
3514
  * @public
3515
3515
  */
3516
- savingsOpportunityAfterDiscounts?: EBSSavingsOpportunityAfterDiscounts;
3516
+ savingsOpportunityAfterDiscounts?: EBSSavingsOpportunityAfterDiscounts | undefined;
3517
3517
  }
3518
3518
  /**
3519
3519
  * <p>Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.</p>
@@ -3524,17 +3524,17 @@ export interface VolumeRecommendation {
3524
3524
  * <p>The Amazon Resource Name (ARN) of the current volume.</p>
3525
3525
  * @public
3526
3526
  */
3527
- volumeArn?: string;
3527
+ volumeArn?: string | undefined;
3528
3528
  /**
3529
3529
  * <p>The Amazon Web Services account ID of the volume.</p>
3530
3530
  * @public
3531
3531
  */
3532
- accountId?: string;
3532
+ accountId?: string | undefined;
3533
3533
  /**
3534
3534
  * <p>An array of objects that describe the current configuration of the volume.</p>
3535
3535
  * @public
3536
3536
  */
3537
- currentConfiguration?: VolumeConfiguration;
3537
+ currentConfiguration?: VolumeConfiguration | undefined;
3538
3538
  /**
3539
3539
  * <p>The finding classification of the volume.</p>
3540
3540
  * <p>Findings for volumes include:</p>
@@ -3560,48 +3560,48 @@ export interface VolumeRecommendation {
3560
3560
  * </ul>
3561
3561
  * @public
3562
3562
  */
3563
- finding?: EBSFinding;
3563
+ finding?: EBSFinding | undefined;
3564
3564
  /**
3565
3565
  * <p>An array of objects that describe the utilization metrics of the volume.</p>
3566
3566
  * @public
3567
3567
  */
3568
- utilizationMetrics?: EBSUtilizationMetric[];
3568
+ utilizationMetrics?: EBSUtilizationMetric[] | undefined;
3569
3569
  /**
3570
3570
  * <p>The number of days for which utilization metrics were analyzed for the volume.</p>
3571
3571
  * @public
3572
3572
  */
3573
- lookBackPeriodInDays?: number;
3573
+ lookBackPeriodInDays?: number | undefined;
3574
3574
  /**
3575
3575
  * <p>An array of objects that describe the recommendation options for the volume.</p>
3576
3576
  * @public
3577
3577
  */
3578
- volumeRecommendationOptions?: VolumeRecommendationOption[];
3578
+ volumeRecommendationOptions?: VolumeRecommendationOption[] | undefined;
3579
3579
  /**
3580
3580
  * <p>The timestamp of when the volume recommendation was last generated.</p>
3581
3581
  * @public
3582
3582
  */
3583
- lastRefreshTimestamp?: Date;
3583
+ lastRefreshTimestamp?: Date | undefined;
3584
3584
  /**
3585
3585
  * <p>The risk of the current EBS volume not meeting the performance needs of its workloads.
3586
3586
  * The higher the risk, the more likely the current EBS volume doesn't have sufficient
3587
3587
  * capacity.</p>
3588
3588
  * @public
3589
3589
  */
3590
- currentPerformanceRisk?: CurrentPerformanceRisk;
3590
+ currentPerformanceRisk?: CurrentPerformanceRisk | undefined;
3591
3591
  /**
3592
3592
  * <p>
3593
3593
  * Describes the effective recommendation preferences for Amazon EBS volume.
3594
3594
  * </p>
3595
3595
  * @public
3596
3596
  */
3597
- effectiveRecommendationPreferences?: EBSEffectiveRecommendationPreferences;
3597
+ effectiveRecommendationPreferences?: EBSEffectiveRecommendationPreferences | undefined;
3598
3598
  /**
3599
3599
  * <p>
3600
3600
  * A list of tags assigned to your Amazon EBS volume recommendations.
3601
3601
  * </p>
3602
3602
  * @public
3603
3603
  */
3604
- tags?: Tag[];
3604
+ tags?: Tag[] | undefined;
3605
3605
  }
3606
3606
  /**
3607
3607
  * @public
@@ -3613,19 +3613,19 @@ export interface GetEBSVolumeRecommendationsResponse {
3613
3613
  * return.</p>
3614
3614
  * @public
3615
3615
  */
3616
- nextToken?: string;
3616
+ nextToken?: string | undefined;
3617
3617
  /**
3618
3618
  * <p>An array of objects that describe volume recommendations.</p>
3619
3619
  * @public
3620
3620
  */
3621
- volumeRecommendations?: VolumeRecommendation[];
3621
+ volumeRecommendations?: VolumeRecommendation[] | undefined;
3622
3622
  /**
3623
3623
  * <p>An array of objects that describe errors of the request.</p>
3624
3624
  * <p>For example, an error is returned if you request recommendations for an unsupported
3625
3625
  * volume.</p>
3626
3626
  * @public
3627
3627
  */
3628
- errors?: GetRecommendationError[];
3628
+ errors?: GetRecommendationError[] | undefined;
3629
3629
  }
3630
3630
  /**
3631
3631
  * @public
@@ -3636,25 +3636,25 @@ export interface GetEC2InstanceRecommendationsRequest {
3636
3636
  * recommendations.</p>
3637
3637
  * @public
3638
3638
  */
3639
- instanceArns?: string[];
3639
+ instanceArns?: string[] | undefined;
3640
3640
  /**
3641
3641
  * <p>The token to advance to the next page of instance recommendations.</p>
3642
3642
  * @public
3643
3643
  */
3644
- nextToken?: string;
3644
+ nextToken?: string | undefined;
3645
3645
  /**
3646
3646
  * <p>The maximum number of instance recommendations to return with a single request.</p>
3647
3647
  * <p>To retrieve the remaining results, make another request with the returned
3648
3648
  * <code>nextToken</code> value.</p>
3649
3649
  * @public
3650
3650
  */
3651
- maxResults?: number;
3651
+ maxResults?: number | undefined;
3652
3652
  /**
3653
3653
  * <p>An array of objects to specify a filter that returns a more specific list of instance
3654
3654
  * recommendations.</p>
3655
3655
  * @public
3656
3656
  */
3657
- filters?: Filter[];
3657
+ filters?: Filter[] | undefined;
3658
3658
  /**
3659
3659
  * <p>The ID of the Amazon Web Services account for which to return instance
3660
3660
  * recommendations.</p>
@@ -3663,13 +3663,13 @@ export interface GetEC2InstanceRecommendationsRequest {
3663
3663
  * <p>Only one account ID can be specified per request.</p>
3664
3664
  * @public
3665
3665
  */
3666
- accountIds?: string[];
3666
+ accountIds?: string[] | undefined;
3667
3667
  /**
3668
3668
  * <p>An object to specify the preferences for the Amazon EC2 instance
3669
3669
  * recommendations to return in the response.</p>
3670
3670
  * @public
3671
3671
  */
3672
- recommendationPreferences?: RecommendationPreferences;
3672
+ recommendationPreferences?: RecommendationPreferences | undefined;
3673
3673
  }
3674
3674
  /**
3675
3675
  * @public
@@ -3704,14 +3704,14 @@ export interface ExternalMetricStatus {
3704
3704
  * </p>
3705
3705
  * @public
3706
3706
  */
3707
- statusCode?: ExternalMetricStatusCode;
3707
+ statusCode?: ExternalMetricStatusCode | undefined;
3708
3708
  /**
3709
3709
  * <p>
3710
3710
  * The reason for Compute Optimizer's integration status with your external metric provider.
3711
3711
  * </p>
3712
3712
  * @public
3713
3713
  */
3714
- statusReason?: string;
3714
+ statusReason?: string | undefined;
3715
3715
  }
3716
3716
  /**
3717
3717
  * @public
@@ -3801,14 +3801,14 @@ export interface InstanceEstimatedMonthlySavings {
3801
3801
  * </p>
3802
3802
  * @public
3803
3803
  */
3804
- currency?: Currency;
3804
+ currency?: Currency | undefined;
3805
3805
  /**
3806
3806
  * <p>
3807
3807
  * The value of the estimated monthly savings.
3808
3808
  * </p>
3809
3809
  * @public
3810
3810
  */
3811
- value?: number;
3811
+ value?: number | undefined;
3812
3812
  }
3813
3813
  /**
3814
3814
  * <p>
@@ -3826,7 +3826,7 @@ export interface InstanceSavingsOpportunityAfterDiscounts {
3826
3826
  * </p>
3827
3827
  * @public
3828
3828
  */
3829
- savingsOpportunityPercentage?: number;
3829
+ savingsOpportunityPercentage?: number | undefined;
3830
3830
  /**
3831
3831
  * <p>
3832
3832
  * An object that describes the estimated monthly savings possible by adopting Compute Optimizer’s Amazon EC2 instance recommendations. This is
@@ -3834,7 +3834,7 @@ export interface InstanceSavingsOpportunityAfterDiscounts {
3834
3834
  * </p>
3835
3835
  * @public
3836
3836
  */
3837
- estimatedMonthlySavings?: InstanceEstimatedMonthlySavings;
3837
+ estimatedMonthlySavings?: InstanceEstimatedMonthlySavings | undefined;
3838
3838
  }
3839
3839
  /**
3840
3840
  * <p>Describes a recommendation option for an Amazon EC2 instance.</p>
@@ -3845,14 +3845,14 @@ export interface InstanceRecommendationOption {
3845
3845
  * <p>The instance type of the instance recommendation.</p>
3846
3846
  * @public
3847
3847
  */
3848
- instanceType?: string;
3848
+ instanceType?: string | undefined;
3849
3849
  /**
3850
3850
  * <p>
3851
3851
  * Describes the GPU accelerator settings for the recommended instance type.
3852
3852
  * </p>
3853
3853
  * @public
3854
3854
  */
3855
- instanceGpuInfo?: GpuInfo;
3855
+ instanceGpuInfo?: GpuInfo | undefined;
3856
3856
  /**
3857
3857
  * <p>An array of objects that describe the projected utilization metrics of the instance
3858
3858
  * recommendation option.</p>
@@ -3865,7 +3865,7 @@ export interface InstanceRecommendationOption {
3865
3865
  * </note>
3866
3866
  * @public
3867
3867
  */
3868
- projectedUtilizationMetrics?: UtilizationMetric[];
3868
+ projectedUtilizationMetrics?: UtilizationMetric[] | undefined;
3869
3869
  /**
3870
3870
  * <p>Describes the configuration differences between the current instance and the
3871
3871
  * recommended instance type. You should consider the configuration differences before
@@ -3965,7 +3965,7 @@ export interface InstanceRecommendationOption {
3965
3965
  * </ul>
3966
3966
  * @public
3967
3967
  */
3968
- platformDifferences?: PlatformDifference[];
3968
+ platformDifferences?: PlatformDifference[] | undefined;
3969
3969
  /**
3970
3970
  * <p>The performance risk of the instance recommendation option.</p>
3971
3971
  * <p>Performance risk indicates the likelihood of the recommended instance type not meeting
@@ -3983,20 +3983,20 @@ export interface InstanceRecommendationOption {
3983
3983
  * your resource.</p>
3984
3984
  * @public
3985
3985
  */
3986
- performanceRisk?: number;
3986
+ performanceRisk?: number | undefined;
3987
3987
  /**
3988
3988
  * <p>The rank of the instance recommendation option.</p>
3989
3989
  * <p>The top recommendation option is ranked as <code>1</code>.</p>
3990
3990
  * @public
3991
3991
  */
3992
- rank?: number;
3992
+ rank?: number | undefined;
3993
3993
  /**
3994
3994
  * <p>An object that describes the savings opportunity for the instance recommendation
3995
3995
  * option. Savings opportunity includes the estimated monthly savings amount and
3996
3996
  * percentage.</p>
3997
3997
  * @public
3998
3998
  */
3999
- savingsOpportunity?: SavingsOpportunity;
3999
+ savingsOpportunity?: SavingsOpportunity | undefined;
4000
4000
  /**
4001
4001
  * <p>
4002
4002
  * An object that describes the savings opportunity for the instance recommendation option that includes Savings Plans and Reserved Instances
@@ -4004,7 +4004,7 @@ export interface InstanceRecommendationOption {
4004
4004
  * </p>
4005
4005
  * @public
4006
4006
  */
4007
- savingsOpportunityAfterDiscounts?: InstanceSavingsOpportunityAfterDiscounts;
4007
+ savingsOpportunityAfterDiscounts?: InstanceSavingsOpportunityAfterDiscounts | undefined;
4008
4008
  /**
4009
4009
  * <p>The level of effort required to migrate from the current instance type to the
4010
4010
  * recommended instance type.</p>
@@ -4016,7 +4016,7 @@ export interface InstanceRecommendationOption {
4016
4016
  * same CPU architecture.</p>
4017
4017
  * @public
4018
4018
  */
4019
- migrationEffort?: MigrationEffort;
4019
+ migrationEffort?: MigrationEffort | undefined;
4020
4020
  }
4021
4021
  /**
4022
4022
  * @public
@@ -4046,12 +4046,12 @@ export interface RecommendationSource {
4046
4046
  * <p>The Amazon Resource Name (ARN) of the recommendation source.</p>
4047
4047
  * @public
4048
4048
  */
4049
- recommendationSourceArn?: string;
4049
+ recommendationSourceArn?: string | undefined;
4050
4050
  /**
4051
4051
  * <p>The resource type of the recommendation source.</p>
4052
4052
  * @public
4053
4053
  */
4054
- recommendationSourceType?: RecommendationSourceType;
4054
+ recommendationSourceType?: RecommendationSourceType | undefined;
4055
4055
  }
4056
4056
  /**
4057
4057
  * <p>Describes an Amazon EC2 instance recommendation.</p>
@@ -4062,22 +4062,22 @@ export interface InstanceRecommendation {
4062
4062
  * <p>The Amazon Resource Name (ARN) of the current instance.</p>
4063
4063
  * @public
4064
4064
  */
4065
- instanceArn?: string;
4065
+ instanceArn?: string | undefined;
4066
4066
  /**
4067
4067
  * <p>The Amazon Web Services account ID of the instance.</p>
4068
4068
  * @public
4069
4069
  */
4070
- accountId?: string;
4070
+ accountId?: string | undefined;
4071
4071
  /**
4072
4072
  * <p>The name of the current instance.</p>
4073
4073
  * @public
4074
4074
  */
4075
- instanceName?: string;
4075
+ instanceName?: string | undefined;
4076
4076
  /**
4077
4077
  * <p>The instance type of the current instance.</p>
4078
4078
  * @public
4079
4079
  */
4080
- currentInstanceType?: string;
4080
+ currentInstanceType?: string | undefined;
4081
4081
  /**
4082
4082
  * <p>The finding classification of the instance.</p>
4083
4083
  * <p>Findings for instances include:</p>
@@ -4119,7 +4119,7 @@ export interface InstanceRecommendation {
4119
4119
  * </note>
4120
4120
  * @public
4121
4121
  */
4122
- finding?: Finding;
4122
+ finding?: Finding | undefined;
4123
4123
  /**
4124
4124
  * <p>The reason for the finding classification of the instance.</p>
4125
4125
  * <p>Finding reason codes for instances include:</p>
@@ -4318,46 +4318,46 @@ export interface InstanceRecommendation {
4318
4318
  * </note>
4319
4319
  * @public
4320
4320
  */
4321
- findingReasonCodes?: InstanceRecommendationFindingReasonCode[];
4321
+ findingReasonCodes?: InstanceRecommendationFindingReasonCode[] | undefined;
4322
4322
  /**
4323
4323
  * <p>An array of objects that describe the utilization metrics of the instance.</p>
4324
4324
  * @public
4325
4325
  */
4326
- utilizationMetrics?: UtilizationMetric[];
4326
+ utilizationMetrics?: UtilizationMetric[] | undefined;
4327
4327
  /**
4328
4328
  * <p>The number of days for which utilization metrics were analyzed for the
4329
4329
  * instance.</p>
4330
4330
  * @public
4331
4331
  */
4332
- lookBackPeriodInDays?: number;
4332
+ lookBackPeriodInDays?: number | undefined;
4333
4333
  /**
4334
4334
  * <p>An array of objects that describe the recommendation options for the instance.</p>
4335
4335
  * @public
4336
4336
  */
4337
- recommendationOptions?: InstanceRecommendationOption[];
4337
+ recommendationOptions?: InstanceRecommendationOption[] | undefined;
4338
4338
  /**
4339
4339
  * <p>An array of objects that describe the source resource of the recommendation.</p>
4340
4340
  * @public
4341
4341
  */
4342
- recommendationSources?: RecommendationSource[];
4342
+ recommendationSources?: RecommendationSource[] | undefined;
4343
4343
  /**
4344
4344
  * <p>The timestamp of when the instance recommendation was last generated.</p>
4345
4345
  * @public
4346
4346
  */
4347
- lastRefreshTimestamp?: Date;
4347
+ lastRefreshTimestamp?: Date | undefined;
4348
4348
  /**
4349
4349
  * <p>The risk of the current instance not meeting the performance needs of its workloads.
4350
4350
  * The higher the risk, the more likely the current instance cannot meet the performance
4351
4351
  * requirements of its workload.</p>
4352
4352
  * @public
4353
4353
  */
4354
- currentPerformanceRisk?: CurrentPerformanceRisk;
4354
+ currentPerformanceRisk?: CurrentPerformanceRisk | undefined;
4355
4355
  /**
4356
4356
  * <p>An object that describes the effective recommendation preferences for the
4357
4357
  * instance.</p>
4358
4358
  * @public
4359
4359
  */
4360
- effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
4360
+ effectiveRecommendationPreferences?: EffectiveRecommendationPreferences | undefined;
4361
4361
  /**
4362
4362
  * <p>The applications that might be running on the instance as inferred by Compute Optimizer.</p>
4363
4363
  * <p>Compute Optimizer can infer if one of the following applications might be running on
@@ -4411,42 +4411,42 @@ export interface InstanceRecommendation {
4411
4411
  * </ul>
4412
4412
  * @public
4413
4413
  */
4414
- inferredWorkloadTypes?: InferredWorkloadType[];
4414
+ inferredWorkloadTypes?: InferredWorkloadType[] | undefined;
4415
4415
  /**
4416
4416
  * <p>
4417
4417
  * The state of the instance when the recommendation was generated.
4418
4418
  * </p>
4419
4419
  * @public
4420
4420
  */
4421
- instanceState?: InstanceState;
4421
+ instanceState?: InstanceState | undefined;
4422
4422
  /**
4423
4423
  * <p>
4424
4424
  * A list of tags assigned to your Amazon EC2 instance recommendations.
4425
4425
  * </p>
4426
4426
  * @public
4427
4427
  */
4428
- tags?: Tag[];
4428
+ tags?: Tag[] | undefined;
4429
4429
  /**
4430
4430
  * <p>
4431
4431
  * An object that describes Compute Optimizer's integration status with your external metrics provider.
4432
4432
  * </p>
4433
4433
  * @public
4434
4434
  */
4435
- externalMetricStatus?: ExternalMetricStatus;
4435
+ externalMetricStatus?: ExternalMetricStatus | undefined;
4436
4436
  /**
4437
4437
  * <p>
4438
4438
  * Describes the GPU accelerator settings for the current instance type.
4439
4439
  * </p>
4440
4440
  * @public
4441
4441
  */
4442
- currentInstanceGpuInfo?: GpuInfo;
4442
+ currentInstanceGpuInfo?: GpuInfo | undefined;
4443
4443
  /**
4444
4444
  * <p>
4445
4445
  * Describes if an Amazon EC2 instance is idle.
4446
4446
  * </p>
4447
4447
  * @public
4448
4448
  */
4449
- idle?: InstanceIdle;
4449
+ idle?: InstanceIdle | undefined;
4450
4450
  }
4451
4451
  /**
4452
4452
  * @public
@@ -4458,19 +4458,19 @@ export interface GetEC2InstanceRecommendationsResponse {
4458
4458
  * return.</p>
4459
4459
  * @public
4460
4460
  */
4461
- nextToken?: string;
4461
+ nextToken?: string | undefined;
4462
4462
  /**
4463
4463
  * <p>An array of objects that describe instance recommendations.</p>
4464
4464
  * @public
4465
4465
  */
4466
- instanceRecommendations?: InstanceRecommendation[];
4466
+ instanceRecommendations?: InstanceRecommendation[] | undefined;
4467
4467
  /**
4468
4468
  * <p>An array of objects that describe errors of the request.</p>
4469
4469
  * <p>For example, an error is returned if you request recommendations for an instance of an
4470
4470
  * unsupported instance family.</p>
4471
4471
  * @public
4472
4472
  */
4473
- errors?: GetRecommendationError[];
4473
+ errors?: GetRecommendationError[] | undefined;
4474
4474
  }
4475
4475
  /**
4476
4476
  * @public
@@ -4507,7 +4507,7 @@ export interface GetEC2RecommendationProjectedMetricsRequest {
4507
4507
  * projected metrics to return in the response.</p>
4508
4508
  * @public
4509
4509
  */
4510
- recommendationPreferences?: RecommendationPreferences;
4510
+ recommendationPreferences?: RecommendationPreferences | undefined;
4511
4511
  }
4512
4512
  /**
4513
4513
  * <p>Describes a projected utilization metric of a recommendation option, such as an
@@ -4574,17 +4574,17 @@ export interface ProjectedMetric {
4574
4574
  * </ul>
4575
4575
  * @public
4576
4576
  */
4577
- name?: MetricName;
4577
+ name?: MetricName | undefined;
4578
4578
  /**
4579
4579
  * <p>The timestamps of the projected utilization metric.</p>
4580
4580
  * @public
4581
4581
  */
4582
- timestamps?: Date[];
4582
+ timestamps?: Date[] | undefined;
4583
4583
  /**
4584
4584
  * <p>The values of the projected utilization metrics.</p>
4585
4585
  * @public
4586
4586
  */
4587
- values?: number[];
4587
+ values?: number[] | undefined;
4588
4588
  }
4589
4589
  /**
4590
4590
  * <p>Describes a projected utilization metric of a recommendation option.</p>
@@ -4601,7 +4601,7 @@ export interface RecommendedOptionProjectedMetric {
4601
4601
  * <p>The recommended instance type.</p>
4602
4602
  * @public
4603
4603
  */
4604
- recommendedInstanceType?: string;
4604
+ recommendedInstanceType?: string | undefined;
4605
4605
  /**
4606
4606
  * <p>The rank of the recommendation option projected metric.</p>
4607
4607
  * <p>The top recommendation option is ranked as <code>1</code>.</p>
@@ -4610,12 +4610,12 @@ export interface RecommendedOptionProjectedMetric {
4610
4610
  * that is also ranked as <code>1</code> in the same response.</p>
4611
4611
  * @public
4612
4612
  */
4613
- rank?: number;
4613
+ rank?: number | undefined;
4614
4614
  /**
4615
4615
  * <p>An array of objects that describe a projected utilization metric.</p>
4616
4616
  * @public
4617
4617
  */
4618
- projectedMetrics?: ProjectedMetric[];
4618
+ projectedMetrics?: ProjectedMetric[] | undefined;
4619
4619
  }
4620
4620
  /**
4621
4621
  * @public
@@ -4625,7 +4625,7 @@ export interface GetEC2RecommendationProjectedMetricsResponse {
4625
4625
  * <p>An array of objects that describes projected metrics.</p>
4626
4626
  * @public
4627
4627
  */
4628
- recommendedOptionProjectedMetrics?: RecommendedOptionProjectedMetric[];
4628
+ recommendedOptionProjectedMetrics?: RecommendedOptionProjectedMetric[] | undefined;
4629
4629
  }
4630
4630
  /**
4631
4631
  * @public
@@ -4713,28 +4713,28 @@ export interface ECSServiceProjectedMetric {
4713
4713
  * </ul>
4714
4714
  * @public
4715
4715
  */
4716
- name?: ECSServiceMetricName;
4716
+ name?: ECSServiceMetricName | undefined;
4717
4717
  /**
4718
4718
  * <p>
4719
4719
  * The timestamps of the projected metric.
4720
4720
  * </p>
4721
4721
  * @public
4722
4722
  */
4723
- timestamps?: Date[];
4723
+ timestamps?: Date[] | undefined;
4724
4724
  /**
4725
4725
  * <p>
4726
4726
  * The upper bound values for the projected metric.
4727
4727
  * </p>
4728
4728
  * @public
4729
4729
  */
4730
- upperBoundValues?: number[];
4730
+ upperBoundValues?: number[] | undefined;
4731
4731
  /**
4732
4732
  * <p>
4733
4733
  * The lower bound values for the projected metric.
4734
4734
  * </p>
4735
4735
  * @public
4736
4736
  */
4737
- lowerBoundValues?: number[];
4737
+ lowerBoundValues?: number[] | undefined;
4738
4738
  }
4739
4739
  /**
4740
4740
  * <p>
@@ -4751,21 +4751,21 @@ export interface ECSServiceRecommendedOptionProjectedMetric {
4751
4751
  * </p>
4752
4752
  * @public
4753
4753
  */
4754
- recommendedCpuUnits?: number;
4754
+ recommendedCpuUnits?: number | undefined;
4755
4755
  /**
4756
4756
  * <p>
4757
4757
  * The recommended memory size for the Amazon ECS service.
4758
4758
  * </p>
4759
4759
  * @public
4760
4760
  */
4761
- recommendedMemorySize?: number;
4761
+ recommendedMemorySize?: number | undefined;
4762
4762
  /**
4763
4763
  * <p>
4764
4764
  * An array of objects that describe the projected metric.
4765
4765
  * </p>
4766
4766
  * @public
4767
4767
  */
4768
- projectedMetrics?: ECSServiceProjectedMetric[];
4768
+ projectedMetrics?: ECSServiceProjectedMetric[] | undefined;
4769
4769
  }
4770
4770
  /**
4771
4771
  * @public
@@ -4777,7 +4777,7 @@ export interface GetECSServiceRecommendationProjectedMetricsResponse {
4777
4777
  * </p>
4778
4778
  * @public
4779
4779
  */
4780
- recommendedOptionProjectedMetrics?: ECSServiceRecommendedOptionProjectedMetric[];
4780
+ recommendedOptionProjectedMetrics?: ECSServiceRecommendedOptionProjectedMetric[] | undefined;
4781
4781
  }
4782
4782
  /**
4783
4783
  * @public
@@ -4795,14 +4795,14 @@ export interface GetECSServiceRecommendationsRequest {
4795
4795
  * </p>
4796
4796
  * @public
4797
4797
  */
4798
- serviceArns?: string[];
4798
+ serviceArns?: string[] | undefined;
4799
4799
  /**
4800
4800
  * <p>
4801
4801
  * The token to advance to the next page of Amazon ECS service recommendations.
4802
4802
  * </p>
4803
4803
  * @public
4804
4804
  */
4805
- nextToken?: string;
4805
+ nextToken?: string | undefined;
4806
4806
  /**
4807
4807
  * <p>
4808
4808
  * The maximum number of Amazon ECS service recommendations to return with a single request.
@@ -4811,14 +4811,14 @@ export interface GetECSServiceRecommendationsRequest {
4811
4811
  * <code>nextToken</code> value.</p>
4812
4812
  * @public
4813
4813
  */
4814
- maxResults?: number;
4814
+ maxResults?: number | undefined;
4815
4815
  /**
4816
4816
  * <p>
4817
4817
  * An array of objects to specify a filter that returns a more specific list of Amazon ECS service recommendations.
4818
4818
  * </p>
4819
4819
  * @public
4820
4820
  */
4821
- filters?: ECSServiceRecommendationFilter[];
4821
+ filters?: ECSServiceRecommendationFilter[] | undefined;
4822
4822
  /**
4823
4823
  * <p>
4824
4824
  * Return the Amazon ECS service recommendations to the specified Amazon Web Services account IDs.
@@ -4829,7 +4829,7 @@ export interface GetECSServiceRecommendationsRequest {
4829
4829
  * <p>You can only specify one account ID per request.</p>
4830
4830
  * @public
4831
4831
  */
4832
- accountIds?: string[];
4832
+ accountIds?: string[] | undefined;
4833
4833
  }
4834
4834
  /**
4835
4835
  * <p>
@@ -4844,14 +4844,14 @@ export interface MemorySizeConfiguration {
4844
4844
  * </p>
4845
4845
  * @public
4846
4846
  */
4847
- memory?: number;
4847
+ memory?: number | undefined;
4848
4848
  /**
4849
4849
  * <p>
4850
4850
  * The limit of memory reserve for the container.
4851
4851
  * </p>
4852
4852
  * @public
4853
4853
  */
4854
- memoryReservation?: number;
4854
+ memoryReservation?: number | undefined;
4855
4855
  }
4856
4856
  /**
4857
4857
  * <p>
@@ -4866,21 +4866,21 @@ export interface ContainerConfiguration {
4866
4866
  * </p>
4867
4867
  * @public
4868
4868
  */
4869
- containerName?: string;
4869
+ containerName?: string | undefined;
4870
4870
  /**
4871
4871
  * <p>
4872
4872
  * The memory size configurations for the container.
4873
4873
  * </p>
4874
4874
  * @public
4875
4875
  */
4876
- memorySizeConfiguration?: MemorySizeConfiguration;
4876
+ memorySizeConfiguration?: MemorySizeConfiguration | undefined;
4877
4877
  /**
4878
4878
  * <p>
4879
4879
  * The number of CPU units reserved for the container.
4880
4880
  * </p>
4881
4881
  * @public
4882
4882
  */
4883
- cpu?: number;
4883
+ cpu?: number | undefined;
4884
4884
  }
4885
4885
  /**
4886
4886
  * <p>
@@ -4895,21 +4895,21 @@ export interface ServiceConfiguration {
4895
4895
  * </p>
4896
4896
  * @public
4897
4897
  */
4898
- memory?: number;
4898
+ memory?: number | undefined;
4899
4899
  /**
4900
4900
  * <p>
4901
4901
  * The number of CPU units used by the tasks in the Amazon ECS service.
4902
4902
  * </p>
4903
4903
  * @public
4904
4904
  */
4905
- cpu?: number;
4905
+ cpu?: number | undefined;
4906
4906
  /**
4907
4907
  * <p>
4908
4908
  * The container configurations within a task of an Amazon ECS service.
4909
4909
  * </p>
4910
4910
  * @public
4911
4911
  */
4912
- containerConfigurations?: ContainerConfiguration[];
4912
+ containerConfigurations?: ContainerConfiguration[] | undefined;
4913
4913
  /**
4914
4914
  * <p>
4915
4915
  * Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects
@@ -4937,14 +4937,14 @@ export interface ServiceConfiguration {
4937
4937
  * <i>Application Auto Scaling User Guide</i>.</p>
4938
4938
  * @public
4939
4939
  */
4940
- autoScalingConfiguration?: AutoScalingConfiguration;
4940
+ autoScalingConfiguration?: AutoScalingConfiguration | undefined;
4941
4941
  /**
4942
4942
  * <p>
4943
4943
  * The task definition ARN used by the tasks in the Amazon ECS service.
4944
4944
  * </p>
4945
4945
  * @public
4946
4946
  */
4947
- taskDefinitionArn?: string;
4947
+ taskDefinitionArn?: string | undefined;
4948
4948
  }
4949
4949
  /**
4950
4950
  * @public
@@ -4972,7 +4972,7 @@ export interface ECSSavingsEstimationMode {
4972
4972
  * </p>
4973
4973
  * @public
4974
4974
  */
4975
- source?: ECSSavingsEstimationModeSource;
4975
+ source?: ECSSavingsEstimationModeSource | undefined;
4976
4976
  }
4977
4977
  /**
4978
4978
  * <p>
@@ -4987,7 +4987,7 @@ export interface ECSEffectiveRecommendationPreferences {
4987
4987
  * </p>
4988
4988
  * @public
4989
4989
  */
4990
- savingsEstimationMode?: ECSSavingsEstimationMode;
4990
+ savingsEstimationMode?: ECSSavingsEstimationMode | undefined;
4991
4991
  }
4992
4992
  /**
4993
4993
  * @public
@@ -5041,21 +5041,21 @@ export interface ContainerRecommendation {
5041
5041
  * </p>
5042
5042
  * @public
5043
5043
  */
5044
- containerName?: string;
5044
+ containerName?: string | undefined;
5045
5045
  /**
5046
5046
  * <p>
5047
5047
  * The recommended memory size configurations for the container.
5048
5048
  * </p>
5049
5049
  * @public
5050
5050
  */
5051
- memorySizeConfiguration?: MemorySizeConfiguration;
5051
+ memorySizeConfiguration?: MemorySizeConfiguration | undefined;
5052
5052
  /**
5053
5053
  * <p>
5054
5054
  * The recommended number of CPU units reserved for the container.
5055
5055
  * </p>
5056
5056
  * @public
5057
5057
  */
5058
- cpu?: number;
5058
+ cpu?: number | undefined;
5059
5059
  }
5060
5060
  /**
5061
5061
  * @public
@@ -5097,7 +5097,7 @@ export interface ECSServiceProjectedUtilizationMetric {
5097
5097
  * </ul>
5098
5098
  * @public
5099
5099
  */
5100
- name?: ECSServiceMetricName;
5100
+ name?: ECSServiceMetricName | undefined;
5101
5101
  /**
5102
5102
  * <p>The statistic of the projected utilization metric.</p>
5103
5103
  * <p>The Compute Optimizer API, Command Line Interface (CLI), and SDKs
@@ -5113,21 +5113,21 @@ export interface ECSServiceProjectedUtilizationMetric {
5113
5113
  * User Guide</a>.</p>
5114
5114
  * @public
5115
5115
  */
5116
- statistic?: ECSServiceMetricStatistic;
5116
+ statistic?: ECSServiceMetricStatistic | undefined;
5117
5117
  /**
5118
5118
  * <p>
5119
5119
  * The lower bound values for the projected utilization metrics.
5120
5120
  * </p>
5121
5121
  * @public
5122
5122
  */
5123
- lowerBoundValue?: number;
5123
+ lowerBoundValue?: number | undefined;
5124
5124
  /**
5125
5125
  * <p>
5126
5126
  * The upper bound values for the projected utilization metrics.
5127
5127
  * </p>
5128
5128
  * @public
5129
5129
  */
5130
- upperBoundValue?: number;
5130
+ upperBoundValue?: number | undefined;
5131
5131
  }
5132
5132
  /**
5133
5133
  * <p>
@@ -5143,14 +5143,14 @@ export interface ECSEstimatedMonthlySavings {
5143
5143
  * </p>
5144
5144
  * @public
5145
5145
  */
5146
- currency?: Currency;
5146
+ currency?: Currency | undefined;
5147
5147
  /**
5148
5148
  * <p>
5149
5149
  * The value of the estimated monthly savings for Amazon ECS services.
5150
5150
  * </p>
5151
5151
  * @public
5152
5152
  */
5153
- value?: number;
5153
+ value?: number | undefined;
5154
5154
  }
5155
5155
  /**
5156
5156
  * <p>
@@ -5168,7 +5168,7 @@ export interface ECSSavingsOpportunityAfterDiscounts {
5168
5168
  * </p>
5169
5169
  * @public
5170
5170
  */
5171
- savingsOpportunityPercentage?: number;
5171
+ savingsOpportunityPercentage?: number | undefined;
5172
5172
  /**
5173
5173
  * <p>
5174
5174
  * The estimated monthly savings possible by adopting Compute Optimizer’s Amazon ECS service recommendations.
@@ -5176,7 +5176,7 @@ export interface ECSSavingsOpportunityAfterDiscounts {
5176
5176
  * </p>
5177
5177
  * @public
5178
5178
  */
5179
- estimatedMonthlySavings?: ECSEstimatedMonthlySavings;
5179
+ estimatedMonthlySavings?: ECSEstimatedMonthlySavings | undefined;
5180
5180
  }
5181
5181
  /**
5182
5182
  * <p>
@@ -5191,14 +5191,14 @@ export interface ECSServiceRecommendationOption {
5191
5191
  * </p>
5192
5192
  * @public
5193
5193
  */
5194
- memory?: number;
5194
+ memory?: number | undefined;
5195
5195
  /**
5196
5196
  * <p>
5197
5197
  * The CPU size of the Amazon ECS service recommendation option.
5198
5198
  * </p>
5199
5199
  * @public
5200
5200
  */
5201
- cpu?: number;
5201
+ cpu?: number | undefined;
5202
5202
  /**
5203
5203
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
5204
5204
  * the recommendation option of an individual resource.</p>
@@ -5218,7 +5218,7 @@ export interface ECSServiceRecommendationOption {
5218
5218
  * </important>
5219
5219
  * @public
5220
5220
  */
5221
- savingsOpportunity?: SavingsOpportunity;
5221
+ savingsOpportunity?: SavingsOpportunity | undefined;
5222
5222
  /**
5223
5223
  * <p>
5224
5224
  * Describes the savings opportunity for Amazon ECS service recommendations or for the recommendation option.
@@ -5227,21 +5227,21 @@ export interface ECSServiceRecommendationOption {
5227
5227
  * You can achieve this by implementing a given Compute Optimizer recommendation.</p>
5228
5228
  * @public
5229
5229
  */
5230
- savingsOpportunityAfterDiscounts?: ECSSavingsOpportunityAfterDiscounts;
5230
+ savingsOpportunityAfterDiscounts?: ECSSavingsOpportunityAfterDiscounts | undefined;
5231
5231
  /**
5232
5232
  * <p>
5233
5233
  * An array of objects that describe the projected utilization metrics of the Amazon ECS service recommendation option.
5234
5234
  * </p>
5235
5235
  * @public
5236
5236
  */
5237
- projectedUtilizationMetrics?: ECSServiceProjectedUtilizationMetric[];
5237
+ projectedUtilizationMetrics?: ECSServiceProjectedUtilizationMetric[] | undefined;
5238
5238
  /**
5239
5239
  * <p>
5240
5240
  * The CPU and memory size recommendations for the containers within the task of your Amazon ECS service.
5241
5241
  * </p>
5242
5242
  * @public
5243
5243
  */
5244
- containerRecommendations?: ContainerRecommendation[];
5244
+ containerRecommendations?: ContainerRecommendation[] | undefined;
5245
5245
  }
5246
5246
  /**
5247
5247
  * <p>
@@ -5269,7 +5269,7 @@ export interface ECSServiceUtilizationMetric {
5269
5269
  * </ul>
5270
5270
  * @public
5271
5271
  */
5272
- name?: ECSServiceMetricName;
5272
+ name?: ECSServiceMetricName | undefined;
5273
5273
  /**
5274
5274
  * <p>The statistic of the utilization metric.</p>
5275
5275
  * <p>The Compute Optimizer API, Command Line Interface (CLI), and SDKs
@@ -5285,14 +5285,14 @@ export interface ECSServiceUtilizationMetric {
5285
5285
  * User Guide</a>.</p>
5286
5286
  * @public
5287
5287
  */
5288
- statistic?: ECSServiceMetricStatistic;
5288
+ statistic?: ECSServiceMetricStatistic | undefined;
5289
5289
  /**
5290
5290
  * <p>
5291
5291
  * The value of the utilization metric.
5292
5292
  * </p>
5293
5293
  * @public
5294
5294
  */
5295
- value?: number;
5295
+ value?: number | undefined;
5296
5296
  }
5297
5297
  /**
5298
5298
  * <p>
@@ -5313,35 +5313,35 @@ export interface ECSServiceRecommendation {
5313
5313
  * </p>
5314
5314
  * @public
5315
5315
  */
5316
- serviceArn?: string;
5316
+ serviceArn?: string | undefined;
5317
5317
  /**
5318
5318
  * <p>
5319
5319
  * The Amazon Web Services account ID of the Amazon ECS service.
5320
5320
  * </p>
5321
5321
  * @public
5322
5322
  */
5323
- accountId?: string;
5323
+ accountId?: string | undefined;
5324
5324
  /**
5325
5325
  * <p>
5326
5326
  * The configuration of the current Amazon ECS service.
5327
5327
  * </p>
5328
5328
  * @public
5329
5329
  */
5330
- currentServiceConfiguration?: ServiceConfiguration;
5330
+ currentServiceConfiguration?: ServiceConfiguration | undefined;
5331
5331
  /**
5332
5332
  * <p>
5333
5333
  * An array of objects that describe the utilization metrics of the Amazon ECS service.
5334
5334
  * </p>
5335
5335
  * @public
5336
5336
  */
5337
- utilizationMetrics?: ECSServiceUtilizationMetric[];
5337
+ utilizationMetrics?: ECSServiceUtilizationMetric[] | undefined;
5338
5338
  /**
5339
5339
  * <p>
5340
5340
  * The number of days the Amazon ECS service utilization metrics were analyzed.
5341
5341
  * </p>
5342
5342
  * @public
5343
5343
  */
5344
- lookbackPeriodInDays?: number;
5344
+ lookbackPeriodInDays?: number | undefined;
5345
5345
  /**
5346
5346
  * <p>
5347
5347
  * The launch type the Amazon ECS service is using.
@@ -5351,14 +5351,14 @@ export interface ECSServiceRecommendation {
5351
5351
  * </note>
5352
5352
  * @public
5353
5353
  */
5354
- launchType?: ECSServiceLaunchType;
5354
+ launchType?: ECSServiceLaunchType | undefined;
5355
5355
  /**
5356
5356
  * <p>
5357
5357
  * The timestamp of when the Amazon ECS service recommendation was last generated.
5358
5358
  * </p>
5359
5359
  * @public
5360
5360
  */
5361
- lastRefreshTimestamp?: Date;
5361
+ lastRefreshTimestamp?: Date | undefined;
5362
5362
  /**
5363
5363
  * <p>
5364
5364
  * The finding classification of an Amazon ECS service.
@@ -5394,7 +5394,7 @@ export interface ECSServiceRecommendation {
5394
5394
  * </ul>
5395
5395
  * @public
5396
5396
  */
5397
- finding?: ECSServiceRecommendationFinding;
5397
+ finding?: ECSServiceRecommendationFinding | undefined;
5398
5398
  /**
5399
5399
  * <p>
5400
5400
  * The reason for the finding classification of an Amazon ECS service.
@@ -5440,14 +5440,14 @@ export interface ECSServiceRecommendation {
5440
5440
  * </ul>
5441
5441
  * @public
5442
5442
  */
5443
- findingReasonCodes?: ECSServiceRecommendationFindingReasonCode[];
5443
+ findingReasonCodes?: ECSServiceRecommendationFindingReasonCode[] | undefined;
5444
5444
  /**
5445
5445
  * <p>
5446
5446
  * An array of objects that describe the recommendation options for the Amazon ECS service.
5447
5447
  * </p>
5448
5448
  * @public
5449
5449
  */
5450
- serviceRecommendationOptions?: ECSServiceRecommendationOption[];
5450
+ serviceRecommendationOptions?: ECSServiceRecommendationOption[] | undefined;
5451
5451
  /**
5452
5452
  * <p>
5453
5453
  * The risk of the current Amazon ECS service not meeting the performance needs of its workloads.
@@ -5456,21 +5456,21 @@ export interface ECSServiceRecommendation {
5456
5456
  * </p>
5457
5457
  * @public
5458
5458
  */
5459
- currentPerformanceRisk?: CurrentPerformanceRisk;
5459
+ currentPerformanceRisk?: CurrentPerformanceRisk | undefined;
5460
5460
  /**
5461
5461
  * <p>
5462
5462
  * Describes the effective recommendation preferences for Amazon ECS services.
5463
5463
  * </p>
5464
5464
  * @public
5465
5465
  */
5466
- effectiveRecommendationPreferences?: ECSEffectiveRecommendationPreferences;
5466
+ effectiveRecommendationPreferences?: ECSEffectiveRecommendationPreferences | undefined;
5467
5467
  /**
5468
5468
  * <p>
5469
5469
  * A list of tags assigned to your Amazon ECS service recommendations.
5470
5470
  * </p>
5471
5471
  * @public
5472
5472
  */
5473
- tags?: Tag[];
5473
+ tags?: Tag[] | undefined;
5474
5474
  }
5475
5475
  /**
5476
5476
  * @public
@@ -5482,21 +5482,21 @@ export interface GetECSServiceRecommendationsResponse {
5482
5482
  * </p>
5483
5483
  * @public
5484
5484
  */
5485
- nextToken?: string;
5485
+ nextToken?: string | undefined;
5486
5486
  /**
5487
5487
  * <p>
5488
5488
  * An array of objects that describe the Amazon ECS service recommendations.
5489
5489
  * </p>
5490
5490
  * @public
5491
5491
  */
5492
- ecsServiceRecommendations?: ECSServiceRecommendation[];
5492
+ ecsServiceRecommendations?: ECSServiceRecommendation[] | undefined;
5493
5493
  /**
5494
5494
  * <p>
5495
5495
  * An array of objects that describe errors of the request.
5496
5496
  * </p>
5497
5497
  * @public
5498
5498
  */
5499
- errors?: GetRecommendationError[];
5499
+ errors?: GetRecommendationError[] | undefined;
5500
5500
  }
5501
5501
  /**
5502
5502
  * @public
@@ -5529,7 +5529,7 @@ export interface GetEffectiveRecommendationPreferencesResponse {
5529
5529
  * Guide</i>.</p>
5530
5530
  * @public
5531
5531
  */
5532
- enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics;
5532
+ enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | undefined;
5533
5533
  /**
5534
5534
  * <p>The provider of the external metrics recommendation preference. Considers all
5535
5535
  * applicable preferences that you might have set at the account and organization
@@ -5545,7 +5545,7 @@ export interface GetEffectiveRecommendationPreferencesResponse {
5545
5545
  * Guide</i>.</p>
5546
5546
  * @public
5547
5547
  */
5548
- externalMetricsPreference?: ExternalMetricsPreference;
5548
+ externalMetricsPreference?: ExternalMetricsPreference | undefined;
5549
5549
  /**
5550
5550
  * <p>
5551
5551
  * The number of days the utilization metrics of the Amazon Web Services resource are analyzed.
@@ -5555,7 +5555,7 @@ export interface GetEffectiveRecommendationPreferencesResponse {
5555
5555
  * GetAutoScalingGroupRecommendations or GetEC2InstanceRecommendations actions.</p>
5556
5556
  * @public
5557
5557
  */
5558
- lookBackPeriod?: LookBackPeriodPreference;
5558
+ lookBackPeriod?: LookBackPeriodPreference | undefined;
5559
5559
  /**
5560
5560
  * <p>
5561
5561
  * The resource’s CPU and memory utilization preferences, such as threshold and headroom,
@@ -5567,7 +5567,7 @@ export interface GetEffectiveRecommendationPreferencesResponse {
5567
5567
  * GetAutoScalingGroupRecommendations or GetEC2InstanceRecommendations actions.</p>
5568
5568
  * @public
5569
5569
  */
5570
- utilizationPreferences?: UtilizationPreference[];
5570
+ utilizationPreferences?: UtilizationPreference[] | undefined;
5571
5571
  /**
5572
5572
  * <p>
5573
5573
  * The resource type values that are considered as candidates when generating rightsizing recommendations.
@@ -5580,7 +5580,7 @@ export interface GetEffectiveRecommendationPreferencesResponse {
5580
5580
  * or GetEC2InstanceRecommendations actions.</p>
5581
5581
  * @public
5582
5582
  */
5583
- preferredResources?: EffectivePreferredResource[];
5583
+ preferredResources?: EffectivePreferredResource[] | undefined;
5584
5584
  }
5585
5585
  /**
5586
5586
  * @public
@@ -5595,32 +5595,32 @@ export interface GetEnrollmentStatusResponse {
5595
5595
  * <p>The enrollment status of the account.</p>
5596
5596
  * @public
5597
5597
  */
5598
- status?: Status;
5598
+ status?: Status | undefined;
5599
5599
  /**
5600
5600
  * <p>The reason for the enrollment status of the account.</p>
5601
5601
  * <p>For example, an account might show a status of <code>Pending</code> because member
5602
5602
  * accounts of an organization require more time to be enrolled in the service.</p>
5603
5603
  * @public
5604
5604
  */
5605
- statusReason?: string;
5605
+ statusReason?: string | undefined;
5606
5606
  /**
5607
5607
  * <p>Confirms the enrollment status of member accounts of the organization, if the account
5608
5608
  * is a management account of an organization.</p>
5609
5609
  * @public
5610
5610
  */
5611
- memberAccountsEnrolled?: boolean;
5611
+ memberAccountsEnrolled?: boolean | undefined;
5612
5612
  /**
5613
5613
  * <p>The Unix epoch timestamp, in seconds, of when the account enrollment status was last
5614
5614
  * updated.</p>
5615
5615
  * @public
5616
5616
  */
5617
- lastUpdatedTimestamp?: Date;
5617
+ lastUpdatedTimestamp?: Date | undefined;
5618
5618
  /**
5619
5619
  * <p>The count of organization member accounts that are opted in to the service, if your
5620
5620
  * account is an organization management account.</p>
5621
5621
  * @public
5622
5622
  */
5623
- numberOfMemberAccountsOptedIn?: number;
5623
+ numberOfMemberAccountsOptedIn?: number | undefined;
5624
5624
  }
5625
5625
  /**
5626
5626
  * @public
@@ -5646,14 +5646,14 @@ export interface EnrollmentFilter {
5646
5646
  * example, <code>Active</code>).</p>
5647
5647
  * @public
5648
5648
  */
5649
- name?: EnrollmentFilterName;
5649
+ name?: EnrollmentFilterName | undefined;
5650
5650
  /**
5651
5651
  * <p>The value of the filter.</p>
5652
5652
  * <p>The valid values are <code>Active</code>, <code>Inactive</code>, <code>Pending</code>,
5653
5653
  * and <code>Failed</code>.</p>
5654
5654
  * @public
5655
5655
  */
5656
- values?: string[];
5656
+ values?: string[] | undefined;
5657
5657
  }
5658
5658
  /**
5659
5659
  * @public
@@ -5664,12 +5664,12 @@ export interface GetEnrollmentStatusesForOrganizationRequest {
5664
5664
  * enrollment statuses.</p>
5665
5665
  * @public
5666
5666
  */
5667
- filters?: EnrollmentFilter[];
5667
+ filters?: EnrollmentFilter[] | undefined;
5668
5668
  /**
5669
5669
  * <p>The token to advance to the next page of account enrollment statuses.</p>
5670
5670
  * @public
5671
5671
  */
5672
- nextToken?: string;
5672
+ nextToken?: string | undefined;
5673
5673
  /**
5674
5674
  * <p>The maximum number of account enrollment statuses to return with a single request. You
5675
5675
  * can specify up to 100 statuses to return with each request.</p>
@@ -5677,7 +5677,7 @@ export interface GetEnrollmentStatusesForOrganizationRequest {
5677
5677
  * <code>nextToken</code> value.</p>
5678
5678
  * @public
5679
5679
  */
5680
- maxResults?: number;
5680
+ maxResults?: number | undefined;
5681
5681
  }
5682
5682
  /**
5683
5683
  * @public
@@ -5688,14 +5688,14 @@ export interface GetEnrollmentStatusesForOrganizationResponse {
5688
5688
  * accounts.</p>
5689
5689
  * @public
5690
5690
  */
5691
- accountEnrollmentStatuses?: AccountEnrollmentStatus[];
5691
+ accountEnrollmentStatuses?: AccountEnrollmentStatus[] | undefined;
5692
5692
  /**
5693
5693
  * <p>The token to use to advance to the next page of account enrollment statuses.</p>
5694
5694
  * <p>This value is null when there are no more pages of account enrollment statuses to
5695
5695
  * return.</p>
5696
5696
  * @public
5697
5697
  */
5698
- nextToken?: string;
5698
+ nextToken?: string | undefined;
5699
5699
  }
5700
5700
  /**
5701
5701
  * @public
@@ -5713,7 +5713,7 @@ export interface GetLambdaFunctionRecommendationsRequest {
5713
5713
  * Guide</i>.</p>
5714
5714
  * @public
5715
5715
  */
5716
- functionArns?: string[];
5716
+ functionArns?: string[] | undefined;
5717
5717
  /**
5718
5718
  * <p>The ID of the Amazon Web Services account for which to return function
5719
5719
  * recommendations.</p>
@@ -5722,25 +5722,25 @@ export interface GetLambdaFunctionRecommendationsRequest {
5722
5722
  * <p>Only one account ID can be specified per request.</p>
5723
5723
  * @public
5724
5724
  */
5725
- accountIds?: string[];
5725
+ accountIds?: string[] | undefined;
5726
5726
  /**
5727
5727
  * <p>An array of objects to specify a filter that returns a more specific list of function
5728
5728
  * recommendations.</p>
5729
5729
  * @public
5730
5730
  */
5731
- filters?: LambdaFunctionRecommendationFilter[];
5731
+ filters?: LambdaFunctionRecommendationFilter[] | undefined;
5732
5732
  /**
5733
5733
  * <p>The token to advance to the next page of function recommendations.</p>
5734
5734
  * @public
5735
5735
  */
5736
- nextToken?: string;
5736
+ nextToken?: string | undefined;
5737
5737
  /**
5738
5738
  * <p>The maximum number of function recommendations to return with a single request.</p>
5739
5739
  * <p>To retrieve the remaining results, make another request with the returned
5740
5740
  * <code>nextToken</code> value.</p>
5741
5741
  * @public
5742
5742
  */
5743
- maxResults?: number;
5743
+ maxResults?: number | undefined;
5744
5744
  }
5745
5745
  /**
5746
5746
  * @public
@@ -5768,7 +5768,7 @@ export interface LambdaSavingsEstimationMode {
5768
5768
  * </p>
5769
5769
  * @public
5770
5770
  */
5771
- source?: LambdaSavingsEstimationModeSource;
5771
+ source?: LambdaSavingsEstimationModeSource | undefined;
5772
5772
  }
5773
5773
  /**
5774
5774
  * <p>
@@ -5783,7 +5783,7 @@ export interface LambdaEffectiveRecommendationPreferences {
5783
5783
  * </p>
5784
5784
  * @public
5785
5785
  */
5786
- savingsEstimationMode?: LambdaSavingsEstimationMode;
5786
+ savingsEstimationMode?: LambdaSavingsEstimationMode | undefined;
5787
5787
  }
5788
5788
  /**
5789
5789
  * @public
@@ -5846,17 +5846,17 @@ export interface LambdaFunctionMemoryProjectedMetric {
5846
5846
  * <p>The name of the projected utilization metric.</p>
5847
5847
  * @public
5848
5848
  */
5849
- name?: LambdaFunctionMemoryMetricName;
5849
+ name?: LambdaFunctionMemoryMetricName | undefined;
5850
5850
  /**
5851
5851
  * <p>The statistic of the projected utilization metric.</p>
5852
5852
  * @public
5853
5853
  */
5854
- statistic?: LambdaFunctionMemoryMetricStatistic;
5854
+ statistic?: LambdaFunctionMemoryMetricStatistic | undefined;
5855
5855
  /**
5856
5856
  * <p>The values of the projected utilization metrics.</p>
5857
5857
  * @public
5858
5858
  */
5859
- value?: number;
5859
+ value?: number | undefined;
5860
5860
  }
5861
5861
  /**
5862
5862
  * <p>
@@ -5872,14 +5872,14 @@ export interface LambdaEstimatedMonthlySavings {
5872
5872
  * </p>
5873
5873
  * @public
5874
5874
  */
5875
- currency?: Currency;
5875
+ currency?: Currency | undefined;
5876
5876
  /**
5877
5877
  * <p>
5878
5878
  * The value of the estimated monthly savings.
5879
5879
  * </p>
5880
5880
  * @public
5881
5881
  */
5882
- value?: number;
5882
+ value?: number | undefined;
5883
5883
  }
5884
5884
  /**
5885
5885
  * <p>
@@ -5897,7 +5897,7 @@ export interface LambdaSavingsOpportunityAfterDiscounts {
5897
5897
  * </p>
5898
5898
  * @public
5899
5899
  */
5900
- savingsOpportunityPercentage?: number;
5900
+ savingsOpportunityPercentage?: number | undefined;
5901
5901
  /**
5902
5902
  * <p>
5903
5903
  * The estimated monthly savings possible by adopting Compute Optimizer’s Lambda function recommendations. This
@@ -5905,7 +5905,7 @@ export interface LambdaSavingsOpportunityAfterDiscounts {
5905
5905
  * </p>
5906
5906
  * @public
5907
5907
  */
5908
- estimatedMonthlySavings?: LambdaEstimatedMonthlySavings;
5908
+ estimatedMonthlySavings?: LambdaEstimatedMonthlySavings | undefined;
5909
5909
  }
5910
5910
  /**
5911
5911
  * <p>Describes a recommendation option for an Lambda function.</p>
@@ -5917,25 +5917,25 @@ export interface LambdaFunctionMemoryRecommendationOption {
5917
5917
  * <p>The top recommendation option is ranked as <code>1</code>.</p>
5918
5918
  * @public
5919
5919
  */
5920
- rank?: number;
5920
+ rank?: number | undefined;
5921
5921
  /**
5922
5922
  * <p>The memory size, in MB, of the function recommendation option.</p>
5923
5923
  * @public
5924
5924
  */
5925
- memorySize?: number;
5925
+ memorySize?: number | undefined;
5926
5926
  /**
5927
5927
  * <p>An array of objects that describe the projected utilization metrics of the function
5928
5928
  * recommendation option.</p>
5929
5929
  * @public
5930
5930
  */
5931
- projectedUtilizationMetrics?: LambdaFunctionMemoryProjectedMetric[];
5931
+ projectedUtilizationMetrics?: LambdaFunctionMemoryProjectedMetric[] | undefined;
5932
5932
  /**
5933
5933
  * <p>An object that describes the savings opportunity for the Lambda function
5934
5934
  * recommendation option. Savings opportunity includes the estimated monthly savings amount
5935
5935
  * and percentage.</p>
5936
5936
  * @public
5937
5937
  */
5938
- savingsOpportunity?: SavingsOpportunity;
5938
+ savingsOpportunity?: SavingsOpportunity | undefined;
5939
5939
  /**
5940
5940
  * <p>
5941
5941
  * An object that describes the savings opportunity for the Lambda recommendation option which includes Saving Plans
@@ -5943,7 +5943,7 @@ export interface LambdaFunctionMemoryRecommendationOption {
5943
5943
  * </p>
5944
5944
  * @public
5945
5945
  */
5946
- savingsOpportunityAfterDiscounts?: LambdaSavingsOpportunityAfterDiscounts;
5946
+ savingsOpportunityAfterDiscounts?: LambdaSavingsOpportunityAfterDiscounts | undefined;
5947
5947
  }
5948
5948
  /**
5949
5949
  * @public
@@ -5990,7 +5990,7 @@ export interface LambdaFunctionUtilizationMetric {
5990
5990
  * </ul>
5991
5991
  * @public
5992
5992
  */
5993
- name?: LambdaFunctionMetricName;
5993
+ name?: LambdaFunctionMetricName | undefined;
5994
5994
  /**
5995
5995
  * <p>The statistic of the utilization metric.</p>
5996
5996
  * <p>The Compute Optimizer API, Command Line Interface (CLI), and SDKs
@@ -6006,12 +6006,12 @@ export interface LambdaFunctionUtilizationMetric {
6006
6006
  * User Guide</a>.</p>
6007
6007
  * @public
6008
6008
  */
6009
- statistic?: LambdaFunctionMetricStatistic;
6009
+ statistic?: LambdaFunctionMetricStatistic | undefined;
6010
6010
  /**
6011
6011
  * <p>The value of the utilization metric.</p>
6012
6012
  * @public
6013
6013
  */
6014
- value?: number;
6014
+ value?: number | undefined;
6015
6015
  }
6016
6016
  /**
6017
6017
  * <p>Describes an Lambda function recommendation.</p>
@@ -6022,43 +6022,43 @@ export interface LambdaFunctionRecommendation {
6022
6022
  * <p>The Amazon Resource Name (ARN) of the current function.</p>
6023
6023
  * @public
6024
6024
  */
6025
- functionArn?: string;
6025
+ functionArn?: string | undefined;
6026
6026
  /**
6027
6027
  * <p>The version number of the current function.</p>
6028
6028
  * @public
6029
6029
  */
6030
- functionVersion?: string;
6030
+ functionVersion?: string | undefined;
6031
6031
  /**
6032
6032
  * <p>The Amazon Web Services account ID of the function.</p>
6033
6033
  * @public
6034
6034
  */
6035
- accountId?: string;
6035
+ accountId?: string | undefined;
6036
6036
  /**
6037
6037
  * <p>The amount of memory, in MB, that's allocated to the current function.</p>
6038
6038
  * @public
6039
6039
  */
6040
- currentMemorySize?: number;
6040
+ currentMemorySize?: number | undefined;
6041
6041
  /**
6042
6042
  * <p>The number of times your function code was applied during the look-back period.</p>
6043
6043
  * @public
6044
6044
  */
6045
- numberOfInvocations?: number;
6045
+ numberOfInvocations?: number | undefined;
6046
6046
  /**
6047
6047
  * <p>An array of objects that describe the utilization metrics of the function.</p>
6048
6048
  * @public
6049
6049
  */
6050
- utilizationMetrics?: LambdaFunctionUtilizationMetric[];
6050
+ utilizationMetrics?: LambdaFunctionUtilizationMetric[] | undefined;
6051
6051
  /**
6052
6052
  * <p>The number of days for which utilization metrics were analyzed for the
6053
6053
  * function.</p>
6054
6054
  * @public
6055
6055
  */
6056
- lookbackPeriodInDays?: number;
6056
+ lookbackPeriodInDays?: number | undefined;
6057
6057
  /**
6058
6058
  * <p>The timestamp of when the function recommendation was last generated.</p>
6059
6059
  * @public
6060
6060
  */
6061
- lastRefreshTimestamp?: Date;
6061
+ lastRefreshTimestamp?: Date | undefined;
6062
6062
  /**
6063
6063
  * <p>The finding classification of the function.</p>
6064
6064
  * <p>Findings for functions include:</p>
@@ -6105,7 +6105,7 @@ export interface LambdaFunctionRecommendation {
6105
6105
  * </ul>
6106
6106
  * @public
6107
6107
  */
6108
- finding?: LambdaFunctionRecommendationFinding;
6108
+ finding?: LambdaFunctionRecommendationFinding | undefined;
6109
6109
  /**
6110
6110
  * <p>The reason for the finding classification of the function.</p>
6111
6111
  * <note>
@@ -6158,34 +6158,34 @@ export interface LambdaFunctionRecommendation {
6158
6158
  * </ul>
6159
6159
  * @public
6160
6160
  */
6161
- findingReasonCodes?: LambdaFunctionRecommendationFindingReasonCode[];
6161
+ findingReasonCodes?: LambdaFunctionRecommendationFindingReasonCode[] | undefined;
6162
6162
  /**
6163
6163
  * <p>An array of objects that describe the memory configuration recommendation options for
6164
6164
  * the function.</p>
6165
6165
  * @public
6166
6166
  */
6167
- memorySizeRecommendationOptions?: LambdaFunctionMemoryRecommendationOption[];
6167
+ memorySizeRecommendationOptions?: LambdaFunctionMemoryRecommendationOption[] | undefined;
6168
6168
  /**
6169
6169
  * <p>The risk of the current Lambda function not meeting the performance needs
6170
6170
  * of its workloads. The higher the risk, the more likely the current Lambda
6171
6171
  * function requires more memory.</p>
6172
6172
  * @public
6173
6173
  */
6174
- currentPerformanceRisk?: CurrentPerformanceRisk;
6174
+ currentPerformanceRisk?: CurrentPerformanceRisk | undefined;
6175
6175
  /**
6176
6176
  * <p>
6177
6177
  * Describes the effective recommendation preferences for Lambda functions.
6178
6178
  * </p>
6179
6179
  * @public
6180
6180
  */
6181
- effectiveRecommendationPreferences?: LambdaEffectiveRecommendationPreferences;
6181
+ effectiveRecommendationPreferences?: LambdaEffectiveRecommendationPreferences | undefined;
6182
6182
  /**
6183
6183
  * <p>
6184
6184
  * A list of tags assigned to your Lambda function recommendations.
6185
6185
  * </p>
6186
6186
  * @public
6187
6187
  */
6188
- tags?: Tag[];
6188
+ tags?: Tag[] | undefined;
6189
6189
  }
6190
6190
  /**
6191
6191
  * @public
@@ -6197,12 +6197,12 @@ export interface GetLambdaFunctionRecommendationsResponse {
6197
6197
  * return.</p>
6198
6198
  * @public
6199
6199
  */
6200
- nextToken?: string;
6200
+ nextToken?: string | undefined;
6201
6201
  /**
6202
6202
  * <p>An array of objects that describe function recommendations.</p>
6203
6203
  * @public
6204
6204
  */
6205
- lambdaFunctionRecommendations?: LambdaFunctionRecommendation[];
6205
+ lambdaFunctionRecommendations?: LambdaFunctionRecommendation[] | undefined;
6206
6206
  }
6207
6207
  /**
6208
6208
  * @public
@@ -6220,14 +6220,14 @@ export interface GetLicenseRecommendationsRequest {
6220
6220
  * </p>
6221
6221
  * @public
6222
6222
  */
6223
- resourceArns?: string[];
6223
+ resourceArns?: string[] | undefined;
6224
6224
  /**
6225
6225
  * <p>
6226
6226
  * The token to advance to the next page of license recommendations.
6227
6227
  * </p>
6228
6228
  * @public
6229
6229
  */
6230
- nextToken?: string;
6230
+ nextToken?: string | undefined;
6231
6231
  /**
6232
6232
  * <p>
6233
6233
  * The maximum number of license recommendations to return with a single request.
@@ -6238,14 +6238,14 @@ export interface GetLicenseRecommendationsRequest {
6238
6238
  * </p>
6239
6239
  * @public
6240
6240
  */
6241
- maxResults?: number;
6241
+ maxResults?: number | undefined;
6242
6242
  /**
6243
6243
  * <p>
6244
6244
  * An array of objects to specify a filter that returns a more specific list of license recommendations.
6245
6245
  * </p>
6246
6246
  * @public
6247
6247
  */
6248
- filters?: LicenseRecommendationFilter[];
6248
+ filters?: LicenseRecommendationFilter[] | undefined;
6249
6249
  /**
6250
6250
  * <p>The ID of the Amazon Web Services account for which to return license recommendations.</p>
6251
6251
  * <p>If your account is the management account of an organization, use this parameter to
@@ -6253,7 +6253,7 @@ export interface GetLicenseRecommendationsRequest {
6253
6253
  * <p>Only one account ID can be specified per request.</p>
6254
6254
  * @public
6255
6255
  */
6256
- accountIds?: string[];
6256
+ accountIds?: string[] | undefined;
6257
6257
  }
6258
6258
  /**
6259
6259
  * @public
@@ -6316,14 +6316,14 @@ export interface MetricSource {
6316
6316
  * </p>
6317
6317
  * @public
6318
6318
  */
6319
- provider?: MetricSourceProvider;
6319
+ provider?: MetricSourceProvider | undefined;
6320
6320
  /**
6321
6321
  * <p>
6322
6322
  * The ARN of the metric source provider.
6323
6323
  * </p>
6324
6324
  * @public
6325
6325
  */
6326
- providerArn?: string;
6326
+ providerArn?: string | undefined;
6327
6327
  }
6328
6328
  /**
6329
6329
  * <p>
@@ -6338,56 +6338,56 @@ export interface LicenseConfiguration {
6338
6338
  * </p>
6339
6339
  * @public
6340
6340
  */
6341
- numberOfCores?: number;
6341
+ numberOfCores?: number | undefined;
6342
6342
  /**
6343
6343
  * <p>
6344
6344
  * The instance type used in the license.
6345
6345
  * </p>
6346
6346
  * @public
6347
6347
  */
6348
- instanceType?: string;
6348
+ instanceType?: string | undefined;
6349
6349
  /**
6350
6350
  * <p>
6351
6351
  * The operating system of the instance.
6352
6352
  * </p>
6353
6353
  * @public
6354
6354
  */
6355
- operatingSystem?: string;
6355
+ operatingSystem?: string | undefined;
6356
6356
  /**
6357
6357
  * <p>
6358
6358
  * The edition of the license for the application that runs on the instance.
6359
6359
  * </p>
6360
6360
  * @public
6361
6361
  */
6362
- licenseEdition?: LicenseEdition;
6362
+ licenseEdition?: LicenseEdition | undefined;
6363
6363
  /**
6364
6364
  * <p>
6365
6365
  * The name of the license for the application that runs on the instance.
6366
6366
  * </p>
6367
6367
  * @public
6368
6368
  */
6369
- licenseName?: LicenseName;
6369
+ licenseName?: LicenseName | undefined;
6370
6370
  /**
6371
6371
  * <p>
6372
6372
  * The license type associated with the instance.
6373
6373
  * </p>
6374
6374
  * @public
6375
6375
  */
6376
- licenseModel?: LicenseModel;
6376
+ licenseModel?: LicenseModel | undefined;
6377
6377
  /**
6378
6378
  * <p>
6379
6379
  * The version of the license for the application that runs on the instance.
6380
6380
  * </p>
6381
6381
  * @public
6382
6382
  */
6383
- licenseVersion?: string;
6383
+ licenseVersion?: string | undefined;
6384
6384
  /**
6385
6385
  * <p>
6386
6386
  * The list of metric sources required to generate recommendations for commercial software licenses.
6387
6387
  * </p>
6388
6388
  * @public
6389
6389
  */
6390
- metricsSource?: MetricSource[];
6390
+ metricsSource?: MetricSource[] | undefined;
6391
6391
  }
6392
6392
  /**
6393
6393
  * @public
@@ -6432,28 +6432,28 @@ export interface LicenseRecommendationOption {
6432
6432
  * </p>
6433
6433
  * @public
6434
6434
  */
6435
- rank?: number;
6435
+ rank?: number | undefined;
6436
6436
  /**
6437
6437
  * <p>
6438
6438
  * The operating system of a license recommendation option.
6439
6439
  * </p>
6440
6440
  * @public
6441
6441
  */
6442
- operatingSystem?: string;
6442
+ operatingSystem?: string | undefined;
6443
6443
  /**
6444
6444
  * <p>
6445
6445
  * The recommended edition of the license for the application that runs on the instance.
6446
6446
  * </p>
6447
6447
  * @public
6448
6448
  */
6449
- licenseEdition?: LicenseEdition;
6449
+ licenseEdition?: LicenseEdition | undefined;
6450
6450
  /**
6451
6451
  * <p>
6452
6452
  * The recommended license type associated with the instance.
6453
6453
  * </p>
6454
6454
  * @public
6455
6455
  */
6456
- licenseModel?: LicenseModel;
6456
+ licenseModel?: LicenseModel | undefined;
6457
6457
  /**
6458
6458
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
6459
6459
  * the recommendation option of an individual resource.</p>
@@ -6473,7 +6473,7 @@ export interface LicenseRecommendationOption {
6473
6473
  * </important>
6474
6474
  * @public
6475
6475
  */
6476
- savingsOpportunity?: SavingsOpportunity;
6476
+ savingsOpportunity?: SavingsOpportunity | undefined;
6477
6477
  }
6478
6478
  /**
6479
6479
  * <p>
@@ -6488,35 +6488,35 @@ export interface LicenseRecommendation {
6488
6488
  * </p>
6489
6489
  * @public
6490
6490
  */
6491
- resourceArn?: string;
6491
+ resourceArn?: string | undefined;
6492
6492
  /**
6493
6493
  * <p>
6494
6494
  * The Amazon Web Services account ID of the license.
6495
6495
  * </p>
6496
6496
  * @public
6497
6497
  */
6498
- accountId?: string;
6498
+ accountId?: string | undefined;
6499
6499
  /**
6500
6500
  * <p>
6501
6501
  * An object that describes the current configuration of an instance that runs on a license.
6502
6502
  * </p>
6503
6503
  * @public
6504
6504
  */
6505
- currentLicenseConfiguration?: LicenseConfiguration;
6505
+ currentLicenseConfiguration?: LicenseConfiguration | undefined;
6506
6506
  /**
6507
6507
  * <p>
6508
6508
  * The number of days for which utilization metrics were analyzed for an instance that runs on a license.
6509
6509
  * </p>
6510
6510
  * @public
6511
6511
  */
6512
- lookbackPeriodInDays?: number;
6512
+ lookbackPeriodInDays?: number | undefined;
6513
6513
  /**
6514
6514
  * <p>
6515
6515
  * The timestamp of when the license recommendation was last generated.
6516
6516
  * </p>
6517
6517
  * @public
6518
6518
  */
6519
- lastRefreshTimestamp?: Date;
6519
+ lastRefreshTimestamp?: Date | undefined;
6520
6520
  /**
6521
6521
  * <p>
6522
6522
  * The finding classification for an instance that runs on a license.
@@ -6542,7 +6542,7 @@ export interface LicenseRecommendation {
6542
6542
  * </ul>
6543
6543
  * @public
6544
6544
  */
6545
- finding?: LicenseFinding;
6545
+ finding?: LicenseFinding | undefined;
6546
6546
  /**
6547
6547
  * <p>
6548
6548
  * The reason for the finding classification for an instance that runs on a license.
@@ -6572,21 +6572,21 @@ export interface LicenseRecommendation {
6572
6572
  * </ul>
6573
6573
  * @public
6574
6574
  */
6575
- findingReasonCodes?: LicenseFindingReasonCode[];
6575
+ findingReasonCodes?: LicenseFindingReasonCode[] | undefined;
6576
6576
  /**
6577
6577
  * <p>
6578
6578
  * An array of objects that describe the license recommendation options.
6579
6579
  * </p>
6580
6580
  * @public
6581
6581
  */
6582
- licenseRecommendationOptions?: LicenseRecommendationOption[];
6582
+ licenseRecommendationOptions?: LicenseRecommendationOption[] | undefined;
6583
6583
  /**
6584
6584
  * <p>
6585
6585
  * A list of tags assigned to an EC2 instance.
6586
6586
  * </p>
6587
6587
  * @public
6588
6588
  */
6589
- tags?: Tag[];
6589
+ tags?: Tag[] | undefined;
6590
6590
  }
6591
6591
  /**
6592
6592
  * @public
@@ -6598,21 +6598,21 @@ export interface GetLicenseRecommendationsResponse {
6598
6598
  * </p>
6599
6599
  * @public
6600
6600
  */
6601
- nextToken?: string;
6601
+ nextToken?: string | undefined;
6602
6602
  /**
6603
6603
  * <p>
6604
6604
  * An array of objects that describe license recommendations.
6605
6605
  * </p>
6606
6606
  * @public
6607
6607
  */
6608
- licenseRecommendations?: LicenseRecommendation[];
6608
+ licenseRecommendations?: LicenseRecommendation[] | undefined;
6609
6609
  /**
6610
6610
  * <p>
6611
6611
  * An array of objects that describe errors of the request.
6612
6612
  * </p>
6613
6613
  * @public
6614
6614
  */
6615
- errors?: GetRecommendationError[];
6615
+ errors?: GetRecommendationError[] | undefined;
6616
6616
  }
6617
6617
  /**
6618
6618
  * @public
@@ -6663,7 +6663,7 @@ export interface GetRDSDatabaseRecommendationProjectedMetricsRequest {
6663
6663
  * <p>Describes the recommendation preferences to return in the response of a <a>GetAutoScalingGroupRecommendations</a>, <a>GetEC2InstanceRecommendations</a>, <a>GetEC2RecommendationProjectedMetrics</a>, <a>GetRDSDatabaseRecommendations</a>, and <a>GetRDSDatabaseRecommendationProjectedMetrics</a> request.</p>
6664
6664
  * @public
6665
6665
  */
6666
- recommendationPreferences?: RecommendationPreferences;
6666
+ recommendationPreferences?: RecommendationPreferences | undefined;
6667
6667
  }
6668
6668
  /**
6669
6669
  * @public
@@ -6703,21 +6703,21 @@ export interface RDSDatabaseProjectedMetric {
6703
6703
  * </p>
6704
6704
  * @public
6705
6705
  */
6706
- name?: RDSDBMetricName;
6706
+ name?: RDSDBMetricName | undefined;
6707
6707
  /**
6708
6708
  * <p>
6709
6709
  * The timestamps of the projected metric.
6710
6710
  * </p>
6711
6711
  * @public
6712
6712
  */
6713
- timestamps?: Date[];
6713
+ timestamps?: Date[] | undefined;
6714
6714
  /**
6715
6715
  * <p>
6716
6716
  * The values for the projected metric.
6717
6717
  * </p>
6718
6718
  * @public
6719
6719
  */
6720
- values?: number[];
6720
+ values?: number[] | undefined;
6721
6721
  }
6722
6722
  /**
6723
6723
  * <p>
@@ -6736,21 +6736,21 @@ export interface RDSDatabaseRecommendedOptionProjectedMetric {
6736
6736
  * </p>
6737
6737
  * @public
6738
6738
  */
6739
- recommendedDBInstanceClass?: string;
6739
+ recommendedDBInstanceClass?: string | undefined;
6740
6740
  /**
6741
6741
  * <p>
6742
6742
  * The rank identifier of the RDS instance recommendation option.
6743
6743
  * </p>
6744
6744
  * @public
6745
6745
  */
6746
- rank?: number;
6746
+ rank?: number | undefined;
6747
6747
  /**
6748
6748
  * <p>
6749
6749
  * An array of objects that describe the projected metric.
6750
6750
  * </p>
6751
6751
  * @public
6752
6752
  */
6753
- projectedMetrics?: RDSDatabaseProjectedMetric[];
6753
+ projectedMetrics?: RDSDatabaseProjectedMetric[] | undefined;
6754
6754
  }
6755
6755
  /**
6756
6756
  * @public
@@ -6762,7 +6762,7 @@ export interface GetRDSDatabaseRecommendationProjectedMetricsResponse {
6762
6762
  * </p>
6763
6763
  * @public
6764
6764
  */
6765
- recommendedOptionProjectedMetrics?: RDSDatabaseRecommendedOptionProjectedMetric[];
6765
+ recommendedOptionProjectedMetrics?: RDSDatabaseRecommendedOptionProjectedMetric[] | undefined;
6766
6766
  }
6767
6767
  /**
6768
6768
  * @public
@@ -6784,14 +6784,14 @@ export interface GetRDSDatabaseRecommendationsRequest {
6784
6784
  * </p>
6785
6785
  * @public
6786
6786
  */
6787
- resourceArns?: string[];
6787
+ resourceArns?: string[] | undefined;
6788
6788
  /**
6789
6789
  * <p>
6790
6790
  * The token to advance to the next page of Amazon RDS recommendations.
6791
6791
  * </p>
6792
6792
  * @public
6793
6793
  */
6794
- nextToken?: string;
6794
+ nextToken?: string | undefined;
6795
6795
  /**
6796
6796
  * <p>The maximum number of Amazon RDS recommendations to return with a single
6797
6797
  * request.</p>
@@ -6799,14 +6799,14 @@ export interface GetRDSDatabaseRecommendationsRequest {
6799
6799
  * <code>nextToken</code> value.</p>
6800
6800
  * @public
6801
6801
  */
6802
- maxResults?: number;
6802
+ maxResults?: number | undefined;
6803
6803
  /**
6804
6804
  * <p>
6805
6805
  * An array of objects to specify a filter that returns a more specific list of Amazon RDS recommendations.
6806
6806
  * </p>
6807
6807
  * @public
6808
6808
  */
6809
- filters?: RDSDBRecommendationFilter[];
6809
+ filters?: RDSDBRecommendationFilter[] | undefined;
6810
6810
  /**
6811
6811
  * <p>
6812
6812
  * Return the Amazon RDS recommendations to the specified Amazon Web Services account IDs.
@@ -6817,12 +6817,12 @@ export interface GetRDSDatabaseRecommendationsRequest {
6817
6817
  * <p>You can only specify one account ID per request.</p>
6818
6818
  * @public
6819
6819
  */
6820
- accountIds?: string[];
6820
+ accountIds?: string[] | undefined;
6821
6821
  /**
6822
6822
  * <p>Describes the recommendation preferences to return in the response of a <a>GetAutoScalingGroupRecommendations</a>, <a>GetEC2InstanceRecommendations</a>, <a>GetEC2RecommendationProjectedMetrics</a>, <a>GetRDSDatabaseRecommendations</a>, and <a>GetRDSDatabaseRecommendationProjectedMetrics</a> request.</p>
6823
6823
  * @public
6824
6824
  */
6825
- recommendationPreferences?: RecommendationPreferences;
6825
+ recommendationPreferences?: RecommendationPreferences | undefined;
6826
6826
  }
6827
6827
  /**
6828
6828
  * <p>
@@ -6837,35 +6837,35 @@ export interface DBStorageConfiguration {
6837
6837
  * </p>
6838
6838
  * @public
6839
6839
  */
6840
- storageType?: string;
6840
+ storageType?: string | undefined;
6841
6841
  /**
6842
6842
  * <p>
6843
6843
  * The size of the RDS storage in gigabytes (GB).
6844
6844
  * </p>
6845
6845
  * @public
6846
6846
  */
6847
- allocatedStorage?: number;
6847
+ allocatedStorage?: number | undefined;
6848
6848
  /**
6849
6849
  * <p>
6850
6850
  * The provisioned IOPs of the RDS storage.
6851
6851
  * </p>
6852
6852
  * @public
6853
6853
  */
6854
- iops?: number;
6854
+ iops?: number | undefined;
6855
6855
  /**
6856
6856
  * <p>
6857
6857
  * The maximum limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the RDS instance.
6858
6858
  * </p>
6859
6859
  * @public
6860
6860
  */
6861
- maxAllocatedStorage?: number;
6861
+ maxAllocatedStorage?: number | undefined;
6862
6862
  /**
6863
6863
  * <p>
6864
6864
  * The storage throughput of the RDS storage.
6865
6865
  * </p>
6866
6866
  * @public
6867
6867
  */
6868
- storageThroughput?: number;
6868
+ storageThroughput?: number | undefined;
6869
6869
  }
6870
6870
  /**
6871
6871
  * @public
@@ -6893,7 +6893,7 @@ export interface RDSSavingsEstimationMode {
6893
6893
  * </p>
6894
6894
  * @public
6895
6895
  */
6896
- source?: RDSSavingsEstimationModeSource;
6896
+ source?: RDSSavingsEstimationModeSource | undefined;
6897
6897
  }
6898
6898
  /**
6899
6899
  * <p>
@@ -6908,7 +6908,7 @@ export interface RDSEffectiveRecommendationPreferences {
6908
6908
  * </p>
6909
6909
  * @public
6910
6910
  */
6911
- cpuVendorArchitectures?: CpuVendorArchitecture[];
6911
+ cpuVendorArchitectures?: CpuVendorArchitecture[] | undefined;
6912
6912
  /**
6913
6913
  * <p>Describes the activation status of the enhanced infrastructure metrics
6914
6914
  * preference.
@@ -6923,21 +6923,21 @@ export interface RDSEffectiveRecommendationPreferences {
6923
6923
  * </p>
6924
6924
  * @public
6925
6925
  */
6926
- enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics;
6926
+ enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | undefined;
6927
6927
  /**
6928
6928
  * <p>
6929
6929
  * The number of days the utilization metrics of the Amazon RDS are analyzed.
6930
6930
  * </p>
6931
6931
  * @public
6932
6932
  */
6933
- lookBackPeriod?: LookBackPeriodPreference;
6933
+ lookBackPeriod?: LookBackPeriodPreference | undefined;
6934
6934
  /**
6935
6935
  * <p>
6936
6936
  * Describes the savings estimation mode preference applied for calculating savings opportunity for Amazon RDS.
6937
6937
  * </p>
6938
6938
  * @public
6939
6939
  */
6940
- savingsEstimationMode?: RDSSavingsEstimationMode;
6940
+ savingsEstimationMode?: RDSSavingsEstimationMode | undefined;
6941
6941
  }
6942
6942
  /**
6943
6943
  * @public
@@ -7013,7 +7013,7 @@ export interface RDSDBUtilizationMetric {
7013
7013
  * </p>
7014
7014
  * @public
7015
7015
  */
7016
- name?: RDSDBMetricName;
7016
+ name?: RDSDBMetricName | undefined;
7017
7017
  /**
7018
7018
  * <p>
7019
7019
  * The statistic of the utilization metric.
@@ -7031,14 +7031,14 @@ export interface RDSDBUtilizationMetric {
7031
7031
  * User Guide</a>.</p>
7032
7032
  * @public
7033
7033
  */
7034
- statistic?: RDSDBMetricStatistic;
7034
+ statistic?: RDSDBMetricStatistic | undefined;
7035
7035
  /**
7036
7036
  * <p>
7037
7037
  * The value of the utilization metric.
7038
7038
  * </p>
7039
7039
  * @public
7040
7040
  */
7041
- value?: number;
7041
+ value?: number | undefined;
7042
7042
  }
7043
7043
  /**
7044
7044
  * <p>
@@ -7055,14 +7055,14 @@ export interface RDSInstanceEstimatedMonthlySavings {
7055
7055
  * </p>
7056
7056
  * @public
7057
7057
  */
7058
- currency?: Currency;
7058
+ currency?: Currency | undefined;
7059
7059
  /**
7060
7060
  * <p>
7061
7061
  * The value of the estimated monthly savings for Amazon RDS instances.
7062
7062
  * </p>
7063
7063
  * @public
7064
7064
  */
7065
- value?: number;
7065
+ value?: number | undefined;
7066
7066
  }
7067
7067
  /**
7068
7068
  * <p>
@@ -7082,7 +7082,7 @@ export interface RDSInstanceSavingsOpportunityAfterDiscounts {
7082
7082
  * </p>
7083
7083
  * @public
7084
7084
  */
7085
- savingsOpportunityPercentage?: number;
7085
+ savingsOpportunityPercentage?: number | undefined;
7086
7086
  /**
7087
7087
  * <p>
7088
7088
  * The estimated monthly savings possible by adopting Compute Optimizer’s Amazon RDS instance recommendations.
@@ -7090,7 +7090,7 @@ export interface RDSInstanceSavingsOpportunityAfterDiscounts {
7090
7090
  * </p>
7091
7091
  * @public
7092
7092
  */
7093
- estimatedMonthlySavings?: RDSInstanceEstimatedMonthlySavings;
7093
+ estimatedMonthlySavings?: RDSInstanceEstimatedMonthlySavings | undefined;
7094
7094
  }
7095
7095
  /**
7096
7096
  * <p>
@@ -7105,28 +7105,28 @@ export interface RDSDBInstanceRecommendationOption {
7105
7105
  * </p>
7106
7106
  * @public
7107
7107
  */
7108
- dbInstanceClass?: string;
7108
+ dbInstanceClass?: string | undefined;
7109
7109
  /**
7110
7110
  * <p>
7111
7111
  * An array of objects that describe the projected utilization metrics of the RDS instance recommendation option.
7112
7112
  * </p>
7113
7113
  * @public
7114
7114
  */
7115
- projectedUtilizationMetrics?: RDSDBUtilizationMetric[];
7115
+ projectedUtilizationMetrics?: RDSDBUtilizationMetric[] | undefined;
7116
7116
  /**
7117
7117
  * <p>
7118
7118
  * The performance risk of the RDS instance recommendation option.
7119
7119
  * </p>
7120
7120
  * @public
7121
7121
  */
7122
- performanceRisk?: number;
7122
+ performanceRisk?: number | undefined;
7123
7123
  /**
7124
7124
  * <p>
7125
7125
  * The rank identifier of the RDS instance recommendation option.
7126
7126
  * </p>
7127
7127
  * @public
7128
7128
  */
7129
- rank?: number;
7129
+ rank?: number | undefined;
7130
7130
  /**
7131
7131
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
7132
7132
  * the recommendation option of an individual resource.</p>
@@ -7146,7 +7146,7 @@ export interface RDSDBInstanceRecommendationOption {
7146
7146
  * </important>
7147
7147
  * @public
7148
7148
  */
7149
- savingsOpportunity?: SavingsOpportunity;
7149
+ savingsOpportunity?: SavingsOpportunity | undefined;
7150
7150
  /**
7151
7151
  * <p>
7152
7152
  * Describes the savings opportunity for Amazon RDS recommendations or for the recommendation option.
@@ -7155,7 +7155,7 @@ export interface RDSDBInstanceRecommendationOption {
7155
7155
  * You can achieve this by implementing a given Compute Optimizer recommendation.</p>
7156
7156
  * @public
7157
7157
  */
7158
- savingsOpportunityAfterDiscounts?: RDSInstanceSavingsOpportunityAfterDiscounts;
7158
+ savingsOpportunityAfterDiscounts?: RDSInstanceSavingsOpportunityAfterDiscounts | undefined;
7159
7159
  }
7160
7160
  /**
7161
7161
  * @public
@@ -7199,14 +7199,14 @@ export interface RDSStorageEstimatedMonthlySavings {
7199
7199
  * </p>
7200
7200
  * @public
7201
7201
  */
7202
- currency?: Currency;
7202
+ currency?: Currency | undefined;
7203
7203
  /**
7204
7204
  * <p>
7205
7205
  * The value of the estimated monthly savings for Amazon RDS storage.
7206
7206
  * </p>
7207
7207
  * @public
7208
7208
  */
7209
- value?: number;
7209
+ value?: number | undefined;
7210
7210
  }
7211
7211
  /**
7212
7212
  * <p>
@@ -7226,14 +7226,14 @@ export interface RDSStorageSavingsOpportunityAfterDiscounts {
7226
7226
  * </p>
7227
7227
  * @public
7228
7228
  */
7229
- savingsOpportunityPercentage?: number;
7229
+ savingsOpportunityPercentage?: number | undefined;
7230
7230
  /**
7231
7231
  * <p>
7232
7232
  * The estimated monthly savings possible by adopting Compute Optimizer’s Amazon RDS storage recommendations. This includes any applicable Savings Plans discounts.
7233
7233
  * </p>
7234
7234
  * @public
7235
7235
  */
7236
- estimatedMonthlySavings?: RDSStorageEstimatedMonthlySavings;
7236
+ estimatedMonthlySavings?: RDSStorageEstimatedMonthlySavings | undefined;
7237
7237
  }
7238
7238
  /**
7239
7239
  * <p>
@@ -7248,14 +7248,14 @@ export interface RDSDBStorageRecommendationOption {
7248
7248
  * </p>
7249
7249
  * @public
7250
7250
  */
7251
- storageConfiguration?: DBStorageConfiguration;
7251
+ storageConfiguration?: DBStorageConfiguration | undefined;
7252
7252
  /**
7253
7253
  * <p>
7254
7254
  * The rank identifier of the RDS storage recommendation option.
7255
7255
  * </p>
7256
7256
  * @public
7257
7257
  */
7258
- rank?: number;
7258
+ rank?: number | undefined;
7259
7259
  /**
7260
7260
  * <p>Describes the savings opportunity for recommendations of a given resource type or for
7261
7261
  * the recommendation option of an individual resource.</p>
@@ -7275,7 +7275,7 @@ export interface RDSDBStorageRecommendationOption {
7275
7275
  * </important>
7276
7276
  * @public
7277
7277
  */
7278
- savingsOpportunity?: SavingsOpportunity;
7278
+ savingsOpportunity?: SavingsOpportunity | undefined;
7279
7279
  /**
7280
7280
  * <p>
7281
7281
  * Describes the savings opportunity for Amazon RDS storage recommendations or for the recommendation option.
@@ -7286,7 +7286,7 @@ export interface RDSDBStorageRecommendationOption {
7286
7286
  * </p>
7287
7287
  * @public
7288
7288
  */
7289
- savingsOpportunityAfterDiscounts?: RDSStorageSavingsOpportunityAfterDiscounts;
7289
+ savingsOpportunityAfterDiscounts?: RDSStorageSavingsOpportunityAfterDiscounts | undefined;
7290
7290
  }
7291
7291
  /**
7292
7292
  * <p>
@@ -7307,49 +7307,49 @@ export interface RDSDBRecommendation {
7307
7307
  * </p>
7308
7308
  * @public
7309
7309
  */
7310
- resourceArn?: string;
7310
+ resourceArn?: string | undefined;
7311
7311
  /**
7312
7312
  * <p>
7313
7313
  * The Amazon Web Services account ID of the Amazon RDS.
7314
7314
  * </p>
7315
7315
  * @public
7316
7316
  */
7317
- accountId?: string;
7317
+ accountId?: string | undefined;
7318
7318
  /**
7319
7319
  * <p>
7320
7320
  * The engine of the RDS instance.
7321
7321
  * </p>
7322
7322
  * @public
7323
7323
  */
7324
- engine?: string;
7324
+ engine?: string | undefined;
7325
7325
  /**
7326
7326
  * <p>
7327
7327
  * The database engine version.
7328
7328
  * </p>
7329
7329
  * @public
7330
7330
  */
7331
- engineVersion?: string;
7331
+ engineVersion?: string | undefined;
7332
7332
  /**
7333
7333
  * <p>
7334
7334
  * The DB instance class of the current RDS instance.
7335
7335
  * </p>
7336
7336
  * @public
7337
7337
  */
7338
- currentDBInstanceClass?: string;
7338
+ currentDBInstanceClass?: string | undefined;
7339
7339
  /**
7340
7340
  * <p>
7341
7341
  * The configuration of the current RDS storage.
7342
7342
  * </p>
7343
7343
  * @public
7344
7344
  */
7345
- currentStorageConfiguration?: DBStorageConfiguration;
7345
+ currentStorageConfiguration?: DBStorageConfiguration | undefined;
7346
7346
  /**
7347
7347
  * <p>
7348
7348
  * This indicates if the RDS instance is idle or not.
7349
7349
  * </p>
7350
7350
  * @public
7351
7351
  */
7352
- idle?: Idle;
7352
+ idle?: Idle | undefined;
7353
7353
  /**
7354
7354
  * <p>
7355
7355
  * The finding classification of an Amazon RDS instance.
@@ -7383,7 +7383,7 @@ export interface RDSDBRecommendation {
7383
7383
  * </ul>
7384
7384
  * @public
7385
7385
  */
7386
- instanceFinding?: RDSInstanceFinding;
7386
+ instanceFinding?: RDSInstanceFinding | undefined;
7387
7387
  /**
7388
7388
  * <p>
7389
7389
  * The finding classification of Amazon RDS storage.
@@ -7417,70 +7417,70 @@ export interface RDSDBRecommendation {
7417
7417
  * </ul>
7418
7418
  * @public
7419
7419
  */
7420
- storageFinding?: RDSStorageFinding;
7420
+ storageFinding?: RDSStorageFinding | undefined;
7421
7421
  /**
7422
7422
  * <p>
7423
7423
  * The reason for the finding classification of an Amazon RDS instance.
7424
7424
  * </p>
7425
7425
  * @public
7426
7426
  */
7427
- instanceFindingReasonCodes?: RDSInstanceFindingReasonCode[];
7427
+ instanceFindingReasonCodes?: RDSInstanceFindingReasonCode[] | undefined;
7428
7428
  /**
7429
7429
  * <p>
7430
7430
  * The reason for the finding classification of Amazon RDS storage.
7431
7431
  * </p>
7432
7432
  * @public
7433
7433
  */
7434
- storageFindingReasonCodes?: RDSStorageFindingReasonCode[];
7434
+ storageFindingReasonCodes?: RDSStorageFindingReasonCode[] | undefined;
7435
7435
  /**
7436
7436
  * <p>
7437
7437
  * An array of objects that describe the recommendation options for the Amazon RDS instance.
7438
7438
  * </p>
7439
7439
  * @public
7440
7440
  */
7441
- instanceRecommendationOptions?: RDSDBInstanceRecommendationOption[];
7441
+ instanceRecommendationOptions?: RDSDBInstanceRecommendationOption[] | undefined;
7442
7442
  /**
7443
7443
  * <p>
7444
7444
  * An array of objects that describe the recommendation options for Amazon RDS storage.
7445
7445
  * </p>
7446
7446
  * @public
7447
7447
  */
7448
- storageRecommendationOptions?: RDSDBStorageRecommendationOption[];
7448
+ storageRecommendationOptions?: RDSDBStorageRecommendationOption[] | undefined;
7449
7449
  /**
7450
7450
  * <p>
7451
7451
  * An array of objects that describe the utilization metrics of the Amazon RDS.
7452
7452
  * </p>
7453
7453
  * @public
7454
7454
  */
7455
- utilizationMetrics?: RDSDBUtilizationMetric[];
7455
+ utilizationMetrics?: RDSDBUtilizationMetric[] | undefined;
7456
7456
  /**
7457
7457
  * <p>
7458
7458
  * Describes the effective recommendation preferences for Amazon RDS.
7459
7459
  * </p>
7460
7460
  * @public
7461
7461
  */
7462
- effectiveRecommendationPreferences?: RDSEffectiveRecommendationPreferences;
7462
+ effectiveRecommendationPreferences?: RDSEffectiveRecommendationPreferences | undefined;
7463
7463
  /**
7464
7464
  * <p>
7465
7465
  * The number of days the Amazon RDS utilization metrics were analyzed.
7466
7466
  * </p>
7467
7467
  * @public
7468
7468
  */
7469
- lookbackPeriodInDays?: number;
7469
+ lookbackPeriodInDays?: number | undefined;
7470
7470
  /**
7471
7471
  * <p>
7472
7472
  * The timestamp of when the Amazon RDS recommendation was last generated.
7473
7473
  * </p>
7474
7474
  * @public
7475
7475
  */
7476
- lastRefreshTimestamp?: Date;
7476
+ lastRefreshTimestamp?: Date | undefined;
7477
7477
  /**
7478
7478
  * <p>
7479
7479
  * A list of tags assigned to your Amazon RDS recommendations.
7480
7480
  * </p>
7481
7481
  * @public
7482
7482
  */
7483
- tags?: Tag[];
7483
+ tags?: Tag[] | undefined;
7484
7484
  }
7485
7485
  /**
7486
7486
  * @public
@@ -7492,21 +7492,21 @@ export interface GetRDSDatabaseRecommendationsResponse {
7492
7492
  * </p>
7493
7493
  * @public
7494
7494
  */
7495
- nextToken?: string;
7495
+ nextToken?: string | undefined;
7496
7496
  /**
7497
7497
  * <p>
7498
7498
  * An array of objects that describe the Amazon RDS recommendations.
7499
7499
  * </p>
7500
7500
  * @public
7501
7501
  */
7502
- rdsDBRecommendations?: RDSDBRecommendation[];
7502
+ rdsDBRecommendations?: RDSDBRecommendation[] | undefined;
7503
7503
  /**
7504
7504
  * <p>
7505
7505
  * An array of objects that describe errors of the request.
7506
7506
  * </p>
7507
7507
  * @public
7508
7508
  */
7509
- errors?: GetRecommendationError[];
7509
+ errors?: GetRecommendationError[] | undefined;
7510
7510
  }
7511
7511
  /**
7512
7512
  * @public
@@ -7530,12 +7530,12 @@ export interface GetRecommendationPreferencesRequest {
7530
7530
  * Guide</i>.</p>
7531
7531
  * @public
7532
7532
  */
7533
- scope?: Scope;
7533
+ scope?: Scope | undefined;
7534
7534
  /**
7535
7535
  * <p>The token to advance to the next page of recommendation preferences.</p>
7536
7536
  * @public
7537
7537
  */
7538
- nextToken?: string;
7538
+ nextToken?: string | undefined;
7539
7539
  /**
7540
7540
  * <p>The maximum number of recommendation preferences to return with a single
7541
7541
  * request.</p>
@@ -7543,7 +7543,7 @@ export interface GetRecommendationPreferencesRequest {
7543
7543
  * <code>nextToken</code> value.</p>
7544
7544
  * @public
7545
7545
  */
7546
- maxResults?: number;
7546
+ maxResults?: number | undefined;
7547
7547
  }
7548
7548
  /**
7549
7549
  * @public
@@ -7571,7 +7571,7 @@ export interface RecommendationPreferencesDetail {
7571
7571
  * Guide</i>.</p>
7572
7572
  * @public
7573
7573
  */
7574
- scope?: Scope;
7574
+ scope?: Scope | undefined;
7575
7575
  /**
7576
7576
  * <p>The target resource type of the recommendation preference to create.</p>
7577
7577
  * <p>The <code>Ec2Instance</code> option encompasses standalone instances and instances
@@ -7579,7 +7579,7 @@ export interface RecommendationPreferencesDetail {
7579
7579
  * encompasses only instances that are part of an Auto Scaling group.</p>
7580
7580
  * @public
7581
7581
  */
7582
- resourceType?: ResourceType;
7582
+ resourceType?: ResourceType | undefined;
7583
7583
  /**
7584
7584
  * <p>The status of the enhanced infrastructure metrics recommendation preference.</p>
7585
7585
  * <p>When the recommendations page is refreshed, a status of <code>Active</code> confirms
@@ -7591,7 +7591,7 @@ export interface RecommendationPreferencesDetail {
7591
7591
  * Guide</i>.</p>
7592
7592
  * @public
7593
7593
  */
7594
- enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics;
7594
+ enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | undefined;
7595
7595
  /**
7596
7596
  * <p>The status of the inferred workload types recommendation preference.</p>
7597
7597
  * <p>When the recommendations page is refreshed, a status of <code>Active</code> confirms
@@ -7600,7 +7600,7 @@ export interface RecommendationPreferencesDetail {
7600
7600
  * recommendations.</p>
7601
7601
  * @public
7602
7602
  */
7603
- inferredWorkloadTypes?: InferredWorkloadTypesPreference;
7603
+ inferredWorkloadTypes?: InferredWorkloadTypesPreference | undefined;
7604
7604
  /**
7605
7605
  * <p> An object that describes the external metrics recommendation preference. </p>
7606
7606
  * <p> If the preference is applied in the latest recommendation refresh, an object with a
@@ -7608,7 +7608,7 @@ export interface RecommendationPreferencesDetail {
7608
7608
  * to the recommendations already, then this object doesn't appear in the response. </p>
7609
7609
  * @public
7610
7610
  */
7611
- externalMetricsPreference?: ExternalMetricsPreference;
7611
+ externalMetricsPreference?: ExternalMetricsPreference | undefined;
7612
7612
  /**
7613
7613
  * <p>
7614
7614
  * The preference to control the number of days the utilization metrics of the Amazon Web Services resource are analyzed.
@@ -7616,7 +7616,7 @@ export interface RecommendationPreferencesDetail {
7616
7616
  * </p>
7617
7617
  * @public
7618
7618
  */
7619
- lookBackPeriod?: LookBackPeriodPreference;
7619
+ lookBackPeriod?: LookBackPeriodPreference | undefined;
7620
7620
  /**
7621
7621
  * <p>
7622
7622
  * The preference to control the resource’s CPU utilization threshold, CPU utilization headroom, and memory utilization headroom.
@@ -7627,7 +7627,7 @@ export interface RecommendationPreferencesDetail {
7627
7627
  * </note>
7628
7628
  * @public
7629
7629
  */
7630
- utilizationPreferences?: UtilizationPreference[];
7630
+ utilizationPreferences?: UtilizationPreference[] | undefined;
7631
7631
  /**
7632
7632
  * <p>
7633
7633
  * The preference to control which resource type values are considered when generating rightsizing recommendations.
@@ -7636,7 +7636,7 @@ export interface RecommendationPreferencesDetail {
7636
7636
  * </p>
7637
7637
  * @public
7638
7638
  */
7639
- preferredResources?: EffectivePreferredResource[];
7639
+ preferredResources?: EffectivePreferredResource[] | undefined;
7640
7640
  /**
7641
7641
  * <p>
7642
7642
  * Describes the savings estimation mode used for calculating savings opportunity.
@@ -7644,7 +7644,7 @@ export interface RecommendationPreferencesDetail {
7644
7644
  * <p>Only the account manager or delegated administrator of your organization can activate this preference.</p>
7645
7645
  * @public
7646
7646
  */
7647
- savingsEstimationMode?: SavingsEstimationMode;
7647
+ savingsEstimationMode?: SavingsEstimationMode | undefined;
7648
7648
  }
7649
7649
  /**
7650
7650
  * @public
@@ -7656,12 +7656,12 @@ export interface GetRecommendationPreferencesResponse {
7656
7656
  * return.</p>
7657
7657
  * @public
7658
7658
  */
7659
- nextToken?: string;
7659
+ nextToken?: string | undefined;
7660
7660
  /**
7661
7661
  * <p>An array of objects that describe recommendation preferences.</p>
7662
7662
  * @public
7663
7663
  */
7664
- recommendationPreferencesDetails?: RecommendationPreferencesDetail[];
7664
+ recommendationPreferencesDetails?: RecommendationPreferencesDetail[] | undefined;
7665
7665
  }
7666
7666
  /**
7667
7667
  * @public
@@ -7675,19 +7675,19 @@ export interface GetRecommendationSummariesRequest {
7675
7675
  * <p>Only one account ID can be specified per request.</p>
7676
7676
  * @public
7677
7677
  */
7678
- accountIds?: string[];
7678
+ accountIds?: string[] | undefined;
7679
7679
  /**
7680
7680
  * <p>The token to advance to the next page of recommendation summaries.</p>
7681
7681
  * @public
7682
7682
  */
7683
- nextToken?: string;
7683
+ nextToken?: string | undefined;
7684
7684
  /**
7685
7685
  * <p>The maximum number of recommendation summaries to return with a single request.</p>
7686
7686
  * <p>To retrieve the remaining results, make another request with the returned
7687
7687
  * <code>nextToken</code> value.</p>
7688
7688
  * @public
7689
7689
  */
7690
- maxResults?: number;
7690
+ maxResults?: number | undefined;
7691
7691
  }
7692
7692
  /**
7693
7693
  * <p>Describes the performance risk ratings for a given resource type.</p>
@@ -7701,23 +7701,23 @@ export interface CurrentPerformanceRiskRatings {
7701
7701
  * <p>A count of the applicable resource types with a high performance risk rating.</p>
7702
7702
  * @public
7703
7703
  */
7704
- high?: number;
7704
+ high?: number | undefined;
7705
7705
  /**
7706
7706
  * <p>A count of the applicable resource types with a medium performance risk rating.</p>
7707
7707
  * @public
7708
7708
  */
7709
- medium?: number;
7709
+ medium?: number | undefined;
7710
7710
  /**
7711
7711
  * <p>A count of the applicable resource types with a low performance risk rating.</p>
7712
7712
  * @public
7713
7713
  */
7714
- low?: number;
7714
+ low?: number | undefined;
7715
7715
  /**
7716
7716
  * <p>A count of the applicable resource types with a very low performance risk
7717
7717
  * rating.</p>
7718
7718
  * @public
7719
7719
  */
7720
- veryLow?: number;
7720
+ veryLow?: number | undefined;
7721
7721
  }
7722
7722
  /**
7723
7723
  * <p>
@@ -7782,13 +7782,13 @@ export interface InferredWorkloadSaving {
7782
7782
  * </ul>
7783
7783
  * @public
7784
7784
  */
7785
- inferredWorkloadTypes?: InferredWorkloadType[];
7785
+ inferredWorkloadTypes?: InferredWorkloadType[] | undefined;
7786
7786
  /**
7787
7787
  * <p>An object that describes the estimated monthly savings amount possible by adopting Compute Optimizer recommendations for a given
7788
7788
  * resource. This is based on the On-Demand instance pricing.</p>
7789
7789
  * @public
7790
7790
  */
7791
- estimatedMonthlySavings?: EstimatedMonthlySavings;
7791
+ estimatedMonthlySavings?: EstimatedMonthlySavings | undefined;
7792
7792
  }
7793
7793
  /**
7794
7794
  * @public
@@ -7811,12 +7811,12 @@ export interface ReasonCodeSummary {
7811
7811
  * <p>The name of the finding reason code.</p>
7812
7812
  * @public
7813
7813
  */
7814
- name?: FindingReasonCode;
7814
+ name?: FindingReasonCode | undefined;
7815
7815
  /**
7816
7816
  * <p>The value of the finding reason code summary.</p>
7817
7817
  * @public
7818
7818
  */
7819
- value?: number;
7819
+ value?: number | undefined;
7820
7820
  }
7821
7821
  /**
7822
7822
  * <p>The summary of a recommendation.</p>
@@ -7827,17 +7827,17 @@ export interface Summary {
7827
7827
  * <p>The finding classification of the recommendation.</p>
7828
7828
  * @public
7829
7829
  */
7830
- name?: Finding;
7830
+ name?: Finding | undefined;
7831
7831
  /**
7832
7832
  * <p>The value of the recommendation summary.</p>
7833
7833
  * @public
7834
7834
  */
7835
- value?: number;
7835
+ value?: number | undefined;
7836
7836
  /**
7837
7837
  * <p>An array of objects that summarize a finding reason code.</p>
7838
7838
  * @public
7839
7839
  */
7840
- reasonCodeSummaries?: ReasonCodeSummary[];
7840
+ reasonCodeSummaries?: ReasonCodeSummary[] | undefined;
7841
7841
  }
7842
7842
  /**
7843
7843
  * <p>A summary of a recommendation.</p>
@@ -7848,29 +7848,29 @@ export interface RecommendationSummary {
7848
7848
  * <p>An array of objects that describe a recommendation summary.</p>
7849
7849
  * @public
7850
7850
  */
7851
- summaries?: Summary[];
7851
+ summaries?: Summary[] | undefined;
7852
7852
  /**
7853
7853
  * <p>The resource type that the recommendation summary applies to.</p>
7854
7854
  * @public
7855
7855
  */
7856
- recommendationResourceType?: RecommendationSourceType;
7856
+ recommendationResourceType?: RecommendationSourceType | undefined;
7857
7857
  /**
7858
7858
  * <p>The Amazon Web Services account ID of the recommendation summary.</p>
7859
7859
  * @public
7860
7860
  */
7861
- accountId?: string;
7861
+ accountId?: string | undefined;
7862
7862
  /**
7863
7863
  * <p>An object that describes the savings opportunity for a given resource type. Savings
7864
7864
  * opportunity includes the estimated monthly savings amount and percentage.</p>
7865
7865
  * @public
7866
7866
  */
7867
- savingsOpportunity?: SavingsOpportunity;
7867
+ savingsOpportunity?: SavingsOpportunity | undefined;
7868
7868
  /**
7869
7869
  * <p>An object that describes the performance risk ratings for a given resource
7870
7870
  * type.</p>
7871
7871
  * @public
7872
7872
  */
7873
- currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings;
7873
+ currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings | undefined;
7874
7874
  /**
7875
7875
  * <p>
7876
7876
  * An array of objects that describes the estimated monthly saving amounts for the instances running on the specified
@@ -7879,7 +7879,7 @@ export interface RecommendationSummary {
7879
7879
  * </p>
7880
7880
  * @public
7881
7881
  */
7882
- inferredWorkloadSavings?: InferredWorkloadSaving[];
7882
+ inferredWorkloadSavings?: InferredWorkloadSaving[] | undefined;
7883
7883
  }
7884
7884
  /**
7885
7885
  * @public
@@ -7891,12 +7891,12 @@ export interface GetRecommendationSummariesResponse {
7891
7891
  * return.</p>
7892
7892
  * @public
7893
7893
  */
7894
- nextToken?: string;
7894
+ nextToken?: string | undefined;
7895
7895
  /**
7896
7896
  * <p>An array of objects that summarize a recommendation.</p>
7897
7897
  * @public
7898
7898
  */
7899
- recommendationSummaries?: RecommendationSummary[];
7899
+ recommendationSummaries?: RecommendationSummary[] | undefined;
7900
7900
  }
7901
7901
  /**
7902
7902
  * <p>
@@ -7929,7 +7929,7 @@ export interface PreferredResource {
7929
7929
  * </note>
7930
7930
  * @public
7931
7931
  */
7932
- name?: PreferredResourceName;
7932
+ name?: PreferredResourceName | undefined;
7933
7933
  /**
7934
7934
  * <p>
7935
7935
  * The preferred resource type values to include in the recommendation candidates. You can specify the exact resource type value,
@@ -7938,7 +7938,7 @@ export interface PreferredResource {
7938
7938
  * </p>
7939
7939
  * @public
7940
7940
  */
7941
- includeList?: string[];
7941
+ includeList?: string[] | undefined;
7942
7942
  /**
7943
7943
  * <p>
7944
7944
  * The preferred resource type values to exclude from the recommendation candidates. If this isn’t specified, all supported
@@ -7946,7 +7946,7 @@ export interface PreferredResource {
7946
7946
  * </p>
7947
7947
  * @public
7948
7948
  */
7949
- excludeList?: string[];
7949
+ excludeList?: string[] | undefined;
7950
7950
  }
7951
7951
  /**
7952
7952
  * @public
@@ -7979,7 +7979,7 @@ export interface PutRecommendationPreferencesRequest {
7979
7979
  * </note>
7980
7980
  * @public
7981
7981
  */
7982
- scope?: Scope;
7982
+ scope?: Scope | undefined;
7983
7983
  /**
7984
7984
  * <p>The status of the enhanced infrastructure metrics recommendation preference to create
7985
7985
  * or update.</p>
@@ -7990,7 +7990,7 @@ export interface PutRecommendationPreferencesRequest {
7990
7990
  * Guide</i>.</p>
7991
7991
  * @public
7992
7992
  */
7993
- enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics;
7993
+ enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | undefined;
7994
7994
  /**
7995
7995
  * <p>The status of the inferred workload types recommendation preference to create or
7996
7996
  * update.</p>
@@ -8004,7 +8004,7 @@ export interface PutRecommendationPreferencesRequest {
8004
8004
  * types</a> in the <i>Compute Optimizer User Guide</i>.</p>
8005
8005
  * @public
8006
8006
  */
8007
- inferredWorkloadTypes?: InferredWorkloadTypesPreference;
8007
+ inferredWorkloadTypes?: InferredWorkloadTypesPreference | undefined;
8008
8008
  /**
8009
8009
  * <p>The provider of the external metrics recommendation preference to create or
8010
8010
  * update.</p>
@@ -8017,7 +8017,7 @@ export interface PutRecommendationPreferencesRequest {
8017
8017
  * Guide</i>.</p>
8018
8018
  * @public
8019
8019
  */
8020
- externalMetricsPreference?: ExternalMetricsPreference;
8020
+ externalMetricsPreference?: ExternalMetricsPreference | undefined;
8021
8021
  /**
8022
8022
  * <p>
8023
8023
  * The preference to control the number of days the utilization metrics of the Amazon Web Services resource are analyzed.
@@ -8037,7 +8037,7 @@ export interface PutRecommendationPreferencesRequest {
8037
8037
  * </note>
8038
8038
  * @public
8039
8039
  */
8040
- lookBackPeriod?: LookBackPeriodPreference;
8040
+ lookBackPeriod?: LookBackPeriodPreference | undefined;
8041
8041
  /**
8042
8042
  * <p>
8043
8043
  * The preference to control the resource’s CPU utilization threshold, CPU utilization headroom, and memory utilization headroom. When this
@@ -8073,7 +8073,7 @@ export interface PutRecommendationPreferencesRequest {
8073
8073
  * </note>
8074
8074
  * @public
8075
8075
  */
8076
- utilizationPreferences?: UtilizationPreference[];
8076
+ utilizationPreferences?: UtilizationPreference[] | undefined;
8077
8077
  /**
8078
8078
  * <p>
8079
8079
  * The preference to control which resource type values are considered when generating rightsizing recommendations.
@@ -8086,7 +8086,7 @@ export interface PutRecommendationPreferencesRequest {
8086
8086
  * </note>
8087
8087
  * @public
8088
8088
  */
8089
- preferredResources?: PreferredResource[];
8089
+ preferredResources?: PreferredResource[] | undefined;
8090
8090
  /**
8091
8091
  * <p>
8092
8092
  * The status of the savings estimation mode preference to create or update.
@@ -8097,7 +8097,7 @@ export interface PutRecommendationPreferencesRequest {
8097
8097
  * Savings estimation mode</a> in the <i>Compute Optimizer User Guide</i>.</p>
8098
8098
  * @public
8099
8099
  */
8100
- savingsEstimationMode?: SavingsEstimationMode;
8100
+ savingsEstimationMode?: SavingsEstimationMode | undefined;
8101
8101
  }
8102
8102
  /**
8103
8103
  * @public
@@ -8139,7 +8139,7 @@ export interface UpdateEnrollmentStatusRequest {
8139
8139
  * management account of an organization.</p>
8140
8140
  * @public
8141
8141
  */
8142
- includeMemberAccounts?: boolean;
8142
+ includeMemberAccounts?: boolean | undefined;
8143
8143
  }
8144
8144
  /**
8145
8145
  * @public
@@ -8149,12 +8149,12 @@ export interface UpdateEnrollmentStatusResponse {
8149
8149
  * <p>The enrollment status of the account.</p>
8150
8150
  * @public
8151
8151
  */
8152
- status?: Status;
8152
+ status?: Status | undefined;
8153
8153
  /**
8154
8154
  * <p>The reason for the enrollment status of the account. For example, an account might
8155
8155
  * show a status of <code>Pending</code> because member accounts of an organization require
8156
8156
  * more time to be enrolled in the service.</p>
8157
8157
  * @public
8158
8158
  */
8159
- statusReason?: string;
8159
+ statusReason?: string | undefined;
8160
8160
  }