@aws-sdk/client-compute-optimizer 3.170.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +0 -18
- package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRecommendationExportJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportEBSVolumeRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportEC2InstanceRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEBSVolumeRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEC2InstanceRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEnrollmentStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLambdaFunctionRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRecommendationSummariesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ComputeOptimizerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -329
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
@@ -15,24 +13,16 @@ export declare enum Status {
|
|
|
15
13
|
INACTIVE = "Inactive",
|
|
16
14
|
PENDING = "Pending",
|
|
17
15
|
}
|
|
18
|
-
|
|
19
16
|
export interface AccountEnrollmentStatus {
|
|
20
17
|
accountId?: string;
|
|
21
|
-
|
|
22
18
|
status?: Status | string;
|
|
23
|
-
|
|
24
19
|
statusReason?: string;
|
|
25
|
-
|
|
26
20
|
lastUpdatedTimestamp?: Date;
|
|
27
21
|
}
|
|
28
|
-
|
|
29
22
|
export interface AutoScalingGroupConfiguration {
|
|
30
23
|
desiredCapacity?: number;
|
|
31
|
-
|
|
32
24
|
minSize?: number;
|
|
33
|
-
|
|
34
25
|
maxSize?: number;
|
|
35
|
-
|
|
36
26
|
instanceType?: string;
|
|
37
27
|
}
|
|
38
28
|
export declare enum CurrentPerformanceRisk {
|
|
@@ -53,12 +43,9 @@ export declare enum InferredWorkloadTypesPreference {
|
|
|
53
43
|
ACTIVE = "Active",
|
|
54
44
|
INACTIVE = "Inactive",
|
|
55
45
|
}
|
|
56
|
-
|
|
57
46
|
export interface EffectiveRecommendationPreferences {
|
|
58
47
|
cpuVendorArchitectures?: (CpuVendorArchitecture | string)[];
|
|
59
|
-
|
|
60
48
|
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
61
|
-
|
|
62
49
|
inferredWorkloadTypes?: InferredWorkloadTypesPreference | string;
|
|
63
50
|
}
|
|
64
51
|
export declare enum Finding {
|
|
@@ -102,68 +89,43 @@ export declare enum MetricStatistic {
|
|
|
102
89
|
AVERAGE = "Average",
|
|
103
90
|
MAXIMUM = "Maximum",
|
|
104
91
|
}
|
|
105
|
-
|
|
106
92
|
export interface UtilizationMetric {
|
|
107
93
|
name?: MetricName | string;
|
|
108
|
-
|
|
109
94
|
statistic?: MetricStatistic | string;
|
|
110
|
-
|
|
111
95
|
value?: number;
|
|
112
96
|
}
|
|
113
97
|
export declare enum Currency {
|
|
114
98
|
CNY = "CNY",
|
|
115
99
|
USD = "USD",
|
|
116
100
|
}
|
|
117
|
-
|
|
118
101
|
export interface EstimatedMonthlySavings {
|
|
119
102
|
currency?: Currency | string;
|
|
120
|
-
|
|
121
103
|
value?: number;
|
|
122
104
|
}
|
|
123
|
-
|
|
124
105
|
export interface SavingsOpportunity {
|
|
125
106
|
savingsOpportunityPercentage?: number;
|
|
126
|
-
|
|
127
107
|
estimatedMonthlySavings?: EstimatedMonthlySavings;
|
|
128
108
|
}
|
|
129
|
-
|
|
130
109
|
export interface AutoScalingGroupRecommendationOption {
|
|
131
110
|
configuration?: AutoScalingGroupConfiguration;
|
|
132
|
-
|
|
133
111
|
projectedUtilizationMetrics?: UtilizationMetric[];
|
|
134
|
-
|
|
135
112
|
performanceRisk?: number;
|
|
136
|
-
|
|
137
113
|
rank?: number;
|
|
138
|
-
|
|
139
114
|
savingsOpportunity?: SavingsOpportunity;
|
|
140
|
-
|
|
141
115
|
migrationEffort?: MigrationEffort | string;
|
|
142
116
|
}
|
|
143
|
-
|
|
144
117
|
export interface AutoScalingGroupRecommendation {
|
|
145
118
|
accountId?: string;
|
|
146
|
-
|
|
147
119
|
autoScalingGroupArn?: string;
|
|
148
|
-
|
|
149
120
|
autoScalingGroupName?: string;
|
|
150
|
-
|
|
151
121
|
finding?: Finding | string;
|
|
152
|
-
|
|
153
122
|
utilizationMetrics?: UtilizationMetric[];
|
|
154
|
-
|
|
155
123
|
lookBackPeriodInDays?: number;
|
|
156
|
-
|
|
157
124
|
currentConfiguration?: AutoScalingGroupConfiguration;
|
|
158
|
-
|
|
159
125
|
recommendationOptions?: AutoScalingGroupRecommendationOption[];
|
|
160
|
-
|
|
161
126
|
lastRefreshTimestamp?: Date;
|
|
162
|
-
|
|
163
127
|
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
164
|
-
|
|
165
128
|
effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
|
|
166
|
-
|
|
167
129
|
inferredWorkloadTypes?: (InferredWorkloadType | string)[];
|
|
168
130
|
}
|
|
169
131
|
export declare enum RecommendationPreferenceName {
|
|
@@ -182,81 +144,63 @@ export declare enum ScopeName {
|
|
|
182
144
|
ORGANIZATION = "Organization",
|
|
183
145
|
RESOURCE_ARN = "ResourceArn",
|
|
184
146
|
}
|
|
185
|
-
|
|
186
147
|
export interface Scope {
|
|
187
148
|
name?: ScopeName | string;
|
|
188
|
-
|
|
189
149
|
value?: string;
|
|
190
150
|
}
|
|
191
151
|
export interface DeleteRecommendationPreferencesRequest {
|
|
192
152
|
resourceType: ResourceType | string | undefined;
|
|
193
|
-
|
|
194
153
|
scope?: Scope;
|
|
195
|
-
|
|
196
154
|
recommendationPreferenceNames:
|
|
197
155
|
| (RecommendationPreferenceName | string)[]
|
|
198
156
|
| undefined;
|
|
199
157
|
}
|
|
200
158
|
export interface DeleteRecommendationPreferencesResponse {}
|
|
201
|
-
|
|
202
159
|
export declare class InternalServerException extends __BaseException {
|
|
203
160
|
readonly name: "InternalServerException";
|
|
204
161
|
readonly $fault: "server";
|
|
205
|
-
|
|
206
162
|
constructor(
|
|
207
163
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
208
164
|
);
|
|
209
165
|
}
|
|
210
|
-
|
|
211
166
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
212
167
|
readonly name: "InvalidParameterValueException";
|
|
213
168
|
readonly $fault: "client";
|
|
214
|
-
|
|
215
169
|
constructor(
|
|
216
170
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
217
171
|
);
|
|
218
172
|
}
|
|
219
|
-
|
|
220
173
|
export declare class MissingAuthenticationToken extends __BaseException {
|
|
221
174
|
readonly name: "MissingAuthenticationToken";
|
|
222
175
|
readonly $fault: "client";
|
|
223
|
-
|
|
224
176
|
constructor(
|
|
225
177
|
opts: __ExceptionOptionType<MissingAuthenticationToken, __BaseException>
|
|
226
178
|
);
|
|
227
179
|
}
|
|
228
|
-
|
|
229
180
|
export declare class OptInRequiredException extends __BaseException {
|
|
230
181
|
readonly name: "OptInRequiredException";
|
|
231
182
|
readonly $fault: "client";
|
|
232
|
-
|
|
233
183
|
constructor(
|
|
234
184
|
opts: __ExceptionOptionType<OptInRequiredException, __BaseException>
|
|
235
185
|
);
|
|
236
186
|
}
|
|
237
|
-
|
|
238
187
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
239
188
|
readonly name: "ResourceNotFoundException";
|
|
240
189
|
readonly $fault: "client";
|
|
241
|
-
|
|
242
190
|
constructor(
|
|
243
191
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
244
192
|
);
|
|
245
193
|
}
|
|
246
|
-
|
|
247
194
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
248
195
|
readonly name: "ServiceUnavailableException";
|
|
249
196
|
readonly $fault: "server";
|
|
250
|
-
|
|
251
197
|
constructor(
|
|
252
198
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
253
199
|
);
|
|
254
200
|
}
|
|
255
|
-
|
|
256
201
|
export declare class ThrottlingException extends __BaseException {
|
|
257
202
|
readonly name: "ThrottlingException";
|
|
258
203
|
readonly $fault: "client";
|
|
259
|
-
|
|
260
204
|
constructor(
|
|
261
205
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
262
206
|
);
|
|
@@ -265,30 +209,21 @@ export declare enum JobFilterName {
|
|
|
265
209
|
JOB_STATUS = "JobStatus",
|
|
266
210
|
RESOURCE_TYPE = "ResourceType",
|
|
267
211
|
}
|
|
268
|
-
|
|
269
212
|
export interface JobFilter {
|
|
270
213
|
name?: JobFilterName | string;
|
|
271
|
-
|
|
272
214
|
values?: string[];
|
|
273
215
|
}
|
|
274
216
|
export interface DescribeRecommendationExportJobsRequest {
|
|
275
217
|
jobIds?: string[];
|
|
276
|
-
|
|
277
218
|
filters?: JobFilter[];
|
|
278
|
-
|
|
279
219
|
nextToken?: string;
|
|
280
|
-
|
|
281
220
|
maxResults?: number;
|
|
282
221
|
}
|
|
283
|
-
|
|
284
222
|
export interface S3Destination {
|
|
285
223
|
bucket?: string;
|
|
286
|
-
|
|
287
224
|
key?: string;
|
|
288
|
-
|
|
289
225
|
metadataKey?: string;
|
|
290
226
|
}
|
|
291
|
-
|
|
292
227
|
export interface ExportDestination {
|
|
293
228
|
s3?: S3Destination;
|
|
294
229
|
}
|
|
@@ -298,25 +233,17 @@ export declare enum JobStatus {
|
|
|
298
233
|
IN_PROGRESS = "InProgress",
|
|
299
234
|
QUEUED = "Queued",
|
|
300
235
|
}
|
|
301
|
-
|
|
302
236
|
export interface RecommendationExportJob {
|
|
303
237
|
jobId?: string;
|
|
304
|
-
|
|
305
238
|
destination?: ExportDestination;
|
|
306
|
-
|
|
307
239
|
resourceType?: ResourceType | string;
|
|
308
|
-
|
|
309
240
|
status?: JobStatus | string;
|
|
310
|
-
|
|
311
241
|
creationTimestamp?: Date;
|
|
312
|
-
|
|
313
242
|
lastUpdatedTimestamp?: Date;
|
|
314
|
-
|
|
315
243
|
failureReason?: string;
|
|
316
244
|
}
|
|
317
245
|
export interface DescribeRecommendationExportJobsResponse {
|
|
318
246
|
recommendationExportJobs?: RecommendationExportJob[];
|
|
319
|
-
|
|
320
247
|
nextToken?: string;
|
|
321
248
|
}
|
|
322
249
|
export declare enum ExportableAutoScalingGroupField {
|
|
@@ -383,47 +310,33 @@ export declare enum FilterName {
|
|
|
383
310
|
FINDING_REASON_CODES = "FindingReasonCodes",
|
|
384
311
|
RECOMMENDATION_SOURCE_TYPE = "RecommendationSourceType",
|
|
385
312
|
}
|
|
386
|
-
|
|
387
313
|
export interface Filter {
|
|
388
314
|
name?: FilterName | string;
|
|
389
|
-
|
|
390
315
|
values?: string[];
|
|
391
316
|
}
|
|
392
|
-
|
|
393
317
|
export interface RecommendationPreferences {
|
|
394
318
|
cpuVendorArchitectures?: (CpuVendorArchitecture | string)[];
|
|
395
319
|
}
|
|
396
|
-
|
|
397
320
|
export interface S3DestinationConfig {
|
|
398
321
|
bucket?: string;
|
|
399
|
-
|
|
400
322
|
keyPrefix?: string;
|
|
401
323
|
}
|
|
402
324
|
export interface ExportAutoScalingGroupRecommendationsRequest {
|
|
403
325
|
accountIds?: string[];
|
|
404
|
-
|
|
405
326
|
filters?: Filter[];
|
|
406
|
-
|
|
407
327
|
fieldsToExport?: (ExportableAutoScalingGroupField | string)[];
|
|
408
|
-
|
|
409
328
|
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
410
|
-
|
|
411
329
|
fileFormat?: FileFormat | string;
|
|
412
|
-
|
|
413
330
|
includeMemberAccounts?: boolean;
|
|
414
|
-
|
|
415
331
|
recommendationPreferences?: RecommendationPreferences;
|
|
416
332
|
}
|
|
417
333
|
export interface ExportAutoScalingGroupRecommendationsResponse {
|
|
418
334
|
jobId?: string;
|
|
419
|
-
|
|
420
335
|
s3Destination?: S3Destination;
|
|
421
336
|
}
|
|
422
|
-
|
|
423
337
|
export declare class LimitExceededException extends __BaseException {
|
|
424
338
|
readonly name: "LimitExceededException";
|
|
425
339
|
readonly $fault: "client";
|
|
426
|
-
|
|
427
340
|
constructor(
|
|
428
341
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
429
342
|
);
|
|
@@ -461,28 +374,20 @@ export declare enum ExportableVolumeField {
|
|
|
461
374
|
export declare enum EBSFilterName {
|
|
462
375
|
FINDING = "Finding",
|
|
463
376
|
}
|
|
464
|
-
|
|
465
377
|
export interface EBSFilter {
|
|
466
378
|
name?: EBSFilterName | string;
|
|
467
|
-
|
|
468
379
|
values?: string[];
|
|
469
380
|
}
|
|
470
381
|
export interface ExportEBSVolumeRecommendationsRequest {
|
|
471
382
|
accountIds?: string[];
|
|
472
|
-
|
|
473
383
|
filters?: EBSFilter[];
|
|
474
|
-
|
|
475
384
|
fieldsToExport?: (ExportableVolumeField | string)[];
|
|
476
|
-
|
|
477
385
|
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
478
|
-
|
|
479
386
|
fileFormat?: FileFormat | string;
|
|
480
|
-
|
|
481
387
|
includeMemberAccounts?: boolean;
|
|
482
388
|
}
|
|
483
389
|
export interface ExportEBSVolumeRecommendationsResponse {
|
|
484
390
|
jobId?: string;
|
|
485
|
-
|
|
486
391
|
s3Destination?: S3Destination;
|
|
487
392
|
}
|
|
488
393
|
export declare enum ExportableInstanceField {
|
|
@@ -541,22 +446,15 @@ export declare enum ExportableInstanceField {
|
|
|
541
446
|
}
|
|
542
447
|
export interface ExportEC2InstanceRecommendationsRequest {
|
|
543
448
|
accountIds?: string[];
|
|
544
|
-
|
|
545
449
|
filters?: Filter[];
|
|
546
|
-
|
|
547
450
|
fieldsToExport?: (ExportableInstanceField | string)[];
|
|
548
|
-
|
|
549
451
|
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
550
|
-
|
|
551
452
|
fileFormat?: FileFormat | string;
|
|
552
|
-
|
|
553
453
|
includeMemberAccounts?: boolean;
|
|
554
|
-
|
|
555
454
|
recommendationPreferences?: RecommendationPreferences;
|
|
556
455
|
}
|
|
557
456
|
export interface ExportEC2InstanceRecommendationsResponse {
|
|
558
457
|
jobId?: string;
|
|
559
|
-
|
|
560
458
|
s3Destination?: S3Destination;
|
|
561
459
|
}
|
|
562
460
|
export declare enum ExportableLambdaFunctionField {
|
|
@@ -591,81 +489,53 @@ export declare enum LambdaFunctionRecommendationFilterName {
|
|
|
591
489
|
FINDING = "Finding",
|
|
592
490
|
FINDING_REASON_CODE = "FindingReasonCode",
|
|
593
491
|
}
|
|
594
|
-
|
|
595
492
|
export interface LambdaFunctionRecommendationFilter {
|
|
596
493
|
name?: LambdaFunctionRecommendationFilterName | string;
|
|
597
|
-
|
|
598
494
|
values?: string[];
|
|
599
495
|
}
|
|
600
496
|
export interface ExportLambdaFunctionRecommendationsRequest {
|
|
601
497
|
accountIds?: string[];
|
|
602
|
-
|
|
603
498
|
filters?: LambdaFunctionRecommendationFilter[];
|
|
604
|
-
|
|
605
499
|
fieldsToExport?: (ExportableLambdaFunctionField | string)[];
|
|
606
|
-
|
|
607
500
|
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
608
|
-
|
|
609
501
|
fileFormat?: FileFormat | string;
|
|
610
|
-
|
|
611
502
|
includeMemberAccounts?: boolean;
|
|
612
503
|
}
|
|
613
504
|
export interface ExportLambdaFunctionRecommendationsResponse {
|
|
614
505
|
jobId?: string;
|
|
615
|
-
|
|
616
506
|
s3Destination?: S3Destination;
|
|
617
507
|
}
|
|
618
508
|
export interface GetAutoScalingGroupRecommendationsRequest {
|
|
619
509
|
accountIds?: string[];
|
|
620
|
-
|
|
621
510
|
autoScalingGroupArns?: string[];
|
|
622
|
-
|
|
623
511
|
nextToken?: string;
|
|
624
|
-
|
|
625
512
|
maxResults?: number;
|
|
626
|
-
|
|
627
513
|
filters?: Filter[];
|
|
628
|
-
|
|
629
514
|
recommendationPreferences?: RecommendationPreferences;
|
|
630
515
|
}
|
|
631
|
-
|
|
632
516
|
export interface GetRecommendationError {
|
|
633
517
|
identifier?: string;
|
|
634
|
-
|
|
635
518
|
code?: string;
|
|
636
|
-
|
|
637
519
|
message?: string;
|
|
638
520
|
}
|
|
639
521
|
export interface GetAutoScalingGroupRecommendationsResponse {
|
|
640
522
|
nextToken?: string;
|
|
641
|
-
|
|
642
523
|
autoScalingGroupRecommendations?: AutoScalingGroupRecommendation[];
|
|
643
|
-
|
|
644
524
|
errors?: GetRecommendationError[];
|
|
645
525
|
}
|
|
646
526
|
export interface GetEBSVolumeRecommendationsRequest {
|
|
647
527
|
volumeArns?: string[];
|
|
648
|
-
|
|
649
528
|
nextToken?: string;
|
|
650
|
-
|
|
651
529
|
maxResults?: number;
|
|
652
|
-
|
|
653
530
|
filters?: EBSFilter[];
|
|
654
|
-
|
|
655
531
|
accountIds?: string[];
|
|
656
532
|
}
|
|
657
|
-
|
|
658
533
|
export interface VolumeConfiguration {
|
|
659
534
|
volumeType?: string;
|
|
660
|
-
|
|
661
535
|
volumeSize?: number;
|
|
662
|
-
|
|
663
536
|
volumeBaselineIOPS?: number;
|
|
664
|
-
|
|
665
537
|
volumeBurstIOPS?: number;
|
|
666
|
-
|
|
667
538
|
volumeBaselineThroughput?: number;
|
|
668
|
-
|
|
669
539
|
volumeBurstThroughput?: number;
|
|
670
540
|
}
|
|
671
541
|
export declare enum EBSFinding {
|
|
@@ -678,62 +548,39 @@ export declare enum EBSMetricName {
|
|
|
678
548
|
VOLUME_WRITE_BYTES_PER_SECOND = "VolumeWriteBytesPerSecond",
|
|
679
549
|
VOLUME_WRITE_OPS_PER_SECOND = "VolumeWriteOpsPerSecond",
|
|
680
550
|
}
|
|
681
|
-
|
|
682
551
|
export interface EBSUtilizationMetric {
|
|
683
552
|
name?: EBSMetricName | string;
|
|
684
|
-
|
|
685
553
|
statistic?: MetricStatistic | string;
|
|
686
|
-
|
|
687
554
|
value?: number;
|
|
688
555
|
}
|
|
689
|
-
|
|
690
556
|
export interface VolumeRecommendationOption {
|
|
691
557
|
configuration?: VolumeConfiguration;
|
|
692
|
-
|
|
693
558
|
performanceRisk?: number;
|
|
694
|
-
|
|
695
559
|
rank?: number;
|
|
696
|
-
|
|
697
560
|
savingsOpportunity?: SavingsOpportunity;
|
|
698
561
|
}
|
|
699
|
-
|
|
700
562
|
export interface VolumeRecommendation {
|
|
701
563
|
volumeArn?: string;
|
|
702
|
-
|
|
703
564
|
accountId?: string;
|
|
704
|
-
|
|
705
565
|
currentConfiguration?: VolumeConfiguration;
|
|
706
|
-
|
|
707
566
|
finding?: EBSFinding | string;
|
|
708
|
-
|
|
709
567
|
utilizationMetrics?: EBSUtilizationMetric[];
|
|
710
|
-
|
|
711
568
|
lookBackPeriodInDays?: number;
|
|
712
|
-
|
|
713
569
|
volumeRecommendationOptions?: VolumeRecommendationOption[];
|
|
714
|
-
|
|
715
570
|
lastRefreshTimestamp?: Date;
|
|
716
|
-
|
|
717
571
|
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
718
572
|
}
|
|
719
573
|
export interface GetEBSVolumeRecommendationsResponse {
|
|
720
574
|
nextToken?: string;
|
|
721
|
-
|
|
722
575
|
volumeRecommendations?: VolumeRecommendation[];
|
|
723
|
-
|
|
724
576
|
errors?: GetRecommendationError[];
|
|
725
577
|
}
|
|
726
578
|
export interface GetEC2InstanceRecommendationsRequest {
|
|
727
579
|
instanceArns?: string[];
|
|
728
|
-
|
|
729
580
|
nextToken?: string;
|
|
730
|
-
|
|
731
581
|
maxResults?: number;
|
|
732
|
-
|
|
733
582
|
filters?: Filter[];
|
|
734
|
-
|
|
735
583
|
accountIds?: string[];
|
|
736
|
-
|
|
737
584
|
recommendationPreferences?: RecommendationPreferences;
|
|
738
585
|
}
|
|
739
586
|
export declare enum InstanceRecommendationFindingReasonCode {
|
|
@@ -762,20 +609,13 @@ export declare enum PlatformDifference {
|
|
|
762
609
|
STORAGE_INTERFACE = "StorageInterface",
|
|
763
610
|
VIRTUALIZATION_TYPE = "VirtualizationType",
|
|
764
611
|
}
|
|
765
|
-
|
|
766
612
|
export interface InstanceRecommendationOption {
|
|
767
613
|
instanceType?: string;
|
|
768
|
-
|
|
769
614
|
projectedUtilizationMetrics?: UtilizationMetric[];
|
|
770
|
-
|
|
771
615
|
platformDifferences?: (PlatformDifference | string)[];
|
|
772
|
-
|
|
773
616
|
performanceRisk?: number;
|
|
774
|
-
|
|
775
617
|
rank?: number;
|
|
776
|
-
|
|
777
618
|
savingsOpportunity?: SavingsOpportunity;
|
|
778
|
-
|
|
779
619
|
migrationEffort?: MigrationEffort | string;
|
|
780
620
|
}
|
|
781
621
|
export declare enum RecommendationSourceType {
|
|
@@ -784,76 +624,47 @@ export declare enum RecommendationSourceType {
|
|
|
784
624
|
EC2_INSTANCE = "Ec2Instance",
|
|
785
625
|
LAMBDA_FUNCTION = "LambdaFunction",
|
|
786
626
|
}
|
|
787
|
-
|
|
788
627
|
export interface RecommendationSource {
|
|
789
628
|
recommendationSourceArn?: string;
|
|
790
|
-
|
|
791
629
|
recommendationSourceType?: RecommendationSourceType | string;
|
|
792
630
|
}
|
|
793
|
-
|
|
794
631
|
export interface InstanceRecommendation {
|
|
795
632
|
instanceArn?: string;
|
|
796
|
-
|
|
797
633
|
accountId?: string;
|
|
798
|
-
|
|
799
634
|
instanceName?: string;
|
|
800
|
-
|
|
801
635
|
currentInstanceType?: string;
|
|
802
|
-
|
|
803
636
|
finding?: Finding | string;
|
|
804
|
-
|
|
805
637
|
findingReasonCodes?: (InstanceRecommendationFindingReasonCode | string)[];
|
|
806
|
-
|
|
807
638
|
utilizationMetrics?: UtilizationMetric[];
|
|
808
|
-
|
|
809
639
|
lookBackPeriodInDays?: number;
|
|
810
|
-
|
|
811
640
|
recommendationOptions?: InstanceRecommendationOption[];
|
|
812
|
-
|
|
813
641
|
recommendationSources?: RecommendationSource[];
|
|
814
|
-
|
|
815
642
|
lastRefreshTimestamp?: Date;
|
|
816
|
-
|
|
817
643
|
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
818
|
-
|
|
819
644
|
effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
|
|
820
|
-
|
|
821
645
|
inferredWorkloadTypes?: (InferredWorkloadType | string)[];
|
|
822
646
|
}
|
|
823
647
|
export interface GetEC2InstanceRecommendationsResponse {
|
|
824
648
|
nextToken?: string;
|
|
825
|
-
|
|
826
649
|
instanceRecommendations?: InstanceRecommendation[];
|
|
827
|
-
|
|
828
650
|
errors?: GetRecommendationError[];
|
|
829
651
|
}
|
|
830
652
|
export interface GetEC2RecommendationProjectedMetricsRequest {
|
|
831
653
|
instanceArn: string | undefined;
|
|
832
|
-
|
|
833
654
|
stat: MetricStatistic | string | undefined;
|
|
834
|
-
|
|
835
655
|
period: number | undefined;
|
|
836
|
-
|
|
837
656
|
startTime: Date | undefined;
|
|
838
|
-
|
|
839
657
|
endTime: Date | undefined;
|
|
840
|
-
|
|
841
658
|
recommendationPreferences?: RecommendationPreferences;
|
|
842
659
|
}
|
|
843
|
-
|
|
844
660
|
export interface ProjectedMetric {
|
|
845
661
|
name?: MetricName | string;
|
|
846
|
-
|
|
847
662
|
timestamps?: Date[];
|
|
848
|
-
|
|
849
663
|
values?: number[];
|
|
850
664
|
}
|
|
851
|
-
|
|
852
665
|
export interface RecommendedOptionProjectedMetric {
|
|
853
666
|
recommendedInstanceType?: string;
|
|
854
|
-
|
|
855
667
|
rank?: number;
|
|
856
|
-
|
|
857
668
|
projectedMetrics?: ProjectedMetric[];
|
|
858
669
|
}
|
|
859
670
|
export interface GetEC2RecommendationProjectedMetricsResponse {
|
|
@@ -868,45 +679,32 @@ export interface GetEffectiveRecommendationPreferencesResponse {
|
|
|
868
679
|
export interface GetEnrollmentStatusRequest {}
|
|
869
680
|
export interface GetEnrollmentStatusResponse {
|
|
870
681
|
status?: Status | string;
|
|
871
|
-
|
|
872
682
|
statusReason?: string;
|
|
873
|
-
|
|
874
683
|
memberAccountsEnrolled?: boolean;
|
|
875
|
-
|
|
876
684
|
lastUpdatedTimestamp?: Date;
|
|
877
|
-
|
|
878
685
|
numberOfMemberAccountsOptedIn?: number;
|
|
879
686
|
}
|
|
880
687
|
export declare enum EnrollmentFilterName {
|
|
881
688
|
STATUS = "Status",
|
|
882
689
|
}
|
|
883
|
-
|
|
884
690
|
export interface EnrollmentFilter {
|
|
885
691
|
name?: EnrollmentFilterName | string;
|
|
886
|
-
|
|
887
692
|
values?: string[];
|
|
888
693
|
}
|
|
889
694
|
export interface GetEnrollmentStatusesForOrganizationRequest {
|
|
890
695
|
filters?: EnrollmentFilter[];
|
|
891
|
-
|
|
892
696
|
nextToken?: string;
|
|
893
|
-
|
|
894
697
|
maxResults?: number;
|
|
895
698
|
}
|
|
896
699
|
export interface GetEnrollmentStatusesForOrganizationResponse {
|
|
897
700
|
accountEnrollmentStatuses?: AccountEnrollmentStatus[];
|
|
898
|
-
|
|
899
701
|
nextToken?: string;
|
|
900
702
|
}
|
|
901
703
|
export interface GetLambdaFunctionRecommendationsRequest {
|
|
902
704
|
functionArns?: string[];
|
|
903
|
-
|
|
904
705
|
accountIds?: string[];
|
|
905
|
-
|
|
906
706
|
filters?: LambdaFunctionRecommendationFilter[];
|
|
907
|
-
|
|
908
707
|
nextToken?: string;
|
|
909
|
-
|
|
910
708
|
maxResults?: number;
|
|
911
709
|
}
|
|
912
710
|
export declare enum LambdaFunctionRecommendationFinding {
|
|
@@ -928,22 +726,15 @@ export declare enum LambdaFunctionMemoryMetricStatistic {
|
|
|
928
726
|
LOWER_BOUND = "LowerBound",
|
|
929
727
|
UPPER_BOUND = "UpperBound",
|
|
930
728
|
}
|
|
931
|
-
|
|
932
729
|
export interface LambdaFunctionMemoryProjectedMetric {
|
|
933
730
|
name?: LambdaFunctionMemoryMetricName | string;
|
|
934
|
-
|
|
935
731
|
statistic?: LambdaFunctionMemoryMetricStatistic | string;
|
|
936
|
-
|
|
937
732
|
value?: number;
|
|
938
733
|
}
|
|
939
|
-
|
|
940
734
|
export interface LambdaFunctionMemoryRecommendationOption {
|
|
941
735
|
rank?: number;
|
|
942
|
-
|
|
943
736
|
memorySize?: number;
|
|
944
|
-
|
|
945
737
|
projectedUtilizationMetrics?: LambdaFunctionMemoryProjectedMetric[];
|
|
946
|
-
|
|
947
738
|
savingsOpportunity?: SavingsOpportunity;
|
|
948
739
|
}
|
|
949
740
|
export declare enum LambdaFunctionMetricName {
|
|
@@ -954,427 +745,307 @@ export declare enum LambdaFunctionMetricStatistic {
|
|
|
954
745
|
AVERAGE = "Average",
|
|
955
746
|
MAXIMUM = "Maximum",
|
|
956
747
|
}
|
|
957
|
-
|
|
958
748
|
export interface LambdaFunctionUtilizationMetric {
|
|
959
749
|
name?: LambdaFunctionMetricName | string;
|
|
960
|
-
|
|
961
750
|
statistic?: LambdaFunctionMetricStatistic | string;
|
|
962
|
-
|
|
963
751
|
value?: number;
|
|
964
752
|
}
|
|
965
|
-
|
|
966
753
|
export interface LambdaFunctionRecommendation {
|
|
967
754
|
functionArn?: string;
|
|
968
|
-
|
|
969
755
|
functionVersion?: string;
|
|
970
|
-
|
|
971
756
|
accountId?: string;
|
|
972
|
-
|
|
973
757
|
currentMemorySize?: number;
|
|
974
|
-
|
|
975
758
|
numberOfInvocations?: number;
|
|
976
|
-
|
|
977
759
|
utilizationMetrics?: LambdaFunctionUtilizationMetric[];
|
|
978
|
-
|
|
979
760
|
lookbackPeriodInDays?: number;
|
|
980
|
-
|
|
981
761
|
lastRefreshTimestamp?: Date;
|
|
982
|
-
|
|
983
762
|
finding?: LambdaFunctionRecommendationFinding | string;
|
|
984
|
-
|
|
985
763
|
findingReasonCodes?: (
|
|
986
764
|
| LambdaFunctionRecommendationFindingReasonCode
|
|
987
765
|
| string
|
|
988
766
|
)[];
|
|
989
|
-
|
|
990
767
|
memorySizeRecommendationOptions?: LambdaFunctionMemoryRecommendationOption[];
|
|
991
|
-
|
|
992
768
|
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
993
769
|
}
|
|
994
770
|
export interface GetLambdaFunctionRecommendationsResponse {
|
|
995
771
|
nextToken?: string;
|
|
996
|
-
|
|
997
772
|
lambdaFunctionRecommendations?: LambdaFunctionRecommendation[];
|
|
998
773
|
}
|
|
999
774
|
export interface GetRecommendationPreferencesRequest {
|
|
1000
775
|
resourceType: ResourceType | string | undefined;
|
|
1001
|
-
|
|
1002
776
|
scope?: Scope;
|
|
1003
|
-
|
|
1004
777
|
nextToken?: string;
|
|
1005
|
-
|
|
1006
778
|
maxResults?: number;
|
|
1007
779
|
}
|
|
1008
|
-
|
|
1009
780
|
export interface RecommendationPreferencesDetail {
|
|
1010
781
|
scope?: Scope;
|
|
1011
|
-
|
|
1012
782
|
resourceType?: ResourceType | string;
|
|
1013
|
-
|
|
1014
783
|
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
1015
|
-
|
|
1016
784
|
inferredWorkloadTypes?: InferredWorkloadTypesPreference | string;
|
|
1017
785
|
}
|
|
1018
786
|
export interface GetRecommendationPreferencesResponse {
|
|
1019
787
|
nextToken?: string;
|
|
1020
|
-
|
|
1021
788
|
recommendationPreferencesDetails?: RecommendationPreferencesDetail[];
|
|
1022
789
|
}
|
|
1023
790
|
export interface GetRecommendationSummariesRequest {
|
|
1024
791
|
accountIds?: string[];
|
|
1025
|
-
|
|
1026
792
|
nextToken?: string;
|
|
1027
|
-
|
|
1028
793
|
maxResults?: number;
|
|
1029
794
|
}
|
|
1030
|
-
|
|
1031
795
|
export interface CurrentPerformanceRiskRatings {
|
|
1032
796
|
high?: number;
|
|
1033
|
-
|
|
1034
797
|
medium?: number;
|
|
1035
|
-
|
|
1036
798
|
low?: number;
|
|
1037
|
-
|
|
1038
799
|
veryLow?: number;
|
|
1039
800
|
}
|
|
1040
801
|
export declare enum FindingReasonCode {
|
|
1041
802
|
MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
|
|
1042
803
|
MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned",
|
|
1043
804
|
}
|
|
1044
|
-
|
|
1045
805
|
export interface ReasonCodeSummary {
|
|
1046
806
|
name?: FindingReasonCode | string;
|
|
1047
|
-
|
|
1048
807
|
value?: number;
|
|
1049
808
|
}
|
|
1050
|
-
|
|
1051
809
|
export interface Summary {
|
|
1052
810
|
name?: Finding | string;
|
|
1053
|
-
|
|
1054
811
|
value?: number;
|
|
1055
|
-
|
|
1056
812
|
reasonCodeSummaries?: ReasonCodeSummary[];
|
|
1057
813
|
}
|
|
1058
|
-
|
|
1059
814
|
export interface RecommendationSummary {
|
|
1060
815
|
summaries?: Summary[];
|
|
1061
|
-
|
|
1062
816
|
recommendationResourceType?: RecommendationSourceType | string;
|
|
1063
|
-
|
|
1064
817
|
accountId?: string;
|
|
1065
|
-
|
|
1066
818
|
savingsOpportunity?: SavingsOpportunity;
|
|
1067
|
-
|
|
1068
819
|
currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings;
|
|
1069
820
|
}
|
|
1070
821
|
export interface GetRecommendationSummariesResponse {
|
|
1071
822
|
nextToken?: string;
|
|
1072
|
-
|
|
1073
823
|
recommendationSummaries?: RecommendationSummary[];
|
|
1074
824
|
}
|
|
1075
825
|
export interface PutRecommendationPreferencesRequest {
|
|
1076
826
|
resourceType: ResourceType | string | undefined;
|
|
1077
|
-
|
|
1078
827
|
scope?: Scope;
|
|
1079
|
-
|
|
1080
828
|
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
1081
|
-
|
|
1082
829
|
inferredWorkloadTypes?: InferredWorkloadTypesPreference | string;
|
|
1083
830
|
}
|
|
1084
831
|
export interface PutRecommendationPreferencesResponse {}
|
|
1085
832
|
export interface UpdateEnrollmentStatusRequest {
|
|
1086
833
|
status: Status | string | undefined;
|
|
1087
|
-
|
|
1088
834
|
includeMemberAccounts?: boolean;
|
|
1089
835
|
}
|
|
1090
836
|
export interface UpdateEnrollmentStatusResponse {
|
|
1091
837
|
status?: Status | string;
|
|
1092
|
-
|
|
1093
838
|
statusReason?: string;
|
|
1094
839
|
}
|
|
1095
|
-
|
|
1096
840
|
export declare const AccountEnrollmentStatusFilterSensitiveLog: (
|
|
1097
841
|
obj: AccountEnrollmentStatus
|
|
1098
842
|
) => any;
|
|
1099
|
-
|
|
1100
843
|
export declare const AutoScalingGroupConfigurationFilterSensitiveLog: (
|
|
1101
844
|
obj: AutoScalingGroupConfiguration
|
|
1102
845
|
) => any;
|
|
1103
|
-
|
|
1104
846
|
export declare const EffectiveRecommendationPreferencesFilterSensitiveLog: (
|
|
1105
847
|
obj: EffectiveRecommendationPreferences
|
|
1106
848
|
) => any;
|
|
1107
|
-
|
|
1108
849
|
export declare const UtilizationMetricFilterSensitiveLog: (
|
|
1109
850
|
obj: UtilizationMetric
|
|
1110
851
|
) => any;
|
|
1111
|
-
|
|
1112
852
|
export declare const EstimatedMonthlySavingsFilterSensitiveLog: (
|
|
1113
853
|
obj: EstimatedMonthlySavings
|
|
1114
854
|
) => any;
|
|
1115
|
-
|
|
1116
855
|
export declare const SavingsOpportunityFilterSensitiveLog: (
|
|
1117
856
|
obj: SavingsOpportunity
|
|
1118
857
|
) => any;
|
|
1119
|
-
|
|
1120
858
|
export declare const AutoScalingGroupRecommendationOptionFilterSensitiveLog: (
|
|
1121
859
|
obj: AutoScalingGroupRecommendationOption
|
|
1122
860
|
) => any;
|
|
1123
|
-
|
|
1124
861
|
export declare const AutoScalingGroupRecommendationFilterSensitiveLog: (
|
|
1125
862
|
obj: AutoScalingGroupRecommendation
|
|
1126
863
|
) => any;
|
|
1127
|
-
|
|
1128
864
|
export declare const ScopeFilterSensitiveLog: (obj: Scope) => any;
|
|
1129
|
-
|
|
1130
865
|
export declare const DeleteRecommendationPreferencesRequestFilterSensitiveLog: (
|
|
1131
866
|
obj: DeleteRecommendationPreferencesRequest
|
|
1132
867
|
) => any;
|
|
1133
|
-
|
|
1134
868
|
export declare const DeleteRecommendationPreferencesResponseFilterSensitiveLog: (
|
|
1135
869
|
obj: DeleteRecommendationPreferencesResponse
|
|
1136
870
|
) => any;
|
|
1137
|
-
|
|
1138
871
|
export declare const JobFilterFilterSensitiveLog: (obj: JobFilter) => any;
|
|
1139
|
-
|
|
1140
872
|
export declare const DescribeRecommendationExportJobsRequestFilterSensitiveLog: (
|
|
1141
873
|
obj: DescribeRecommendationExportJobsRequest
|
|
1142
874
|
) => any;
|
|
1143
|
-
|
|
1144
875
|
export declare const S3DestinationFilterSensitiveLog: (
|
|
1145
876
|
obj: S3Destination
|
|
1146
877
|
) => any;
|
|
1147
|
-
|
|
1148
878
|
export declare const ExportDestinationFilterSensitiveLog: (
|
|
1149
879
|
obj: ExportDestination
|
|
1150
880
|
) => any;
|
|
1151
|
-
|
|
1152
881
|
export declare const RecommendationExportJobFilterSensitiveLog: (
|
|
1153
882
|
obj: RecommendationExportJob
|
|
1154
883
|
) => any;
|
|
1155
|
-
|
|
1156
884
|
export declare const DescribeRecommendationExportJobsResponseFilterSensitiveLog: (
|
|
1157
885
|
obj: DescribeRecommendationExportJobsResponse
|
|
1158
886
|
) => any;
|
|
1159
|
-
|
|
1160
887
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1161
|
-
|
|
1162
888
|
export declare const RecommendationPreferencesFilterSensitiveLog: (
|
|
1163
889
|
obj: RecommendationPreferences
|
|
1164
890
|
) => any;
|
|
1165
|
-
|
|
1166
891
|
export declare const S3DestinationConfigFilterSensitiveLog: (
|
|
1167
892
|
obj: S3DestinationConfig
|
|
1168
893
|
) => any;
|
|
1169
|
-
|
|
1170
894
|
export declare const ExportAutoScalingGroupRecommendationsRequestFilterSensitiveLog: (
|
|
1171
895
|
obj: ExportAutoScalingGroupRecommendationsRequest
|
|
1172
896
|
) => any;
|
|
1173
|
-
|
|
1174
897
|
export declare const ExportAutoScalingGroupRecommendationsResponseFilterSensitiveLog: (
|
|
1175
898
|
obj: ExportAutoScalingGroupRecommendationsResponse
|
|
1176
899
|
) => any;
|
|
1177
|
-
|
|
1178
900
|
export declare const EBSFilterFilterSensitiveLog: (obj: EBSFilter) => any;
|
|
1179
|
-
|
|
1180
901
|
export declare const ExportEBSVolumeRecommendationsRequestFilterSensitiveLog: (
|
|
1181
902
|
obj: ExportEBSVolumeRecommendationsRequest
|
|
1182
903
|
) => any;
|
|
1183
|
-
|
|
1184
904
|
export declare const ExportEBSVolumeRecommendationsResponseFilterSensitiveLog: (
|
|
1185
905
|
obj: ExportEBSVolumeRecommendationsResponse
|
|
1186
906
|
) => any;
|
|
1187
|
-
|
|
1188
907
|
export declare const ExportEC2InstanceRecommendationsRequestFilterSensitiveLog: (
|
|
1189
908
|
obj: ExportEC2InstanceRecommendationsRequest
|
|
1190
909
|
) => any;
|
|
1191
|
-
|
|
1192
910
|
export declare const ExportEC2InstanceRecommendationsResponseFilterSensitiveLog: (
|
|
1193
911
|
obj: ExportEC2InstanceRecommendationsResponse
|
|
1194
912
|
) => any;
|
|
1195
|
-
|
|
1196
913
|
export declare const LambdaFunctionRecommendationFilterFilterSensitiveLog: (
|
|
1197
914
|
obj: LambdaFunctionRecommendationFilter
|
|
1198
915
|
) => any;
|
|
1199
|
-
|
|
1200
916
|
export declare const ExportLambdaFunctionRecommendationsRequestFilterSensitiveLog: (
|
|
1201
917
|
obj: ExportLambdaFunctionRecommendationsRequest
|
|
1202
918
|
) => any;
|
|
1203
|
-
|
|
1204
919
|
export declare const ExportLambdaFunctionRecommendationsResponseFilterSensitiveLog: (
|
|
1205
920
|
obj: ExportLambdaFunctionRecommendationsResponse
|
|
1206
921
|
) => any;
|
|
1207
|
-
|
|
1208
922
|
export declare const GetAutoScalingGroupRecommendationsRequestFilterSensitiveLog: (
|
|
1209
923
|
obj: GetAutoScalingGroupRecommendationsRequest
|
|
1210
924
|
) => any;
|
|
1211
|
-
|
|
1212
925
|
export declare const GetRecommendationErrorFilterSensitiveLog: (
|
|
1213
926
|
obj: GetRecommendationError
|
|
1214
927
|
) => any;
|
|
1215
|
-
|
|
1216
928
|
export declare const GetAutoScalingGroupRecommendationsResponseFilterSensitiveLog: (
|
|
1217
929
|
obj: GetAutoScalingGroupRecommendationsResponse
|
|
1218
930
|
) => any;
|
|
1219
|
-
|
|
1220
931
|
export declare const GetEBSVolumeRecommendationsRequestFilterSensitiveLog: (
|
|
1221
932
|
obj: GetEBSVolumeRecommendationsRequest
|
|
1222
933
|
) => any;
|
|
1223
|
-
|
|
1224
934
|
export declare const VolumeConfigurationFilterSensitiveLog: (
|
|
1225
935
|
obj: VolumeConfiguration
|
|
1226
936
|
) => any;
|
|
1227
|
-
|
|
1228
937
|
export declare const EBSUtilizationMetricFilterSensitiveLog: (
|
|
1229
938
|
obj: EBSUtilizationMetric
|
|
1230
939
|
) => any;
|
|
1231
|
-
|
|
1232
940
|
export declare const VolumeRecommendationOptionFilterSensitiveLog: (
|
|
1233
941
|
obj: VolumeRecommendationOption
|
|
1234
942
|
) => any;
|
|
1235
|
-
|
|
1236
943
|
export declare const VolumeRecommendationFilterSensitiveLog: (
|
|
1237
944
|
obj: VolumeRecommendation
|
|
1238
945
|
) => any;
|
|
1239
|
-
|
|
1240
946
|
export declare const GetEBSVolumeRecommendationsResponseFilterSensitiveLog: (
|
|
1241
947
|
obj: GetEBSVolumeRecommendationsResponse
|
|
1242
948
|
) => any;
|
|
1243
|
-
|
|
1244
949
|
export declare const GetEC2InstanceRecommendationsRequestFilterSensitiveLog: (
|
|
1245
950
|
obj: GetEC2InstanceRecommendationsRequest
|
|
1246
951
|
) => any;
|
|
1247
|
-
|
|
1248
952
|
export declare const InstanceRecommendationOptionFilterSensitiveLog: (
|
|
1249
953
|
obj: InstanceRecommendationOption
|
|
1250
954
|
) => any;
|
|
1251
|
-
|
|
1252
955
|
export declare const RecommendationSourceFilterSensitiveLog: (
|
|
1253
956
|
obj: RecommendationSource
|
|
1254
957
|
) => any;
|
|
1255
|
-
|
|
1256
958
|
export declare const InstanceRecommendationFilterSensitiveLog: (
|
|
1257
959
|
obj: InstanceRecommendation
|
|
1258
960
|
) => any;
|
|
1259
|
-
|
|
1260
961
|
export declare const GetEC2InstanceRecommendationsResponseFilterSensitiveLog: (
|
|
1261
962
|
obj: GetEC2InstanceRecommendationsResponse
|
|
1262
963
|
) => any;
|
|
1263
|
-
|
|
1264
964
|
export declare const GetEC2RecommendationProjectedMetricsRequestFilterSensitiveLog: (
|
|
1265
965
|
obj: GetEC2RecommendationProjectedMetricsRequest
|
|
1266
966
|
) => any;
|
|
1267
|
-
|
|
1268
967
|
export declare const ProjectedMetricFilterSensitiveLog: (
|
|
1269
968
|
obj: ProjectedMetric
|
|
1270
969
|
) => any;
|
|
1271
|
-
|
|
1272
970
|
export declare const RecommendedOptionProjectedMetricFilterSensitiveLog: (
|
|
1273
971
|
obj: RecommendedOptionProjectedMetric
|
|
1274
972
|
) => any;
|
|
1275
|
-
|
|
1276
973
|
export declare const GetEC2RecommendationProjectedMetricsResponseFilterSensitiveLog: (
|
|
1277
974
|
obj: GetEC2RecommendationProjectedMetricsResponse
|
|
1278
975
|
) => any;
|
|
1279
|
-
|
|
1280
976
|
export declare const GetEffectiveRecommendationPreferencesRequestFilterSensitiveLog: (
|
|
1281
977
|
obj: GetEffectiveRecommendationPreferencesRequest
|
|
1282
978
|
) => any;
|
|
1283
|
-
|
|
1284
979
|
export declare const GetEffectiveRecommendationPreferencesResponseFilterSensitiveLog: (
|
|
1285
980
|
obj: GetEffectiveRecommendationPreferencesResponse
|
|
1286
981
|
) => any;
|
|
1287
|
-
|
|
1288
982
|
export declare const GetEnrollmentStatusRequestFilterSensitiveLog: (
|
|
1289
983
|
obj: GetEnrollmentStatusRequest
|
|
1290
984
|
) => any;
|
|
1291
|
-
|
|
1292
985
|
export declare const GetEnrollmentStatusResponseFilterSensitiveLog: (
|
|
1293
986
|
obj: GetEnrollmentStatusResponse
|
|
1294
987
|
) => any;
|
|
1295
|
-
|
|
1296
988
|
export declare const EnrollmentFilterFilterSensitiveLog: (
|
|
1297
989
|
obj: EnrollmentFilter
|
|
1298
990
|
) => any;
|
|
1299
|
-
|
|
1300
991
|
export declare const GetEnrollmentStatusesForOrganizationRequestFilterSensitiveLog: (
|
|
1301
992
|
obj: GetEnrollmentStatusesForOrganizationRequest
|
|
1302
993
|
) => any;
|
|
1303
|
-
|
|
1304
994
|
export declare const GetEnrollmentStatusesForOrganizationResponseFilterSensitiveLog: (
|
|
1305
995
|
obj: GetEnrollmentStatusesForOrganizationResponse
|
|
1306
996
|
) => any;
|
|
1307
|
-
|
|
1308
997
|
export declare const GetLambdaFunctionRecommendationsRequestFilterSensitiveLog: (
|
|
1309
998
|
obj: GetLambdaFunctionRecommendationsRequest
|
|
1310
999
|
) => any;
|
|
1311
|
-
|
|
1312
1000
|
export declare const LambdaFunctionMemoryProjectedMetricFilterSensitiveLog: (
|
|
1313
1001
|
obj: LambdaFunctionMemoryProjectedMetric
|
|
1314
1002
|
) => any;
|
|
1315
|
-
|
|
1316
1003
|
export declare const LambdaFunctionMemoryRecommendationOptionFilterSensitiveLog: (
|
|
1317
1004
|
obj: LambdaFunctionMemoryRecommendationOption
|
|
1318
1005
|
) => any;
|
|
1319
|
-
|
|
1320
1006
|
export declare const LambdaFunctionUtilizationMetricFilterSensitiveLog: (
|
|
1321
1007
|
obj: LambdaFunctionUtilizationMetric
|
|
1322
1008
|
) => any;
|
|
1323
|
-
|
|
1324
1009
|
export declare const LambdaFunctionRecommendationFilterSensitiveLog: (
|
|
1325
1010
|
obj: LambdaFunctionRecommendation
|
|
1326
1011
|
) => any;
|
|
1327
|
-
|
|
1328
1012
|
export declare const GetLambdaFunctionRecommendationsResponseFilterSensitiveLog: (
|
|
1329
1013
|
obj: GetLambdaFunctionRecommendationsResponse
|
|
1330
1014
|
) => any;
|
|
1331
|
-
|
|
1332
1015
|
export declare const GetRecommendationPreferencesRequestFilterSensitiveLog: (
|
|
1333
1016
|
obj: GetRecommendationPreferencesRequest
|
|
1334
1017
|
) => any;
|
|
1335
|
-
|
|
1336
1018
|
export declare const RecommendationPreferencesDetailFilterSensitiveLog: (
|
|
1337
1019
|
obj: RecommendationPreferencesDetail
|
|
1338
1020
|
) => any;
|
|
1339
|
-
|
|
1340
1021
|
export declare const GetRecommendationPreferencesResponseFilterSensitiveLog: (
|
|
1341
1022
|
obj: GetRecommendationPreferencesResponse
|
|
1342
1023
|
) => any;
|
|
1343
|
-
|
|
1344
1024
|
export declare const GetRecommendationSummariesRequestFilterSensitiveLog: (
|
|
1345
1025
|
obj: GetRecommendationSummariesRequest
|
|
1346
1026
|
) => any;
|
|
1347
|
-
|
|
1348
1027
|
export declare const CurrentPerformanceRiskRatingsFilterSensitiveLog: (
|
|
1349
1028
|
obj: CurrentPerformanceRiskRatings
|
|
1350
1029
|
) => any;
|
|
1351
|
-
|
|
1352
1030
|
export declare const ReasonCodeSummaryFilterSensitiveLog: (
|
|
1353
1031
|
obj: ReasonCodeSummary
|
|
1354
1032
|
) => any;
|
|
1355
|
-
|
|
1356
1033
|
export declare const SummaryFilterSensitiveLog: (obj: Summary) => any;
|
|
1357
|
-
|
|
1358
1034
|
export declare const RecommendationSummaryFilterSensitiveLog: (
|
|
1359
1035
|
obj: RecommendationSummary
|
|
1360
1036
|
) => any;
|
|
1361
|
-
|
|
1362
1037
|
export declare const GetRecommendationSummariesResponseFilterSensitiveLog: (
|
|
1363
1038
|
obj: GetRecommendationSummariesResponse
|
|
1364
1039
|
) => any;
|
|
1365
|
-
|
|
1366
1040
|
export declare const PutRecommendationPreferencesRequestFilterSensitiveLog: (
|
|
1367
1041
|
obj: PutRecommendationPreferencesRequest
|
|
1368
1042
|
) => any;
|
|
1369
|
-
|
|
1370
1043
|
export declare const PutRecommendationPreferencesResponseFilterSensitiveLog: (
|
|
1371
1044
|
obj: PutRecommendationPreferencesResponse
|
|
1372
1045
|
) => any;
|
|
1373
|
-
|
|
1374
1046
|
export declare const UpdateEnrollmentStatusRequestFilterSensitiveLog: (
|
|
1375
1047
|
obj: UpdateEnrollmentStatusRequest
|
|
1376
1048
|
) => any;
|
|
1377
|
-
|
|
1378
1049
|
export declare const UpdateEnrollmentStatusResponseFilterSensitiveLog: (
|
|
1379
1050
|
obj: UpdateEnrollmentStatusResponse
|
|
1380
1051
|
) => any;
|