@aws-sdk/client-compute-optimizer 3.47.1 → 3.50.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 +35 -0
- package/dist-cjs/models/models_0.js +33 -3
- package/dist-cjs/protocols/Aws_json1_0.js +22 -0
- package/dist-es/models/models_0.js +30 -0
- package/dist-es/protocols/Aws_json1_0.js +23 -2
- package/dist-types/models/models_0.d.ts +209 -18
- package/package.json +39 -33
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +0 -95
- package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +0 -91
- package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationExportJobsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ExportEBSVolumeRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ExportEC2InstanceRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEBSVolumeRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEC2InstanceRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEnrollmentStatusCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetLambdaFunctionRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetRecommendationSummariesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -18
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -4
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -1390
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,1390 +0,0 @@
|
|
|
1
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
|
|
3
|
-
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
message?: string;
|
|
7
|
-
}
|
|
8
|
-
export declare enum Status {
|
|
9
|
-
ACTIVE = "Active",
|
|
10
|
-
FAILED = "Failed",
|
|
11
|
-
INACTIVE = "Inactive",
|
|
12
|
-
PENDING = "Pending"
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface AccountEnrollmentStatus {
|
|
16
|
-
|
|
17
|
-
accountId?: string;
|
|
18
|
-
|
|
19
|
-
status?: Status | string;
|
|
20
|
-
|
|
21
|
-
statusReason?: string;
|
|
22
|
-
|
|
23
|
-
lastUpdatedTimestamp?: Date;
|
|
24
|
-
}
|
|
25
|
-
export declare namespace AccountEnrollmentStatus {
|
|
26
|
-
|
|
27
|
-
const filterSensitiveLog: (obj: AccountEnrollmentStatus) => any;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export interface AutoScalingGroupConfiguration {
|
|
31
|
-
|
|
32
|
-
desiredCapacity?: number;
|
|
33
|
-
|
|
34
|
-
minSize?: number;
|
|
35
|
-
|
|
36
|
-
maxSize?: number;
|
|
37
|
-
|
|
38
|
-
instanceType?: string;
|
|
39
|
-
}
|
|
40
|
-
export declare namespace AutoScalingGroupConfiguration {
|
|
41
|
-
|
|
42
|
-
const filterSensitiveLog: (obj: AutoScalingGroupConfiguration) => any;
|
|
43
|
-
}
|
|
44
|
-
export declare enum CurrentPerformanceRisk {
|
|
45
|
-
HIGH = "High",
|
|
46
|
-
LOW = "Low",
|
|
47
|
-
MEDIUM = "Medium",
|
|
48
|
-
VERY_LOW = "VeryLow"
|
|
49
|
-
}
|
|
50
|
-
export declare enum CpuVendorArchitecture {
|
|
51
|
-
AWS_ARM64 = "AWS_ARM64",
|
|
52
|
-
CURRENT = "CURRENT"
|
|
53
|
-
}
|
|
54
|
-
export declare enum EnhancedInfrastructureMetrics {
|
|
55
|
-
ACTIVE = "Active",
|
|
56
|
-
INACTIVE = "Inactive"
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export interface EffectiveRecommendationPreferences {
|
|
60
|
-
|
|
61
|
-
cpuVendorArchitectures?: (CpuVendorArchitecture | string)[];
|
|
62
|
-
|
|
63
|
-
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
64
|
-
}
|
|
65
|
-
export declare namespace EffectiveRecommendationPreferences {
|
|
66
|
-
|
|
67
|
-
const filterSensitiveLog: (obj: EffectiveRecommendationPreferences) => any;
|
|
68
|
-
}
|
|
69
|
-
export declare enum Finding {
|
|
70
|
-
NOT_OPTIMIZED = "NotOptimized",
|
|
71
|
-
OPTIMIZED = "Optimized",
|
|
72
|
-
OVER_PROVISIONED = "Overprovisioned",
|
|
73
|
-
UNDER_PROVISIONED = "Underprovisioned"
|
|
74
|
-
}
|
|
75
|
-
export declare enum MetricName {
|
|
76
|
-
CPU = "Cpu",
|
|
77
|
-
DISK_READ_BYTES_PER_SECOND = "DISK_READ_BYTES_PER_SECOND",
|
|
78
|
-
DISK_READ_OPS_PER_SECOND = "DISK_READ_OPS_PER_SECOND",
|
|
79
|
-
DISK_WRITE_BYTES_PER_SECOND = "DISK_WRITE_BYTES_PER_SECOND",
|
|
80
|
-
DISK_WRITE_OPS_PER_SECOND = "DISK_WRITE_OPS_PER_SECOND",
|
|
81
|
-
EBS_READ_BYTES_PER_SECOND = "EBS_READ_BYTES_PER_SECOND",
|
|
82
|
-
EBS_READ_OPS_PER_SECOND = "EBS_READ_OPS_PER_SECOND",
|
|
83
|
-
EBS_WRITE_BYTES_PER_SECOND = "EBS_WRITE_BYTES_PER_SECOND",
|
|
84
|
-
EBS_WRITE_OPS_PER_SECOND = "EBS_WRITE_OPS_PER_SECOND",
|
|
85
|
-
MEMORY = "Memory",
|
|
86
|
-
NETWORK_IN_BYTES_PER_SECOND = "NETWORK_IN_BYTES_PER_SECOND",
|
|
87
|
-
NETWORK_OUT_BYTES_PER_SECOND = "NETWORK_OUT_BYTES_PER_SECOND",
|
|
88
|
-
NETWORK_PACKETS_IN_PER_SECOND = "NETWORK_PACKETS_IN_PER_SECOND",
|
|
89
|
-
NETWORK_PACKETS_OUT_PER_SECOND = "NETWORK_PACKETS_OUT_PER_SECOND"
|
|
90
|
-
}
|
|
91
|
-
export declare enum MetricStatistic {
|
|
92
|
-
AVERAGE = "Average",
|
|
93
|
-
MAXIMUM = "Maximum"
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export interface UtilizationMetric {
|
|
97
|
-
|
|
98
|
-
name?: MetricName | string;
|
|
99
|
-
|
|
100
|
-
statistic?: MetricStatistic | string;
|
|
101
|
-
|
|
102
|
-
value?: number;
|
|
103
|
-
}
|
|
104
|
-
export declare namespace UtilizationMetric {
|
|
105
|
-
|
|
106
|
-
const filterSensitiveLog: (obj: UtilizationMetric) => any;
|
|
107
|
-
}
|
|
108
|
-
export declare enum Currency {
|
|
109
|
-
CNY = "CNY",
|
|
110
|
-
USD = "USD"
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
export interface EstimatedMonthlySavings {
|
|
114
|
-
|
|
115
|
-
currency?: Currency | string;
|
|
116
|
-
|
|
117
|
-
value?: number;
|
|
118
|
-
}
|
|
119
|
-
export declare namespace EstimatedMonthlySavings {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: EstimatedMonthlySavings) => any;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export interface SavingsOpportunity {
|
|
125
|
-
|
|
126
|
-
savingsOpportunityPercentage?: number;
|
|
127
|
-
|
|
128
|
-
estimatedMonthlySavings?: EstimatedMonthlySavings;
|
|
129
|
-
}
|
|
130
|
-
export declare namespace SavingsOpportunity {
|
|
131
|
-
|
|
132
|
-
const filterSensitiveLog: (obj: SavingsOpportunity) => any;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
export interface AutoScalingGroupRecommendationOption {
|
|
136
|
-
|
|
137
|
-
configuration?: AutoScalingGroupConfiguration;
|
|
138
|
-
|
|
139
|
-
projectedUtilizationMetrics?: UtilizationMetric[];
|
|
140
|
-
|
|
141
|
-
performanceRisk?: number;
|
|
142
|
-
|
|
143
|
-
rank?: number;
|
|
144
|
-
|
|
145
|
-
savingsOpportunity?: SavingsOpportunity;
|
|
146
|
-
}
|
|
147
|
-
export declare namespace AutoScalingGroupRecommendationOption {
|
|
148
|
-
|
|
149
|
-
const filterSensitiveLog: (obj: AutoScalingGroupRecommendationOption) => any;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
export interface AutoScalingGroupRecommendation {
|
|
153
|
-
|
|
154
|
-
accountId?: string;
|
|
155
|
-
|
|
156
|
-
autoScalingGroupArn?: string;
|
|
157
|
-
|
|
158
|
-
autoScalingGroupName?: string;
|
|
159
|
-
|
|
160
|
-
finding?: Finding | string;
|
|
161
|
-
|
|
162
|
-
utilizationMetrics?: UtilizationMetric[];
|
|
163
|
-
|
|
164
|
-
lookBackPeriodInDays?: number;
|
|
165
|
-
|
|
166
|
-
currentConfiguration?: AutoScalingGroupConfiguration;
|
|
167
|
-
|
|
168
|
-
recommendationOptions?: AutoScalingGroupRecommendationOption[];
|
|
169
|
-
|
|
170
|
-
lastRefreshTimestamp?: Date;
|
|
171
|
-
|
|
172
|
-
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
173
|
-
|
|
174
|
-
effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
|
|
175
|
-
}
|
|
176
|
-
export declare namespace AutoScalingGroupRecommendation {
|
|
177
|
-
|
|
178
|
-
const filterSensitiveLog: (obj: AutoScalingGroupRecommendation) => any;
|
|
179
|
-
}
|
|
180
|
-
export declare enum RecommendationPreferenceName {
|
|
181
|
-
ENHANCED_INFRASTRUCTURE_METRICS = "EnhancedInfrastructureMetrics"
|
|
182
|
-
}
|
|
183
|
-
export declare enum ResourceType {
|
|
184
|
-
AUTO_SCALING_GROUP = "AutoScalingGroup",
|
|
185
|
-
EBS_VOLUME = "EbsVolume",
|
|
186
|
-
EC2_INSTANCE = "Ec2Instance",
|
|
187
|
-
LAMBDA_FUNCTION = "LambdaFunction"
|
|
188
|
-
}
|
|
189
|
-
export declare enum ScopeName {
|
|
190
|
-
ACCOUNT_ID = "AccountId",
|
|
191
|
-
ORGANIZATION = "Organization",
|
|
192
|
-
RESOURCE_ARN = "ResourceArn"
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
export interface Scope {
|
|
196
|
-
|
|
197
|
-
name?: ScopeName | string;
|
|
198
|
-
|
|
199
|
-
value?: string;
|
|
200
|
-
}
|
|
201
|
-
export declare namespace Scope {
|
|
202
|
-
|
|
203
|
-
const filterSensitiveLog: (obj: Scope) => any;
|
|
204
|
-
}
|
|
205
|
-
export interface DeleteRecommendationPreferencesRequest {
|
|
206
|
-
|
|
207
|
-
resourceType: ResourceType | string | undefined;
|
|
208
|
-
|
|
209
|
-
scope?: Scope;
|
|
210
|
-
|
|
211
|
-
recommendationPreferenceNames: (RecommendationPreferenceName | string)[] | undefined;
|
|
212
|
-
}
|
|
213
|
-
export declare namespace DeleteRecommendationPreferencesRequest {
|
|
214
|
-
|
|
215
|
-
const filterSensitiveLog: (obj: DeleteRecommendationPreferencesRequest) => any;
|
|
216
|
-
}
|
|
217
|
-
export interface DeleteRecommendationPreferencesResponse {
|
|
218
|
-
}
|
|
219
|
-
export declare namespace DeleteRecommendationPreferencesResponse {
|
|
220
|
-
|
|
221
|
-
const filterSensitiveLog: (obj: DeleteRecommendationPreferencesResponse) => any;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
225
|
-
name: "InternalServerException";
|
|
226
|
-
$fault: "server";
|
|
227
|
-
message?: string;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
|
|
231
|
-
name: "InvalidParameterValueException";
|
|
232
|
-
$fault: "client";
|
|
233
|
-
message?: string;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
export interface MissingAuthenticationToken extends __SmithyException, $MetadataBearer {
|
|
237
|
-
name: "MissingAuthenticationToken";
|
|
238
|
-
$fault: "client";
|
|
239
|
-
message?: string;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
export interface OptInRequiredException extends __SmithyException, $MetadataBearer {
|
|
243
|
-
name: "OptInRequiredException";
|
|
244
|
-
$fault: "client";
|
|
245
|
-
message?: string;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
249
|
-
name: "ResourceNotFoundException";
|
|
250
|
-
$fault: "client";
|
|
251
|
-
message?: string;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
255
|
-
name: "ServiceUnavailableException";
|
|
256
|
-
$fault: "server";
|
|
257
|
-
message?: string;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
261
|
-
name: "ThrottlingException";
|
|
262
|
-
$fault: "client";
|
|
263
|
-
message: string | undefined;
|
|
264
|
-
}
|
|
265
|
-
export declare enum JobFilterName {
|
|
266
|
-
JOB_STATUS = "JobStatus",
|
|
267
|
-
RESOURCE_TYPE = "ResourceType"
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
export interface JobFilter {
|
|
271
|
-
|
|
272
|
-
name?: JobFilterName | string;
|
|
273
|
-
|
|
274
|
-
values?: string[];
|
|
275
|
-
}
|
|
276
|
-
export declare namespace JobFilter {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: JobFilter) => any;
|
|
279
|
-
}
|
|
280
|
-
export interface DescribeRecommendationExportJobsRequest {
|
|
281
|
-
|
|
282
|
-
jobIds?: string[];
|
|
283
|
-
|
|
284
|
-
filters?: JobFilter[];
|
|
285
|
-
|
|
286
|
-
nextToken?: string;
|
|
287
|
-
|
|
288
|
-
maxResults?: number;
|
|
289
|
-
}
|
|
290
|
-
export declare namespace DescribeRecommendationExportJobsRequest {
|
|
291
|
-
|
|
292
|
-
const filterSensitiveLog: (obj: DescribeRecommendationExportJobsRequest) => any;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
export interface S3Destination {
|
|
296
|
-
|
|
297
|
-
bucket?: string;
|
|
298
|
-
|
|
299
|
-
key?: string;
|
|
300
|
-
|
|
301
|
-
metadataKey?: string;
|
|
302
|
-
}
|
|
303
|
-
export declare namespace S3Destination {
|
|
304
|
-
|
|
305
|
-
const filterSensitiveLog: (obj: S3Destination) => any;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
export interface ExportDestination {
|
|
309
|
-
|
|
310
|
-
s3?: S3Destination;
|
|
311
|
-
}
|
|
312
|
-
export declare namespace ExportDestination {
|
|
313
|
-
|
|
314
|
-
const filterSensitiveLog: (obj: ExportDestination) => any;
|
|
315
|
-
}
|
|
316
|
-
export declare enum JobStatus {
|
|
317
|
-
COMPLETE = "Complete",
|
|
318
|
-
FAILED = "Failed",
|
|
319
|
-
IN_PROGRESS = "InProgress",
|
|
320
|
-
QUEUED = "Queued"
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
export interface RecommendationExportJob {
|
|
324
|
-
|
|
325
|
-
jobId?: string;
|
|
326
|
-
|
|
327
|
-
destination?: ExportDestination;
|
|
328
|
-
|
|
329
|
-
resourceType?: ResourceType | string;
|
|
330
|
-
|
|
331
|
-
status?: JobStatus | string;
|
|
332
|
-
|
|
333
|
-
creationTimestamp?: Date;
|
|
334
|
-
|
|
335
|
-
lastUpdatedTimestamp?: Date;
|
|
336
|
-
|
|
337
|
-
failureReason?: string;
|
|
338
|
-
}
|
|
339
|
-
export declare namespace RecommendationExportJob {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: RecommendationExportJob) => any;
|
|
342
|
-
}
|
|
343
|
-
export interface DescribeRecommendationExportJobsResponse {
|
|
344
|
-
|
|
345
|
-
recommendationExportJobs?: RecommendationExportJob[];
|
|
346
|
-
|
|
347
|
-
nextToken?: string;
|
|
348
|
-
}
|
|
349
|
-
export declare namespace DescribeRecommendationExportJobsResponse {
|
|
350
|
-
|
|
351
|
-
const filterSensitiveLog: (obj: DescribeRecommendationExportJobsResponse) => any;
|
|
352
|
-
}
|
|
353
|
-
export declare enum ExportableAutoScalingGroupField {
|
|
354
|
-
ACCOUNT_ID = "AccountId",
|
|
355
|
-
AUTO_SCALING_GROUP_ARN = "AutoScalingGroupArn",
|
|
356
|
-
AUTO_SCALING_GROUP_NAME = "AutoScalingGroupName",
|
|
357
|
-
CURRENT_CONFIGURATION_DESIRED_CAPACITY = "CurrentConfigurationDesiredCapacity",
|
|
358
|
-
CURRENT_CONFIGURATION_INSTANCE_TYPE = "CurrentConfigurationInstanceType",
|
|
359
|
-
CURRENT_CONFIGURATION_MAX_SIZE = "CurrentConfigurationMaxSize",
|
|
360
|
-
CURRENT_CONFIGURATION_MIN_SIZE = "CurrentConfigurationMinSize",
|
|
361
|
-
CURRENT_MEMORY = "CurrentMemory",
|
|
362
|
-
CURRENT_NETWORK = "CurrentNetwork",
|
|
363
|
-
CURRENT_ON_DEMAND_PRICE = "CurrentOnDemandPrice",
|
|
364
|
-
CURRENT_PERFORMANCE_RISK = "CurrentPerformanceRisk",
|
|
365
|
-
CURRENT_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE = "CurrentStandardOneYearNoUpfrontReservedPrice",
|
|
366
|
-
CURRENT_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE = "CurrentStandardThreeYearNoUpfrontReservedPrice",
|
|
367
|
-
CURRENT_STORAGE = "CurrentStorage",
|
|
368
|
-
CURRENT_VCPUS = "CurrentVCpus",
|
|
369
|
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_CPU_VENDOR_ARCHITECTURES = "EffectiveRecommendationPreferencesCpuVendorArchitectures",
|
|
370
|
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_ENHANCED_INFRASTRUCTURE_METRICS = "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
|
|
371
|
-
FINDING = "Finding",
|
|
372
|
-
LAST_REFRESH_TIMESTAMP = "LastRefreshTimestamp",
|
|
373
|
-
LOOKBACK_PERIOD_IN_DAYS = "LookbackPeriodInDays",
|
|
374
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_DESIRED_CAPACITY = "RecommendationOptionsConfigurationDesiredCapacity",
|
|
375
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_INSTANCE_TYPE = "RecommendationOptionsConfigurationInstanceType",
|
|
376
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_MAX_SIZE = "RecommendationOptionsConfigurationMaxSize",
|
|
377
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_MIN_SIZE = "RecommendationOptionsConfigurationMinSize",
|
|
378
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY = "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
379
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE = "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
380
|
-
RECOMMENDATION_OPTIONS_MEMORY = "RecommendationOptionsMemory",
|
|
381
|
-
RECOMMENDATION_OPTIONS_NETWORK = "RecommendationOptionsNetwork",
|
|
382
|
-
RECOMMENDATION_OPTIONS_ON_DEMAND_PRICE = "RecommendationOptionsOnDemandPrice",
|
|
383
|
-
RECOMMENDATION_OPTIONS_PERFORMANCE_RISK = "RecommendationOptionsPerformanceRisk",
|
|
384
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_CPU_MAXIMUM = "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum",
|
|
385
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM = "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum",
|
|
386
|
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE = "RecommendationOptionsSavingsOpportunityPercentage",
|
|
387
|
-
RECOMMENDATION_OPTIONS_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE = "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice",
|
|
388
|
-
RECOMMENDATION_OPTIONS_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE = "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice",
|
|
389
|
-
RECOMMENDATION_OPTIONS_STORAGE = "RecommendationOptionsStorage",
|
|
390
|
-
RECOMMENDATION_OPTIONS_VCPUS = "RecommendationOptionsVcpus",
|
|
391
|
-
UTILIZATION_METRICS_CPU_MAXIMUM = "UtilizationMetricsCpuMaximum",
|
|
392
|
-
UTILIZATION_METRICS_DISK_READ_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskReadBytesPerSecondMaximum",
|
|
393
|
-
UTILIZATION_METRICS_DISK_READ_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskReadOpsPerSecondMaximum",
|
|
394
|
-
UTILIZATION_METRICS_DISK_WRITE_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskWriteBytesPerSecondMaximum",
|
|
395
|
-
UTILIZATION_METRICS_DISK_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskWriteOpsPerSecondMaximum",
|
|
396
|
-
UTILIZATION_METRICS_EBS_READ_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsReadBytesPerSecondMaximum",
|
|
397
|
-
UTILIZATION_METRICS_EBS_READ_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsReadOpsPerSecondMaximum",
|
|
398
|
-
UTILIZATION_METRICS_EBS_WRITE_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsWriteBytesPerSecondMaximum",
|
|
399
|
-
UTILIZATION_METRICS_EBS_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsWriteOpsPerSecondMaximum",
|
|
400
|
-
UTILIZATION_METRICS_MEMORY_MAXIMUM = "UtilizationMetricsMemoryMaximum",
|
|
401
|
-
UTILIZATION_METRICS_NETWORK_IN_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkInBytesPerSecondMaximum",
|
|
402
|
-
UTILIZATION_METRICS_NETWORK_OUT_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkOutBytesPerSecondMaximum",
|
|
403
|
-
UTILIZATION_METRICS_NETWORK_PACKETS_IN_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsInPerSecondMaximum",
|
|
404
|
-
UTILIZATION_METRICS_NETWORK_PACKETS_OUT_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsOutPerSecondMaximum"
|
|
405
|
-
}
|
|
406
|
-
export declare enum FileFormat {
|
|
407
|
-
CSV = "Csv"
|
|
408
|
-
}
|
|
409
|
-
export declare enum FilterName {
|
|
410
|
-
FINDING = "Finding",
|
|
411
|
-
FINDING_REASON_CODES = "FindingReasonCodes",
|
|
412
|
-
RECOMMENDATION_SOURCE_TYPE = "RecommendationSourceType"
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
export interface Filter {
|
|
416
|
-
|
|
417
|
-
name?: FilterName | string;
|
|
418
|
-
|
|
419
|
-
values?: string[];
|
|
420
|
-
}
|
|
421
|
-
export declare namespace Filter {
|
|
422
|
-
|
|
423
|
-
const filterSensitiveLog: (obj: Filter) => any;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
export interface RecommendationPreferences {
|
|
427
|
-
|
|
428
|
-
cpuVendorArchitectures?: (CpuVendorArchitecture | string)[];
|
|
429
|
-
}
|
|
430
|
-
export declare namespace RecommendationPreferences {
|
|
431
|
-
|
|
432
|
-
const filterSensitiveLog: (obj: RecommendationPreferences) => any;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
export interface S3DestinationConfig {
|
|
436
|
-
|
|
437
|
-
bucket?: string;
|
|
438
|
-
|
|
439
|
-
keyPrefix?: string;
|
|
440
|
-
}
|
|
441
|
-
export declare namespace S3DestinationConfig {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: S3DestinationConfig) => any;
|
|
444
|
-
}
|
|
445
|
-
export interface ExportAutoScalingGroupRecommendationsRequest {
|
|
446
|
-
|
|
447
|
-
accountIds?: string[];
|
|
448
|
-
|
|
449
|
-
filters?: Filter[];
|
|
450
|
-
|
|
451
|
-
fieldsToExport?: (ExportableAutoScalingGroupField | string)[];
|
|
452
|
-
|
|
453
|
-
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
454
|
-
|
|
455
|
-
fileFormat?: FileFormat | string;
|
|
456
|
-
|
|
457
|
-
includeMemberAccounts?: boolean;
|
|
458
|
-
|
|
459
|
-
recommendationPreferences?: RecommendationPreferences;
|
|
460
|
-
}
|
|
461
|
-
export declare namespace ExportAutoScalingGroupRecommendationsRequest {
|
|
462
|
-
|
|
463
|
-
const filterSensitiveLog: (obj: ExportAutoScalingGroupRecommendationsRequest) => any;
|
|
464
|
-
}
|
|
465
|
-
export interface ExportAutoScalingGroupRecommendationsResponse {
|
|
466
|
-
|
|
467
|
-
jobId?: string;
|
|
468
|
-
|
|
469
|
-
s3Destination?: S3Destination;
|
|
470
|
-
}
|
|
471
|
-
export declare namespace ExportAutoScalingGroupRecommendationsResponse {
|
|
472
|
-
|
|
473
|
-
const filterSensitiveLog: (obj: ExportAutoScalingGroupRecommendationsResponse) => any;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
477
|
-
name: "LimitExceededException";
|
|
478
|
-
$fault: "client";
|
|
479
|
-
message?: string;
|
|
480
|
-
}
|
|
481
|
-
export declare enum ExportableVolumeField {
|
|
482
|
-
ACCOUNT_ID = "AccountId",
|
|
483
|
-
CURRENT_CONFIGURATION_VOLUME_BASELINE_IOPS = "CurrentConfigurationVolumeBaselineIOPS",
|
|
484
|
-
CURRENT_CONFIGURATION_VOLUME_BASELINE_THROUGHPUT = "CurrentConfigurationVolumeBaselineThroughput",
|
|
485
|
-
CURRENT_CONFIGURATION_VOLUME_BURST_IOPS = "CurrentConfigurationVolumeBurstIOPS",
|
|
486
|
-
CURRENT_CONFIGURATION_VOLUME_BURST_THROUGHPUT = "CurrentConfigurationVolumeBurstThroughput",
|
|
487
|
-
CURRENT_CONFIGURATION_VOLUME_SIZE = "CurrentConfigurationVolumeSize",
|
|
488
|
-
CURRENT_CONFIGURATION_VOLUME_TYPE = "CurrentConfigurationVolumeType",
|
|
489
|
-
CURRENT_MONTHLY_PRICE = "CurrentMonthlyPrice",
|
|
490
|
-
CURRENT_PERFORMANCE_RISK = "CurrentPerformanceRisk",
|
|
491
|
-
FINDING = "Finding",
|
|
492
|
-
LAST_REFRESH_TIMESTAMP = "LastRefreshTimestamp",
|
|
493
|
-
LOOKBACK_PERIOD_IN_DAYS = "LookbackPeriodInDays",
|
|
494
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_BASELINE_IOPS = "RecommendationOptionsConfigurationVolumeBaselineIOPS",
|
|
495
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_BASELINE_THROUGHPUT = "RecommendationOptionsConfigurationVolumeBaselineThroughput",
|
|
496
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_BURST_IOPS = "RecommendationOptionsConfigurationVolumeBurstIOPS",
|
|
497
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_BURST_THROUGHPUT = "RecommendationOptionsConfigurationVolumeBurstThroughput",
|
|
498
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_SIZE = "RecommendationOptionsConfigurationVolumeSize",
|
|
499
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_VOLUME_TYPE = "RecommendationOptionsConfigurationVolumeType",
|
|
500
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY = "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
501
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE = "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
502
|
-
RECOMMENDATION_OPTIONS_MONTHLY_PRICE = "RecommendationOptionsMonthlyPrice",
|
|
503
|
-
RECOMMENDATION_OPTIONS_PERFORMANCE_RISK = "RecommendationOptionsPerformanceRisk",
|
|
504
|
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE = "RecommendationOptionsSavingsOpportunityPercentage",
|
|
505
|
-
UTILIZATION_METRICS_VOLUME_READ_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsVolumeReadBytesPerSecondMaximum",
|
|
506
|
-
UTILIZATION_METRICS_VOLUME_READ_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsVolumeReadOpsPerSecondMaximum",
|
|
507
|
-
UTILIZATION_METRICS_VOLUME_WRITE_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsVolumeWriteBytesPerSecondMaximum",
|
|
508
|
-
UTILIZATION_METRICS_VOLUME_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsVolumeWriteOpsPerSecondMaximum",
|
|
509
|
-
VOLUME_ARN = "VolumeArn"
|
|
510
|
-
}
|
|
511
|
-
export declare enum EBSFilterName {
|
|
512
|
-
FINDING = "Finding"
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
export interface EBSFilter {
|
|
516
|
-
|
|
517
|
-
name?: EBSFilterName | string;
|
|
518
|
-
|
|
519
|
-
values?: string[];
|
|
520
|
-
}
|
|
521
|
-
export declare namespace EBSFilter {
|
|
522
|
-
|
|
523
|
-
const filterSensitiveLog: (obj: EBSFilter) => any;
|
|
524
|
-
}
|
|
525
|
-
export interface ExportEBSVolumeRecommendationsRequest {
|
|
526
|
-
|
|
527
|
-
accountIds?: string[];
|
|
528
|
-
|
|
529
|
-
filters?: EBSFilter[];
|
|
530
|
-
|
|
531
|
-
fieldsToExport?: (ExportableVolumeField | string)[];
|
|
532
|
-
|
|
533
|
-
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
534
|
-
|
|
535
|
-
fileFormat?: FileFormat | string;
|
|
536
|
-
|
|
537
|
-
includeMemberAccounts?: boolean;
|
|
538
|
-
}
|
|
539
|
-
export declare namespace ExportEBSVolumeRecommendationsRequest {
|
|
540
|
-
|
|
541
|
-
const filterSensitiveLog: (obj: ExportEBSVolumeRecommendationsRequest) => any;
|
|
542
|
-
}
|
|
543
|
-
export interface ExportEBSVolumeRecommendationsResponse {
|
|
544
|
-
|
|
545
|
-
jobId?: string;
|
|
546
|
-
|
|
547
|
-
s3Destination?: S3Destination;
|
|
548
|
-
}
|
|
549
|
-
export declare namespace ExportEBSVolumeRecommendationsResponse {
|
|
550
|
-
|
|
551
|
-
const filterSensitiveLog: (obj: ExportEBSVolumeRecommendationsResponse) => any;
|
|
552
|
-
}
|
|
553
|
-
export declare enum ExportableInstanceField {
|
|
554
|
-
ACCOUNT_ID = "AccountId",
|
|
555
|
-
CURRENT_INSTANCE_TYPE = "CurrentInstanceType",
|
|
556
|
-
CURRENT_MEMORY = "CurrentMemory",
|
|
557
|
-
CURRENT_NETWORK = "CurrentNetwork",
|
|
558
|
-
CURRENT_ON_DEMAND_PRICE = "CurrentOnDemandPrice",
|
|
559
|
-
CURRENT_PERFORMANCE_RISK = "CurrentPerformanceRisk",
|
|
560
|
-
CURRENT_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE = "CurrentStandardOneYearNoUpfrontReservedPrice",
|
|
561
|
-
CURRENT_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE = "CurrentStandardThreeYearNoUpfrontReservedPrice",
|
|
562
|
-
CURRENT_STORAGE = "CurrentStorage",
|
|
563
|
-
CURRENT_VCPUS = "CurrentVCpus",
|
|
564
|
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_CPU_VENDOR_ARCHITECTURES = "EffectiveRecommendationPreferencesCpuVendorArchitectures",
|
|
565
|
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_ENHANCED_INFRASTRUCTURE_METRICS = "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics",
|
|
566
|
-
FINDING = "Finding",
|
|
567
|
-
Finding_Reason_Codes = "FindingReasonCodes",
|
|
568
|
-
INSTANCE_ARN = "InstanceArn",
|
|
569
|
-
INSTANCE_NAME = "InstanceName",
|
|
570
|
-
LAST_REFRESH_TIMESTAMP = "LastRefreshTimestamp",
|
|
571
|
-
LOOKBACK_PERIOD_IN_DAYS = "LookbackPeriodInDays",
|
|
572
|
-
RECOMMENDATIONS_SOURCES_RECOMMENDATION_SOURCE_ARN = "RecommendationsSourcesRecommendationSourceArn",
|
|
573
|
-
RECOMMENDATIONS_SOURCES_RECOMMENDATION_SOURCE_TYPE = "RecommendationsSourcesRecommendationSourceType",
|
|
574
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY = "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
575
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE = "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
576
|
-
RECOMMENDATION_OPTIONS_INSTANCE_TYPE = "RecommendationOptionsInstanceType",
|
|
577
|
-
RECOMMENDATION_OPTIONS_MEMORY = "RecommendationOptionsMemory",
|
|
578
|
-
RECOMMENDATION_OPTIONS_NETWORK = "RecommendationOptionsNetwork",
|
|
579
|
-
RECOMMENDATION_OPTIONS_ON_DEMAND_PRICE = "RecommendationOptionsOnDemandPrice",
|
|
580
|
-
RECOMMENDATION_OPTIONS_PERFORMANCE_RISK = "RecommendationOptionsPerformanceRisk",
|
|
581
|
-
RECOMMENDATION_OPTIONS_PLATFORM_DIFFERENCES = "RecommendationOptionsPlatformDifferences",
|
|
582
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_CPU_MAXIMUM = "RecommendationOptionsProjectedUtilizationMetricsCpuMaximum",
|
|
583
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM = "RecommendationOptionsProjectedUtilizationMetricsMemoryMaximum",
|
|
584
|
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE = "RecommendationOptionsSavingsOpportunityPercentage",
|
|
585
|
-
RECOMMENDATION_OPTIONS_STANDARD_ONE_YEAR_NO_UPFRONT_RESERVED_PRICE = "RecommendationOptionsStandardOneYearNoUpfrontReservedPrice",
|
|
586
|
-
RECOMMENDATION_OPTIONS_STANDARD_THREE_YEAR_NO_UPFRONT_RESERVED_PRICE = "RecommendationOptionsStandardThreeYearNoUpfrontReservedPrice",
|
|
587
|
-
RECOMMENDATION_OPTIONS_STORAGE = "RecommendationOptionsStorage",
|
|
588
|
-
RECOMMENDATION_OPTIONS_VCPUS = "RecommendationOptionsVcpus",
|
|
589
|
-
UTILIZATION_METRICS_CPU_MAXIMUM = "UtilizationMetricsCpuMaximum",
|
|
590
|
-
UTILIZATION_METRICS_DISK_READ_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskReadBytesPerSecondMaximum",
|
|
591
|
-
UTILIZATION_METRICS_DISK_READ_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskReadOpsPerSecondMaximum",
|
|
592
|
-
UTILIZATION_METRICS_DISK_WRITE_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskWriteBytesPerSecondMaximum",
|
|
593
|
-
UTILIZATION_METRICS_DISK_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsDiskWriteOpsPerSecondMaximum",
|
|
594
|
-
UTILIZATION_METRICS_EBS_READ_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsReadBytesPerSecondMaximum",
|
|
595
|
-
UTILIZATION_METRICS_EBS_READ_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsReadOpsPerSecondMaximum",
|
|
596
|
-
UTILIZATION_METRICS_EBS_WRITE_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsWriteBytesPerSecondMaximum",
|
|
597
|
-
UTILIZATION_METRICS_EBS_WRITE_OPS_PER_SECOND_MAXIMUM = "UtilizationMetricsEbsWriteOpsPerSecondMaximum",
|
|
598
|
-
UTILIZATION_METRICS_MEMORY_MAXIMUM = "UtilizationMetricsMemoryMaximum",
|
|
599
|
-
UTILIZATION_METRICS_NETWORK_IN_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkInBytesPerSecondMaximum",
|
|
600
|
-
UTILIZATION_METRICS_NETWORK_OUT_BYTES_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkOutBytesPerSecondMaximum",
|
|
601
|
-
UTILIZATION_METRICS_NETWORK_PACKETS_IN_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsInPerSecondMaximum",
|
|
602
|
-
UTILIZATION_METRICS_NETWORK_PACKETS_OUT_PER_SECOND_MAXIMUM = "UtilizationMetricsNetworkPacketsOutPerSecondMaximum"
|
|
603
|
-
}
|
|
604
|
-
export interface ExportEC2InstanceRecommendationsRequest {
|
|
605
|
-
|
|
606
|
-
accountIds?: string[];
|
|
607
|
-
|
|
608
|
-
filters?: Filter[];
|
|
609
|
-
|
|
610
|
-
fieldsToExport?: (ExportableInstanceField | string)[];
|
|
611
|
-
|
|
612
|
-
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
613
|
-
|
|
614
|
-
fileFormat?: FileFormat | string;
|
|
615
|
-
|
|
616
|
-
includeMemberAccounts?: boolean;
|
|
617
|
-
|
|
618
|
-
recommendationPreferences?: RecommendationPreferences;
|
|
619
|
-
}
|
|
620
|
-
export declare namespace ExportEC2InstanceRecommendationsRequest {
|
|
621
|
-
|
|
622
|
-
const filterSensitiveLog: (obj: ExportEC2InstanceRecommendationsRequest) => any;
|
|
623
|
-
}
|
|
624
|
-
export interface ExportEC2InstanceRecommendationsResponse {
|
|
625
|
-
|
|
626
|
-
jobId?: string;
|
|
627
|
-
|
|
628
|
-
s3Destination?: S3Destination;
|
|
629
|
-
}
|
|
630
|
-
export declare namespace ExportEC2InstanceRecommendationsResponse {
|
|
631
|
-
|
|
632
|
-
const filterSensitiveLog: (obj: ExportEC2InstanceRecommendationsResponse) => any;
|
|
633
|
-
}
|
|
634
|
-
export declare enum ExportableLambdaFunctionField {
|
|
635
|
-
ACCOUNT_ID = "AccountId",
|
|
636
|
-
CURRENT_CONFIGURATION_MEMORY_SIZE = "CurrentConfigurationMemorySize",
|
|
637
|
-
CURRENT_CONFIGURATION_TIMEOUT = "CurrentConfigurationTimeout",
|
|
638
|
-
CURRENT_COST_AVERAGE = "CurrentCostAverage",
|
|
639
|
-
CURRENT_COST_TOTAL = "CurrentCostTotal",
|
|
640
|
-
CURRENT_PERFORMANCE_RISK = "CurrentPerformanceRisk",
|
|
641
|
-
FINDING = "Finding",
|
|
642
|
-
FINDING_REASON_CODES = "FindingReasonCodes",
|
|
643
|
-
FUNCTION_ARN = "FunctionArn",
|
|
644
|
-
FUNCTION_VERSION = "FunctionVersion",
|
|
645
|
-
LAST_REFRESH_TIMESTAMP = "LastRefreshTimestamp",
|
|
646
|
-
LOOKBACK_PERIOD_IN_DAYS = "LookbackPeriodInDays",
|
|
647
|
-
NUMBER_OF_INVOCATIONS = "NumberOfInvocations",
|
|
648
|
-
RECOMMENDATION_OPTIONS_CONFIGURATION_MEMORY_SIZE = "RecommendationOptionsConfigurationMemorySize",
|
|
649
|
-
RECOMMENDATION_OPTIONS_COST_HIGH = "RecommendationOptionsCostHigh",
|
|
650
|
-
RECOMMENDATION_OPTIONS_COST_LOW = "RecommendationOptionsCostLow",
|
|
651
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY = "RecommendationOptionsEstimatedMonthlySavingsCurrency",
|
|
652
|
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE = "RecommendationOptionsEstimatedMonthlySavingsValue",
|
|
653
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_EXPECTED = "RecommendationOptionsProjectedUtilizationMetricsDurationExpected",
|
|
654
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_LOWER_BOUND = "RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound",
|
|
655
|
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_UPPER_BOUND = "RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound",
|
|
656
|
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE = "RecommendationOptionsSavingsOpportunityPercentage",
|
|
657
|
-
UTILIZATION_METRICS_DURATION_AVERAGE = "UtilizationMetricsDurationAverage",
|
|
658
|
-
UTILIZATION_METRICS_DURATION_MAXIMUM = "UtilizationMetricsDurationMaximum",
|
|
659
|
-
UTILIZATION_METRICS_MEMORY_AVERAGE = "UtilizationMetricsMemoryAverage",
|
|
660
|
-
UTILIZATION_METRICS_MEMORY_MAXIMUM = "UtilizationMetricsMemoryMaximum"
|
|
661
|
-
}
|
|
662
|
-
export declare enum LambdaFunctionRecommendationFilterName {
|
|
663
|
-
FINDING = "Finding",
|
|
664
|
-
FINDING_REASON_CODE = "FindingReasonCode"
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
export interface LambdaFunctionRecommendationFilter {
|
|
668
|
-
|
|
669
|
-
name?: LambdaFunctionRecommendationFilterName | string;
|
|
670
|
-
|
|
671
|
-
values?: string[];
|
|
672
|
-
}
|
|
673
|
-
export declare namespace LambdaFunctionRecommendationFilter {
|
|
674
|
-
|
|
675
|
-
const filterSensitiveLog: (obj: LambdaFunctionRecommendationFilter) => any;
|
|
676
|
-
}
|
|
677
|
-
export interface ExportLambdaFunctionRecommendationsRequest {
|
|
678
|
-
|
|
679
|
-
accountIds?: string[];
|
|
680
|
-
|
|
681
|
-
filters?: LambdaFunctionRecommendationFilter[];
|
|
682
|
-
|
|
683
|
-
fieldsToExport?: (ExportableLambdaFunctionField | string)[];
|
|
684
|
-
|
|
685
|
-
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
686
|
-
|
|
687
|
-
fileFormat?: FileFormat | string;
|
|
688
|
-
|
|
689
|
-
includeMemberAccounts?: boolean;
|
|
690
|
-
}
|
|
691
|
-
export declare namespace ExportLambdaFunctionRecommendationsRequest {
|
|
692
|
-
|
|
693
|
-
const filterSensitiveLog: (obj: ExportLambdaFunctionRecommendationsRequest) => any;
|
|
694
|
-
}
|
|
695
|
-
export interface ExportLambdaFunctionRecommendationsResponse {
|
|
696
|
-
|
|
697
|
-
jobId?: string;
|
|
698
|
-
|
|
699
|
-
s3Destination?: S3Destination;
|
|
700
|
-
}
|
|
701
|
-
export declare namespace ExportLambdaFunctionRecommendationsResponse {
|
|
702
|
-
|
|
703
|
-
const filterSensitiveLog: (obj: ExportLambdaFunctionRecommendationsResponse) => any;
|
|
704
|
-
}
|
|
705
|
-
export interface GetAutoScalingGroupRecommendationsRequest {
|
|
706
|
-
|
|
707
|
-
accountIds?: string[];
|
|
708
|
-
|
|
709
|
-
autoScalingGroupArns?: string[];
|
|
710
|
-
|
|
711
|
-
nextToken?: string;
|
|
712
|
-
|
|
713
|
-
maxResults?: number;
|
|
714
|
-
|
|
715
|
-
filters?: Filter[];
|
|
716
|
-
|
|
717
|
-
recommendationPreferences?: RecommendationPreferences;
|
|
718
|
-
}
|
|
719
|
-
export declare namespace GetAutoScalingGroupRecommendationsRequest {
|
|
720
|
-
|
|
721
|
-
const filterSensitiveLog: (obj: GetAutoScalingGroupRecommendationsRequest) => any;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
export interface GetRecommendationError {
|
|
725
|
-
|
|
726
|
-
identifier?: string;
|
|
727
|
-
|
|
728
|
-
code?: string;
|
|
729
|
-
|
|
730
|
-
message?: string;
|
|
731
|
-
}
|
|
732
|
-
export declare namespace GetRecommendationError {
|
|
733
|
-
|
|
734
|
-
const filterSensitiveLog: (obj: GetRecommendationError) => any;
|
|
735
|
-
}
|
|
736
|
-
export interface GetAutoScalingGroupRecommendationsResponse {
|
|
737
|
-
|
|
738
|
-
nextToken?: string;
|
|
739
|
-
|
|
740
|
-
autoScalingGroupRecommendations?: AutoScalingGroupRecommendation[];
|
|
741
|
-
|
|
742
|
-
errors?: GetRecommendationError[];
|
|
743
|
-
}
|
|
744
|
-
export declare namespace GetAutoScalingGroupRecommendationsResponse {
|
|
745
|
-
|
|
746
|
-
const filterSensitiveLog: (obj: GetAutoScalingGroupRecommendationsResponse) => any;
|
|
747
|
-
}
|
|
748
|
-
export interface GetEBSVolumeRecommendationsRequest {
|
|
749
|
-
|
|
750
|
-
volumeArns?: string[];
|
|
751
|
-
|
|
752
|
-
nextToken?: string;
|
|
753
|
-
|
|
754
|
-
maxResults?: number;
|
|
755
|
-
|
|
756
|
-
filters?: EBSFilter[];
|
|
757
|
-
|
|
758
|
-
accountIds?: string[];
|
|
759
|
-
}
|
|
760
|
-
export declare namespace GetEBSVolumeRecommendationsRequest {
|
|
761
|
-
|
|
762
|
-
const filterSensitiveLog: (obj: GetEBSVolumeRecommendationsRequest) => any;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
export interface VolumeConfiguration {
|
|
766
|
-
|
|
767
|
-
volumeType?: string;
|
|
768
|
-
|
|
769
|
-
volumeSize?: number;
|
|
770
|
-
|
|
771
|
-
volumeBaselineIOPS?: number;
|
|
772
|
-
|
|
773
|
-
volumeBurstIOPS?: number;
|
|
774
|
-
|
|
775
|
-
volumeBaselineThroughput?: number;
|
|
776
|
-
|
|
777
|
-
volumeBurstThroughput?: number;
|
|
778
|
-
}
|
|
779
|
-
export declare namespace VolumeConfiguration {
|
|
780
|
-
|
|
781
|
-
const filterSensitiveLog: (obj: VolumeConfiguration) => any;
|
|
782
|
-
}
|
|
783
|
-
export declare enum EBSFinding {
|
|
784
|
-
NOT_OPTIMIZED = "NotOptimized",
|
|
785
|
-
OPTIMIZED = "Optimized"
|
|
786
|
-
}
|
|
787
|
-
export declare enum EBSMetricName {
|
|
788
|
-
VOLUME_READ_BYTES_PER_SECOND = "VolumeReadBytesPerSecond",
|
|
789
|
-
VOLUME_READ_OPS_PER_SECOND = "VolumeReadOpsPerSecond",
|
|
790
|
-
VOLUME_WRITE_BYTES_PER_SECOND = "VolumeWriteBytesPerSecond",
|
|
791
|
-
VOLUME_WRITE_OPS_PER_SECOND = "VolumeWriteOpsPerSecond"
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
export interface EBSUtilizationMetric {
|
|
795
|
-
|
|
796
|
-
name?: EBSMetricName | string;
|
|
797
|
-
|
|
798
|
-
statistic?: MetricStatistic | string;
|
|
799
|
-
|
|
800
|
-
value?: number;
|
|
801
|
-
}
|
|
802
|
-
export declare namespace EBSUtilizationMetric {
|
|
803
|
-
|
|
804
|
-
const filterSensitiveLog: (obj: EBSUtilizationMetric) => any;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
export interface VolumeRecommendationOption {
|
|
808
|
-
|
|
809
|
-
configuration?: VolumeConfiguration;
|
|
810
|
-
|
|
811
|
-
performanceRisk?: number;
|
|
812
|
-
|
|
813
|
-
rank?: number;
|
|
814
|
-
|
|
815
|
-
savingsOpportunity?: SavingsOpportunity;
|
|
816
|
-
}
|
|
817
|
-
export declare namespace VolumeRecommendationOption {
|
|
818
|
-
|
|
819
|
-
const filterSensitiveLog: (obj: VolumeRecommendationOption) => any;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
export interface VolumeRecommendation {
|
|
823
|
-
|
|
824
|
-
volumeArn?: string;
|
|
825
|
-
|
|
826
|
-
accountId?: string;
|
|
827
|
-
|
|
828
|
-
currentConfiguration?: VolumeConfiguration;
|
|
829
|
-
|
|
830
|
-
finding?: EBSFinding | string;
|
|
831
|
-
|
|
832
|
-
utilizationMetrics?: EBSUtilizationMetric[];
|
|
833
|
-
|
|
834
|
-
lookBackPeriodInDays?: number;
|
|
835
|
-
|
|
836
|
-
volumeRecommendationOptions?: VolumeRecommendationOption[];
|
|
837
|
-
|
|
838
|
-
lastRefreshTimestamp?: Date;
|
|
839
|
-
|
|
840
|
-
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
841
|
-
}
|
|
842
|
-
export declare namespace VolumeRecommendation {
|
|
843
|
-
|
|
844
|
-
const filterSensitiveLog: (obj: VolumeRecommendation) => any;
|
|
845
|
-
}
|
|
846
|
-
export interface GetEBSVolumeRecommendationsResponse {
|
|
847
|
-
|
|
848
|
-
nextToken?: string;
|
|
849
|
-
|
|
850
|
-
volumeRecommendations?: VolumeRecommendation[];
|
|
851
|
-
|
|
852
|
-
errors?: GetRecommendationError[];
|
|
853
|
-
}
|
|
854
|
-
export declare namespace GetEBSVolumeRecommendationsResponse {
|
|
855
|
-
|
|
856
|
-
const filterSensitiveLog: (obj: GetEBSVolumeRecommendationsResponse) => any;
|
|
857
|
-
}
|
|
858
|
-
export interface GetEC2InstanceRecommendationsRequest {
|
|
859
|
-
|
|
860
|
-
instanceArns?: string[];
|
|
861
|
-
|
|
862
|
-
nextToken?: string;
|
|
863
|
-
|
|
864
|
-
maxResults?: number;
|
|
865
|
-
|
|
866
|
-
filters?: Filter[];
|
|
867
|
-
|
|
868
|
-
accountIds?: string[];
|
|
869
|
-
|
|
870
|
-
recommendationPreferences?: RecommendationPreferences;
|
|
871
|
-
}
|
|
872
|
-
export declare namespace GetEC2InstanceRecommendationsRequest {
|
|
873
|
-
|
|
874
|
-
const filterSensitiveLog: (obj: GetEC2InstanceRecommendationsRequest) => any;
|
|
875
|
-
}
|
|
876
|
-
export declare enum InstanceRecommendationFindingReasonCode {
|
|
877
|
-
CPU_OVER_PROVISIONED = "CPUOverprovisioned",
|
|
878
|
-
CPU_UNDER_PROVISIONED = "CPUUnderprovisioned",
|
|
879
|
-
DISK_IOPS_OVER_PROVISIONED = "DiskIOPSOverprovisioned",
|
|
880
|
-
DISK_IOPS_UNDER_PROVISIONED = "DiskIOPSUnderprovisioned",
|
|
881
|
-
DISK_THROUGHPUT_OVER_PROVISIONED = "DiskThroughputOverprovisioned",
|
|
882
|
-
DISK_THROUGHPUT_UNDER_PROVISIONED = "DiskThroughputUnderprovisioned",
|
|
883
|
-
EBS_IOPS_OVER_PROVISIONED = "EBSIOPSOverprovisioned",
|
|
884
|
-
EBS_IOPS_UNDER_PROVISIONED = "EBSIOPSUnderprovisioned",
|
|
885
|
-
EBS_THROUGHPUT_OVER_PROVISIONED = "EBSThroughputOverprovisioned",
|
|
886
|
-
EBS_THROUGHPUT_UNDER_PROVISIONED = "EBSThroughputUnderprovisioned",
|
|
887
|
-
MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
|
|
888
|
-
MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned",
|
|
889
|
-
NETWORK_BANDWIDTH_OVER_PROVISIONED = "NetworkBandwidthOverprovisioned",
|
|
890
|
-
NETWORK_BANDWIDTH_UNDER_PROVISIONED = "NetworkBandwidthUnderprovisioned",
|
|
891
|
-
NETWORK_PPS_OVER_PROVISIONED = "NetworkPPSOverprovisioned",
|
|
892
|
-
NETWORK_PPS_UNDER_PROVISIONED = "NetworkPPSUnderprovisioned"
|
|
893
|
-
}
|
|
894
|
-
export declare enum PlatformDifference {
|
|
895
|
-
ARCHITECTURE = "Architecture",
|
|
896
|
-
HYPERVISOR = "Hypervisor",
|
|
897
|
-
INSTANCE_STORE_AVAILABILITY = "InstanceStoreAvailability",
|
|
898
|
-
NETWORK_INTERFACE = "NetworkInterface",
|
|
899
|
-
STORAGE_INTERFACE = "StorageInterface",
|
|
900
|
-
VIRTUALIZATION_TYPE = "VirtualizationType"
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
export interface InstanceRecommendationOption {
|
|
904
|
-
|
|
905
|
-
instanceType?: string;
|
|
906
|
-
|
|
907
|
-
projectedUtilizationMetrics?: UtilizationMetric[];
|
|
908
|
-
|
|
909
|
-
platformDifferences?: (PlatformDifference | string)[];
|
|
910
|
-
|
|
911
|
-
performanceRisk?: number;
|
|
912
|
-
|
|
913
|
-
rank?: number;
|
|
914
|
-
|
|
915
|
-
savingsOpportunity?: SavingsOpportunity;
|
|
916
|
-
}
|
|
917
|
-
export declare namespace InstanceRecommendationOption {
|
|
918
|
-
|
|
919
|
-
const filterSensitiveLog: (obj: InstanceRecommendationOption) => any;
|
|
920
|
-
}
|
|
921
|
-
export declare enum RecommendationSourceType {
|
|
922
|
-
AUTO_SCALING_GROUP = "AutoScalingGroup",
|
|
923
|
-
EBS_VOLUME = "EbsVolume",
|
|
924
|
-
EC2_INSTANCE = "Ec2Instance",
|
|
925
|
-
LAMBDA_FUNCTION = "LambdaFunction"
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
export interface RecommendationSource {
|
|
929
|
-
|
|
930
|
-
recommendationSourceArn?: string;
|
|
931
|
-
|
|
932
|
-
recommendationSourceType?: RecommendationSourceType | string;
|
|
933
|
-
}
|
|
934
|
-
export declare namespace RecommendationSource {
|
|
935
|
-
|
|
936
|
-
const filterSensitiveLog: (obj: RecommendationSource) => any;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
export interface InstanceRecommendation {
|
|
940
|
-
|
|
941
|
-
instanceArn?: string;
|
|
942
|
-
|
|
943
|
-
accountId?: string;
|
|
944
|
-
|
|
945
|
-
instanceName?: string;
|
|
946
|
-
|
|
947
|
-
currentInstanceType?: string;
|
|
948
|
-
|
|
949
|
-
finding?: Finding | string;
|
|
950
|
-
|
|
951
|
-
findingReasonCodes?: (InstanceRecommendationFindingReasonCode | string)[];
|
|
952
|
-
|
|
953
|
-
utilizationMetrics?: UtilizationMetric[];
|
|
954
|
-
|
|
955
|
-
lookBackPeriodInDays?: number;
|
|
956
|
-
|
|
957
|
-
recommendationOptions?: InstanceRecommendationOption[];
|
|
958
|
-
|
|
959
|
-
recommendationSources?: RecommendationSource[];
|
|
960
|
-
|
|
961
|
-
lastRefreshTimestamp?: Date;
|
|
962
|
-
|
|
963
|
-
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
964
|
-
|
|
965
|
-
effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
|
|
966
|
-
}
|
|
967
|
-
export declare namespace InstanceRecommendation {
|
|
968
|
-
|
|
969
|
-
const filterSensitiveLog: (obj: InstanceRecommendation) => any;
|
|
970
|
-
}
|
|
971
|
-
export interface GetEC2InstanceRecommendationsResponse {
|
|
972
|
-
|
|
973
|
-
nextToken?: string;
|
|
974
|
-
|
|
975
|
-
instanceRecommendations?: InstanceRecommendation[];
|
|
976
|
-
|
|
977
|
-
errors?: GetRecommendationError[];
|
|
978
|
-
}
|
|
979
|
-
export declare namespace GetEC2InstanceRecommendationsResponse {
|
|
980
|
-
|
|
981
|
-
const filterSensitiveLog: (obj: GetEC2InstanceRecommendationsResponse) => any;
|
|
982
|
-
}
|
|
983
|
-
export interface GetEC2RecommendationProjectedMetricsRequest {
|
|
984
|
-
|
|
985
|
-
instanceArn: string | undefined;
|
|
986
|
-
|
|
987
|
-
stat: MetricStatistic | string | undefined;
|
|
988
|
-
|
|
989
|
-
period: number | undefined;
|
|
990
|
-
|
|
991
|
-
startTime: Date | undefined;
|
|
992
|
-
|
|
993
|
-
endTime: Date | undefined;
|
|
994
|
-
|
|
995
|
-
recommendationPreferences?: RecommendationPreferences;
|
|
996
|
-
}
|
|
997
|
-
export declare namespace GetEC2RecommendationProjectedMetricsRequest {
|
|
998
|
-
|
|
999
|
-
const filterSensitiveLog: (obj: GetEC2RecommendationProjectedMetricsRequest) => any;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
export interface ProjectedMetric {
|
|
1003
|
-
|
|
1004
|
-
name?: MetricName | string;
|
|
1005
|
-
|
|
1006
|
-
timestamps?: Date[];
|
|
1007
|
-
|
|
1008
|
-
values?: number[];
|
|
1009
|
-
}
|
|
1010
|
-
export declare namespace ProjectedMetric {
|
|
1011
|
-
|
|
1012
|
-
const filterSensitiveLog: (obj: ProjectedMetric) => any;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
export interface RecommendedOptionProjectedMetric {
|
|
1016
|
-
|
|
1017
|
-
recommendedInstanceType?: string;
|
|
1018
|
-
|
|
1019
|
-
rank?: number;
|
|
1020
|
-
|
|
1021
|
-
projectedMetrics?: ProjectedMetric[];
|
|
1022
|
-
}
|
|
1023
|
-
export declare namespace RecommendedOptionProjectedMetric {
|
|
1024
|
-
|
|
1025
|
-
const filterSensitiveLog: (obj: RecommendedOptionProjectedMetric) => any;
|
|
1026
|
-
}
|
|
1027
|
-
export interface GetEC2RecommendationProjectedMetricsResponse {
|
|
1028
|
-
|
|
1029
|
-
recommendedOptionProjectedMetrics?: RecommendedOptionProjectedMetric[];
|
|
1030
|
-
}
|
|
1031
|
-
export declare namespace GetEC2RecommendationProjectedMetricsResponse {
|
|
1032
|
-
|
|
1033
|
-
const filterSensitiveLog: (obj: GetEC2RecommendationProjectedMetricsResponse) => any;
|
|
1034
|
-
}
|
|
1035
|
-
export interface GetEffectiveRecommendationPreferencesRequest {
|
|
1036
|
-
|
|
1037
|
-
resourceArn: string | undefined;
|
|
1038
|
-
}
|
|
1039
|
-
export declare namespace GetEffectiveRecommendationPreferencesRequest {
|
|
1040
|
-
|
|
1041
|
-
const filterSensitiveLog: (obj: GetEffectiveRecommendationPreferencesRequest) => any;
|
|
1042
|
-
}
|
|
1043
|
-
export interface GetEffectiveRecommendationPreferencesResponse {
|
|
1044
|
-
|
|
1045
|
-
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
1046
|
-
}
|
|
1047
|
-
export declare namespace GetEffectiveRecommendationPreferencesResponse {
|
|
1048
|
-
|
|
1049
|
-
const filterSensitiveLog: (obj: GetEffectiveRecommendationPreferencesResponse) => any;
|
|
1050
|
-
}
|
|
1051
|
-
export interface GetEnrollmentStatusRequest {
|
|
1052
|
-
}
|
|
1053
|
-
export declare namespace GetEnrollmentStatusRequest {
|
|
1054
|
-
|
|
1055
|
-
const filterSensitiveLog: (obj: GetEnrollmentStatusRequest) => any;
|
|
1056
|
-
}
|
|
1057
|
-
export interface GetEnrollmentStatusResponse {
|
|
1058
|
-
|
|
1059
|
-
status?: Status | string;
|
|
1060
|
-
|
|
1061
|
-
statusReason?: string;
|
|
1062
|
-
|
|
1063
|
-
memberAccountsEnrolled?: boolean;
|
|
1064
|
-
|
|
1065
|
-
lastUpdatedTimestamp?: Date;
|
|
1066
|
-
|
|
1067
|
-
numberOfMemberAccountsOptedIn?: number;
|
|
1068
|
-
}
|
|
1069
|
-
export declare namespace GetEnrollmentStatusResponse {
|
|
1070
|
-
|
|
1071
|
-
const filterSensitiveLog: (obj: GetEnrollmentStatusResponse) => any;
|
|
1072
|
-
}
|
|
1073
|
-
export declare enum EnrollmentFilterName {
|
|
1074
|
-
STATUS = "Status"
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
export interface EnrollmentFilter {
|
|
1078
|
-
|
|
1079
|
-
name?: EnrollmentFilterName | string;
|
|
1080
|
-
|
|
1081
|
-
values?: string[];
|
|
1082
|
-
}
|
|
1083
|
-
export declare namespace EnrollmentFilter {
|
|
1084
|
-
|
|
1085
|
-
const filterSensitiveLog: (obj: EnrollmentFilter) => any;
|
|
1086
|
-
}
|
|
1087
|
-
export interface GetEnrollmentStatusesForOrganizationRequest {
|
|
1088
|
-
|
|
1089
|
-
filters?: EnrollmentFilter[];
|
|
1090
|
-
|
|
1091
|
-
nextToken?: string;
|
|
1092
|
-
|
|
1093
|
-
maxResults?: number;
|
|
1094
|
-
}
|
|
1095
|
-
export declare namespace GetEnrollmentStatusesForOrganizationRequest {
|
|
1096
|
-
|
|
1097
|
-
const filterSensitiveLog: (obj: GetEnrollmentStatusesForOrganizationRequest) => any;
|
|
1098
|
-
}
|
|
1099
|
-
export interface GetEnrollmentStatusesForOrganizationResponse {
|
|
1100
|
-
|
|
1101
|
-
accountEnrollmentStatuses?: AccountEnrollmentStatus[];
|
|
1102
|
-
|
|
1103
|
-
nextToken?: string;
|
|
1104
|
-
}
|
|
1105
|
-
export declare namespace GetEnrollmentStatusesForOrganizationResponse {
|
|
1106
|
-
|
|
1107
|
-
const filterSensitiveLog: (obj: GetEnrollmentStatusesForOrganizationResponse) => any;
|
|
1108
|
-
}
|
|
1109
|
-
export interface GetLambdaFunctionRecommendationsRequest {
|
|
1110
|
-
|
|
1111
|
-
functionArns?: string[];
|
|
1112
|
-
|
|
1113
|
-
accountIds?: string[];
|
|
1114
|
-
|
|
1115
|
-
filters?: LambdaFunctionRecommendationFilter[];
|
|
1116
|
-
|
|
1117
|
-
nextToken?: string;
|
|
1118
|
-
|
|
1119
|
-
maxResults?: number;
|
|
1120
|
-
}
|
|
1121
|
-
export declare namespace GetLambdaFunctionRecommendationsRequest {
|
|
1122
|
-
|
|
1123
|
-
const filterSensitiveLog: (obj: GetLambdaFunctionRecommendationsRequest) => any;
|
|
1124
|
-
}
|
|
1125
|
-
export declare enum LambdaFunctionRecommendationFinding {
|
|
1126
|
-
NOT_OPTIMIZED = "NotOptimized",
|
|
1127
|
-
OPTIMIZED = "Optimized",
|
|
1128
|
-
UNAVAILABLE = "Unavailable"
|
|
1129
|
-
}
|
|
1130
|
-
export declare enum LambdaFunctionRecommendationFindingReasonCode {
|
|
1131
|
-
INCONCLUSIVE = "Inconclusive",
|
|
1132
|
-
INSUFFICIENT_DATA = "InsufficientData",
|
|
1133
|
-
MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
|
|
1134
|
-
MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned"
|
|
1135
|
-
}
|
|
1136
|
-
export declare enum LambdaFunctionMemoryMetricName {
|
|
1137
|
-
DURATION = "Duration"
|
|
1138
|
-
}
|
|
1139
|
-
export declare enum LambdaFunctionMemoryMetricStatistic {
|
|
1140
|
-
EXPECTED = "Expected",
|
|
1141
|
-
LOWER_BOUND = "LowerBound",
|
|
1142
|
-
UPPER_BOUND = "UpperBound"
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
|
-
export interface LambdaFunctionMemoryProjectedMetric {
|
|
1146
|
-
|
|
1147
|
-
name?: LambdaFunctionMemoryMetricName | string;
|
|
1148
|
-
|
|
1149
|
-
statistic?: LambdaFunctionMemoryMetricStatistic | string;
|
|
1150
|
-
|
|
1151
|
-
value?: number;
|
|
1152
|
-
}
|
|
1153
|
-
export declare namespace LambdaFunctionMemoryProjectedMetric {
|
|
1154
|
-
|
|
1155
|
-
const filterSensitiveLog: (obj: LambdaFunctionMemoryProjectedMetric) => any;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
export interface LambdaFunctionMemoryRecommendationOption {
|
|
1159
|
-
|
|
1160
|
-
rank?: number;
|
|
1161
|
-
|
|
1162
|
-
memorySize?: number;
|
|
1163
|
-
|
|
1164
|
-
projectedUtilizationMetrics?: LambdaFunctionMemoryProjectedMetric[];
|
|
1165
|
-
|
|
1166
|
-
savingsOpportunity?: SavingsOpportunity;
|
|
1167
|
-
}
|
|
1168
|
-
export declare namespace LambdaFunctionMemoryRecommendationOption {
|
|
1169
|
-
|
|
1170
|
-
const filterSensitiveLog: (obj: LambdaFunctionMemoryRecommendationOption) => any;
|
|
1171
|
-
}
|
|
1172
|
-
export declare enum LambdaFunctionMetricName {
|
|
1173
|
-
DURATION = "Duration",
|
|
1174
|
-
MEMORY = "Memory"
|
|
1175
|
-
}
|
|
1176
|
-
export declare enum LambdaFunctionMetricStatistic {
|
|
1177
|
-
AVERAGE = "Average",
|
|
1178
|
-
MAXIMUM = "Maximum"
|
|
1179
|
-
}
|
|
1180
|
-
|
|
1181
|
-
export interface LambdaFunctionUtilizationMetric {
|
|
1182
|
-
|
|
1183
|
-
name?: LambdaFunctionMetricName | string;
|
|
1184
|
-
|
|
1185
|
-
statistic?: LambdaFunctionMetricStatistic | string;
|
|
1186
|
-
|
|
1187
|
-
value?: number;
|
|
1188
|
-
}
|
|
1189
|
-
export declare namespace LambdaFunctionUtilizationMetric {
|
|
1190
|
-
|
|
1191
|
-
const filterSensitiveLog: (obj: LambdaFunctionUtilizationMetric) => any;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
export interface LambdaFunctionRecommendation {
|
|
1195
|
-
|
|
1196
|
-
functionArn?: string;
|
|
1197
|
-
|
|
1198
|
-
functionVersion?: string;
|
|
1199
|
-
|
|
1200
|
-
accountId?: string;
|
|
1201
|
-
|
|
1202
|
-
currentMemorySize?: number;
|
|
1203
|
-
|
|
1204
|
-
numberOfInvocations?: number;
|
|
1205
|
-
|
|
1206
|
-
utilizationMetrics?: LambdaFunctionUtilizationMetric[];
|
|
1207
|
-
|
|
1208
|
-
lookbackPeriodInDays?: number;
|
|
1209
|
-
|
|
1210
|
-
lastRefreshTimestamp?: Date;
|
|
1211
|
-
|
|
1212
|
-
finding?: LambdaFunctionRecommendationFinding | string;
|
|
1213
|
-
|
|
1214
|
-
findingReasonCodes?: (LambdaFunctionRecommendationFindingReasonCode | string)[];
|
|
1215
|
-
|
|
1216
|
-
memorySizeRecommendationOptions?: LambdaFunctionMemoryRecommendationOption[];
|
|
1217
|
-
|
|
1218
|
-
currentPerformanceRisk?: CurrentPerformanceRisk | string;
|
|
1219
|
-
}
|
|
1220
|
-
export declare namespace LambdaFunctionRecommendation {
|
|
1221
|
-
|
|
1222
|
-
const filterSensitiveLog: (obj: LambdaFunctionRecommendation) => any;
|
|
1223
|
-
}
|
|
1224
|
-
export interface GetLambdaFunctionRecommendationsResponse {
|
|
1225
|
-
|
|
1226
|
-
nextToken?: string;
|
|
1227
|
-
|
|
1228
|
-
lambdaFunctionRecommendations?: LambdaFunctionRecommendation[];
|
|
1229
|
-
}
|
|
1230
|
-
export declare namespace GetLambdaFunctionRecommendationsResponse {
|
|
1231
|
-
|
|
1232
|
-
const filterSensitiveLog: (obj: GetLambdaFunctionRecommendationsResponse) => any;
|
|
1233
|
-
}
|
|
1234
|
-
export interface GetRecommendationPreferencesRequest {
|
|
1235
|
-
|
|
1236
|
-
resourceType: ResourceType | string | undefined;
|
|
1237
|
-
|
|
1238
|
-
scope?: Scope;
|
|
1239
|
-
|
|
1240
|
-
nextToken?: string;
|
|
1241
|
-
|
|
1242
|
-
maxResults?: number;
|
|
1243
|
-
}
|
|
1244
|
-
export declare namespace GetRecommendationPreferencesRequest {
|
|
1245
|
-
|
|
1246
|
-
const filterSensitiveLog: (obj: GetRecommendationPreferencesRequest) => any;
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
export interface RecommendationPreferencesDetail {
|
|
1250
|
-
|
|
1251
|
-
scope?: Scope;
|
|
1252
|
-
|
|
1253
|
-
resourceType?: ResourceType | string;
|
|
1254
|
-
|
|
1255
|
-
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
1256
|
-
}
|
|
1257
|
-
export declare namespace RecommendationPreferencesDetail {
|
|
1258
|
-
|
|
1259
|
-
const filterSensitiveLog: (obj: RecommendationPreferencesDetail) => any;
|
|
1260
|
-
}
|
|
1261
|
-
export interface GetRecommendationPreferencesResponse {
|
|
1262
|
-
|
|
1263
|
-
nextToken?: string;
|
|
1264
|
-
|
|
1265
|
-
recommendationPreferencesDetails?: RecommendationPreferencesDetail[];
|
|
1266
|
-
}
|
|
1267
|
-
export declare namespace GetRecommendationPreferencesResponse {
|
|
1268
|
-
|
|
1269
|
-
const filterSensitiveLog: (obj: GetRecommendationPreferencesResponse) => any;
|
|
1270
|
-
}
|
|
1271
|
-
export interface GetRecommendationSummariesRequest {
|
|
1272
|
-
|
|
1273
|
-
accountIds?: string[];
|
|
1274
|
-
|
|
1275
|
-
nextToken?: string;
|
|
1276
|
-
|
|
1277
|
-
maxResults?: number;
|
|
1278
|
-
}
|
|
1279
|
-
export declare namespace GetRecommendationSummariesRequest {
|
|
1280
|
-
|
|
1281
|
-
const filterSensitiveLog: (obj: GetRecommendationSummariesRequest) => any;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
export interface CurrentPerformanceRiskRatings {
|
|
1285
|
-
|
|
1286
|
-
high?: number;
|
|
1287
|
-
|
|
1288
|
-
medium?: number;
|
|
1289
|
-
|
|
1290
|
-
low?: number;
|
|
1291
|
-
|
|
1292
|
-
veryLow?: number;
|
|
1293
|
-
}
|
|
1294
|
-
export declare namespace CurrentPerformanceRiskRatings {
|
|
1295
|
-
|
|
1296
|
-
const filterSensitiveLog: (obj: CurrentPerformanceRiskRatings) => any;
|
|
1297
|
-
}
|
|
1298
|
-
export declare enum FindingReasonCode {
|
|
1299
|
-
MEMORY_OVER_PROVISIONED = "MemoryOverprovisioned",
|
|
1300
|
-
MEMORY_UNDER_PROVISIONED = "MemoryUnderprovisioned"
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
export interface ReasonCodeSummary {
|
|
1304
|
-
|
|
1305
|
-
name?: FindingReasonCode | string;
|
|
1306
|
-
|
|
1307
|
-
value?: number;
|
|
1308
|
-
}
|
|
1309
|
-
export declare namespace ReasonCodeSummary {
|
|
1310
|
-
|
|
1311
|
-
const filterSensitiveLog: (obj: ReasonCodeSummary) => any;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
export interface Summary {
|
|
1315
|
-
|
|
1316
|
-
name?: Finding | string;
|
|
1317
|
-
|
|
1318
|
-
value?: number;
|
|
1319
|
-
|
|
1320
|
-
reasonCodeSummaries?: ReasonCodeSummary[];
|
|
1321
|
-
}
|
|
1322
|
-
export declare namespace Summary {
|
|
1323
|
-
|
|
1324
|
-
const filterSensitiveLog: (obj: Summary) => any;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
export interface RecommendationSummary {
|
|
1328
|
-
|
|
1329
|
-
summaries?: Summary[];
|
|
1330
|
-
|
|
1331
|
-
recommendationResourceType?: RecommendationSourceType | string;
|
|
1332
|
-
|
|
1333
|
-
accountId?: string;
|
|
1334
|
-
|
|
1335
|
-
savingsOpportunity?: SavingsOpportunity;
|
|
1336
|
-
|
|
1337
|
-
currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings;
|
|
1338
|
-
}
|
|
1339
|
-
export declare namespace RecommendationSummary {
|
|
1340
|
-
|
|
1341
|
-
const filterSensitiveLog: (obj: RecommendationSummary) => any;
|
|
1342
|
-
}
|
|
1343
|
-
export interface GetRecommendationSummariesResponse {
|
|
1344
|
-
|
|
1345
|
-
nextToken?: string;
|
|
1346
|
-
|
|
1347
|
-
recommendationSummaries?: RecommendationSummary[];
|
|
1348
|
-
}
|
|
1349
|
-
export declare namespace GetRecommendationSummariesResponse {
|
|
1350
|
-
|
|
1351
|
-
const filterSensitiveLog: (obj: GetRecommendationSummariesResponse) => any;
|
|
1352
|
-
}
|
|
1353
|
-
export interface PutRecommendationPreferencesRequest {
|
|
1354
|
-
|
|
1355
|
-
resourceType: ResourceType | string | undefined;
|
|
1356
|
-
|
|
1357
|
-
scope?: Scope;
|
|
1358
|
-
|
|
1359
|
-
enhancedInfrastructureMetrics?: EnhancedInfrastructureMetrics | string;
|
|
1360
|
-
}
|
|
1361
|
-
export declare namespace PutRecommendationPreferencesRequest {
|
|
1362
|
-
|
|
1363
|
-
const filterSensitiveLog: (obj: PutRecommendationPreferencesRequest) => any;
|
|
1364
|
-
}
|
|
1365
|
-
export interface PutRecommendationPreferencesResponse {
|
|
1366
|
-
}
|
|
1367
|
-
export declare namespace PutRecommendationPreferencesResponse {
|
|
1368
|
-
|
|
1369
|
-
const filterSensitiveLog: (obj: PutRecommendationPreferencesResponse) => any;
|
|
1370
|
-
}
|
|
1371
|
-
export interface UpdateEnrollmentStatusRequest {
|
|
1372
|
-
|
|
1373
|
-
status: Status | string | undefined;
|
|
1374
|
-
|
|
1375
|
-
includeMemberAccounts?: boolean;
|
|
1376
|
-
}
|
|
1377
|
-
export declare namespace UpdateEnrollmentStatusRequest {
|
|
1378
|
-
|
|
1379
|
-
const filterSensitiveLog: (obj: UpdateEnrollmentStatusRequest) => any;
|
|
1380
|
-
}
|
|
1381
|
-
export interface UpdateEnrollmentStatusResponse {
|
|
1382
|
-
|
|
1383
|
-
status?: Status | string;
|
|
1384
|
-
|
|
1385
|
-
statusReason?: string;
|
|
1386
|
-
}
|
|
1387
|
-
export declare namespace UpdateEnrollmentStatusResponse {
|
|
1388
|
-
|
|
1389
|
-
const filterSensitiveLog: (obj: UpdateEnrollmentStatusResponse) => any;
|
|
1390
|
-
}
|