@aws-sdk/client-compute-optimizer 3.696.0 → 3.699.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/README.md +16 -0
- package/dist-cjs/index.js +255 -2
- package/dist-es/ComputeOptimizer.js +4 -0
- package/dist-es/commands/ExportIdleRecommendationsCommand.js +22 -0
- package/dist-es/commands/GetIdleRecommendationsCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +87 -0
- package/dist-es/protocols/Aws_json1_0.js +122 -0
- package/dist-types/ComputeOptimizer.d.ts +15 -0
- package/dist-types/ComputeOptimizerClient.d.ts +4 -2
- package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRecommendationExportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ExportIdleRecommendationsCommand.d.ts +127 -0
- package/dist-types/commands/ExportRDSDatabaseRecommendationsCommand.d.ts +1 -1
- package/dist-types/commands/GetIdleRecommendationsCommand.d.ts +166 -0
- package/dist-types/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.d.ts +1 -1
- package/dist-types/commands/GetRDSDatabaseRecommendationsCommand.d.ts +6 -3
- package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +2 -2
- package/dist-types/commands/GetRecommendationSummariesCommand.d.ts +20 -0
- package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +623 -4
- package/dist-types/protocols/Aws_json1_0.d.ts +18 -0
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +35 -0
- package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ExportIdleRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetIdleRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +184 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +24 -0
- package/package.json +4 -4
|
@@ -6,6 +6,7 @@ import { ExportAutoScalingGroupRecommendationsCommandInput, ExportAutoScalingGro
|
|
|
6
6
|
import { ExportEBSVolumeRecommendationsCommandInput, ExportEBSVolumeRecommendationsCommandOutput } from "../commands/ExportEBSVolumeRecommendationsCommand";
|
|
7
7
|
import { ExportEC2InstanceRecommendationsCommandInput, ExportEC2InstanceRecommendationsCommandOutput } from "../commands/ExportEC2InstanceRecommendationsCommand";
|
|
8
8
|
import { ExportECSServiceRecommendationsCommandInput, ExportECSServiceRecommendationsCommandOutput } from "../commands/ExportECSServiceRecommendationsCommand";
|
|
9
|
+
import { ExportIdleRecommendationsCommandInput, ExportIdleRecommendationsCommandOutput } from "../commands/ExportIdleRecommendationsCommand";
|
|
9
10
|
import { ExportLambdaFunctionRecommendationsCommandInput, ExportLambdaFunctionRecommendationsCommandOutput } from "../commands/ExportLambdaFunctionRecommendationsCommand";
|
|
10
11
|
import { ExportLicenseRecommendationsCommandInput, ExportLicenseRecommendationsCommandOutput } from "../commands/ExportLicenseRecommendationsCommand";
|
|
11
12
|
import { ExportRDSDatabaseRecommendationsCommandInput, ExportRDSDatabaseRecommendationsCommandOutput } from "../commands/ExportRDSDatabaseRecommendationsCommand";
|
|
@@ -18,6 +19,7 @@ import { GetECSServiceRecommendationsCommandInput, GetECSServiceRecommendationsC
|
|
|
18
19
|
import { GetEffectiveRecommendationPreferencesCommandInput, GetEffectiveRecommendationPreferencesCommandOutput } from "../commands/GetEffectiveRecommendationPreferencesCommand";
|
|
19
20
|
import { GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput } from "../commands/GetEnrollmentStatusCommand";
|
|
20
21
|
import { GetEnrollmentStatusesForOrganizationCommandInput, GetEnrollmentStatusesForOrganizationCommandOutput } from "../commands/GetEnrollmentStatusesForOrganizationCommand";
|
|
22
|
+
import { GetIdleRecommendationsCommandInput, GetIdleRecommendationsCommandOutput } from "../commands/GetIdleRecommendationsCommand";
|
|
21
23
|
import { GetLambdaFunctionRecommendationsCommandInput, GetLambdaFunctionRecommendationsCommandOutput } from "../commands/GetLambdaFunctionRecommendationsCommand";
|
|
22
24
|
import { GetLicenseRecommendationsCommandInput, GetLicenseRecommendationsCommandOutput } from "../commands/GetLicenseRecommendationsCommand";
|
|
23
25
|
import { GetRDSDatabaseRecommendationProjectedMetricsCommandInput, GetRDSDatabaseRecommendationProjectedMetricsCommandOutput } from "../commands/GetRDSDatabaseRecommendationProjectedMetricsCommand";
|
|
@@ -50,6 +52,10 @@ export declare const se_ExportEC2InstanceRecommendationsCommand: (input: ExportE
|
|
|
50
52
|
* serializeAws_json1_0ExportECSServiceRecommendationsCommand
|
|
51
53
|
*/
|
|
52
54
|
export declare const se_ExportECSServiceRecommendationsCommand: (input: ExportECSServiceRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_json1_0ExportIdleRecommendationsCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_ExportIdleRecommendationsCommand: (input: ExportIdleRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
59
|
/**
|
|
54
60
|
* serializeAws_json1_0ExportLambdaFunctionRecommendationsCommand
|
|
55
61
|
*/
|
|
@@ -98,6 +104,10 @@ export declare const se_GetEnrollmentStatusCommand: (input: GetEnrollmentStatusC
|
|
|
98
104
|
* serializeAws_json1_0GetEnrollmentStatusesForOrganizationCommand
|
|
99
105
|
*/
|
|
100
106
|
export declare const se_GetEnrollmentStatusesForOrganizationCommand: (input: GetEnrollmentStatusesForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_json1_0GetIdleRecommendationsCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_GetIdleRecommendationsCommand: (input: GetIdleRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
111
|
/**
|
|
102
112
|
* serializeAws_json1_0GetLambdaFunctionRecommendationsCommand
|
|
103
113
|
*/
|
|
@@ -154,6 +164,10 @@ export declare const de_ExportEC2InstanceRecommendationsCommand: (output: __Http
|
|
|
154
164
|
* deserializeAws_json1_0ExportECSServiceRecommendationsCommand
|
|
155
165
|
*/
|
|
156
166
|
export declare const de_ExportECSServiceRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportECSServiceRecommendationsCommandOutput>;
|
|
167
|
+
/**
|
|
168
|
+
* deserializeAws_json1_0ExportIdleRecommendationsCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const de_ExportIdleRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportIdleRecommendationsCommandOutput>;
|
|
157
171
|
/**
|
|
158
172
|
* deserializeAws_json1_0ExportLambdaFunctionRecommendationsCommand
|
|
159
173
|
*/
|
|
@@ -202,6 +216,10 @@ export declare const de_GetEnrollmentStatusCommand: (output: __HttpResponse, con
|
|
|
202
216
|
* deserializeAws_json1_0GetEnrollmentStatusesForOrganizationCommand
|
|
203
217
|
*/
|
|
204
218
|
export declare const de_GetEnrollmentStatusesForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnrollmentStatusesForOrganizationCommandOutput>;
|
|
219
|
+
/**
|
|
220
|
+
* deserializeAws_json1_0GetIdleRecommendationsCommand
|
|
221
|
+
*/
|
|
222
|
+
export declare const de_GetIdleRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdleRecommendationsCommandOutput>;
|
|
205
223
|
/**
|
|
206
224
|
* deserializeAws_json1_0GetLambdaFunctionRecommendationsCommand
|
|
207
225
|
*/
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
ExportECSServiceRecommendationsCommandInput,
|
|
24
24
|
ExportECSServiceRecommendationsCommandOutput,
|
|
25
25
|
} from "./commands/ExportECSServiceRecommendationsCommand";
|
|
26
|
+
import {
|
|
27
|
+
ExportIdleRecommendationsCommandInput,
|
|
28
|
+
ExportIdleRecommendationsCommandOutput,
|
|
29
|
+
} from "./commands/ExportIdleRecommendationsCommand";
|
|
26
30
|
import {
|
|
27
31
|
ExportLambdaFunctionRecommendationsCommandInput,
|
|
28
32
|
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -71,6 +75,10 @@ import {
|
|
|
71
75
|
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
72
76
|
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
73
77
|
} from "./commands/GetEnrollmentStatusesForOrganizationCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetIdleRecommendationsCommandInput,
|
|
80
|
+
GetIdleRecommendationsCommandOutput,
|
|
81
|
+
} from "./commands/GetIdleRecommendationsCommand";
|
|
74
82
|
import {
|
|
75
83
|
GetLambdaFunctionRecommendationsCommandInput,
|
|
76
84
|
GetLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -190,6 +198,19 @@ export interface ComputeOptimizer {
|
|
|
190
198
|
options: __HttpHandlerOptions,
|
|
191
199
|
cb: (err: any, data?: ExportECSServiceRecommendationsCommandOutput) => void
|
|
192
200
|
): void;
|
|
201
|
+
exportIdleRecommendations(
|
|
202
|
+
args: ExportIdleRecommendationsCommandInput,
|
|
203
|
+
options?: __HttpHandlerOptions
|
|
204
|
+
): Promise<ExportIdleRecommendationsCommandOutput>;
|
|
205
|
+
exportIdleRecommendations(
|
|
206
|
+
args: ExportIdleRecommendationsCommandInput,
|
|
207
|
+
cb: (err: any, data?: ExportIdleRecommendationsCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
exportIdleRecommendations(
|
|
210
|
+
args: ExportIdleRecommendationsCommandInput,
|
|
211
|
+
options: __HttpHandlerOptions,
|
|
212
|
+
cb: (err: any, data?: ExportIdleRecommendationsCommandOutput) => void
|
|
213
|
+
): void;
|
|
193
214
|
exportLambdaFunctionRecommendations(
|
|
194
215
|
args: ExportLambdaFunctionRecommendationsCommandInput,
|
|
195
216
|
options?: __HttpHandlerOptions
|
|
@@ -388,6 +409,20 @@ export interface ComputeOptimizer {
|
|
|
388
409
|
data?: GetEnrollmentStatusesForOrganizationCommandOutput
|
|
389
410
|
) => void
|
|
390
411
|
): void;
|
|
412
|
+
getIdleRecommendations(): Promise<GetIdleRecommendationsCommandOutput>;
|
|
413
|
+
getIdleRecommendations(
|
|
414
|
+
args: GetIdleRecommendationsCommandInput,
|
|
415
|
+
options?: __HttpHandlerOptions
|
|
416
|
+
): Promise<GetIdleRecommendationsCommandOutput>;
|
|
417
|
+
getIdleRecommendations(
|
|
418
|
+
args: GetIdleRecommendationsCommandInput,
|
|
419
|
+
cb: (err: any, data?: GetIdleRecommendationsCommandOutput) => void
|
|
420
|
+
): void;
|
|
421
|
+
getIdleRecommendations(
|
|
422
|
+
args: GetIdleRecommendationsCommandInput,
|
|
423
|
+
options: __HttpHandlerOptions,
|
|
424
|
+
cb: (err: any, data?: GetIdleRecommendationsCommandOutput) => void
|
|
425
|
+
): void;
|
|
391
426
|
getLambdaFunctionRecommendations(): Promise<GetLambdaFunctionRecommendationsCommandOutput>;
|
|
392
427
|
getLambdaFunctionRecommendations(
|
|
393
428
|
args: GetLambdaFunctionRecommendationsCommandInput,
|
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
ExportECSServiceRecommendationsCommandInput,
|
|
70
70
|
ExportECSServiceRecommendationsCommandOutput,
|
|
71
71
|
} from "./commands/ExportECSServiceRecommendationsCommand";
|
|
72
|
+
import {
|
|
73
|
+
ExportIdleRecommendationsCommandInput,
|
|
74
|
+
ExportIdleRecommendationsCommandOutput,
|
|
75
|
+
} from "./commands/ExportIdleRecommendationsCommand";
|
|
72
76
|
import {
|
|
73
77
|
ExportLambdaFunctionRecommendationsCommandInput,
|
|
74
78
|
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -117,6 +121,10 @@ import {
|
|
|
117
121
|
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
118
122
|
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
119
123
|
} from "./commands/GetEnrollmentStatusesForOrganizationCommand";
|
|
124
|
+
import {
|
|
125
|
+
GetIdleRecommendationsCommandInput,
|
|
126
|
+
GetIdleRecommendationsCommandOutput,
|
|
127
|
+
} from "./commands/GetIdleRecommendationsCommand";
|
|
120
128
|
import {
|
|
121
129
|
GetLambdaFunctionRecommendationsCommandInput,
|
|
122
130
|
GetLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -163,6 +171,7 @@ export type ServiceInputTypes =
|
|
|
163
171
|
| ExportEBSVolumeRecommendationsCommandInput
|
|
164
172
|
| ExportEC2InstanceRecommendationsCommandInput
|
|
165
173
|
| ExportECSServiceRecommendationsCommandInput
|
|
174
|
+
| ExportIdleRecommendationsCommandInput
|
|
166
175
|
| ExportLambdaFunctionRecommendationsCommandInput
|
|
167
176
|
| ExportLicenseRecommendationsCommandInput
|
|
168
177
|
| ExportRDSDatabaseRecommendationsCommandInput
|
|
@@ -175,6 +184,7 @@ export type ServiceInputTypes =
|
|
|
175
184
|
| GetEffectiveRecommendationPreferencesCommandInput
|
|
176
185
|
| GetEnrollmentStatusCommandInput
|
|
177
186
|
| GetEnrollmentStatusesForOrganizationCommandInput
|
|
187
|
+
| GetIdleRecommendationsCommandInput
|
|
178
188
|
| GetLambdaFunctionRecommendationsCommandInput
|
|
179
189
|
| GetLicenseRecommendationsCommandInput
|
|
180
190
|
| GetRDSDatabaseRecommendationProjectedMetricsCommandInput
|
|
@@ -190,6 +200,7 @@ export type ServiceOutputTypes =
|
|
|
190
200
|
| ExportEBSVolumeRecommendationsCommandOutput
|
|
191
201
|
| ExportEC2InstanceRecommendationsCommandOutput
|
|
192
202
|
| ExportECSServiceRecommendationsCommandOutput
|
|
203
|
+
| ExportIdleRecommendationsCommandOutput
|
|
193
204
|
| ExportLambdaFunctionRecommendationsCommandOutput
|
|
194
205
|
| ExportLicenseRecommendationsCommandOutput
|
|
195
206
|
| ExportRDSDatabaseRecommendationsCommandOutput
|
|
@@ -202,6 +213,7 @@ export type ServiceOutputTypes =
|
|
|
202
213
|
| GetEffectiveRecommendationPreferencesCommandOutput
|
|
203
214
|
| GetEnrollmentStatusCommandOutput
|
|
204
215
|
| GetEnrollmentStatusesForOrganizationCommandOutput
|
|
216
|
+
| GetIdleRecommendationsCommandOutput
|
|
205
217
|
| GetLambdaFunctionRecommendationsCommandOutput
|
|
206
218
|
| GetLicenseRecommendationsCommandOutput
|
|
207
219
|
| GetRDSDatabaseRecommendationProjectedMetricsCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ComputeOptimizerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ComputeOptimizerClient";
|
|
8
|
+
import {
|
|
9
|
+
ExportIdleRecommendationsRequest,
|
|
10
|
+
ExportIdleRecommendationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ExportIdleRecommendationsCommandInput
|
|
15
|
+
extends ExportIdleRecommendationsRequest {}
|
|
16
|
+
export interface ExportIdleRecommendationsCommandOutput
|
|
17
|
+
extends ExportIdleRecommendationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ExportIdleRecommendationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ExportIdleRecommendationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ExportIdleRecommendationsCommandInput,
|
|
24
|
+
ExportIdleRecommendationsCommandOutput,
|
|
25
|
+
ComputeOptimizerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ExportIdleRecommendationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ExportIdleRecommendationsCommandInput,
|
|
33
|
+
ExportIdleRecommendationsCommandOutput,
|
|
34
|
+
ComputeOptimizerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ExportIdleRecommendationsCommand extends ExportIdleRecommendationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ExportIdleRecommendationsRequest;
|
|
44
|
+
output: ExportIdleRecommendationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ExportIdleRecommendationsCommandInput;
|
|
48
|
+
output: ExportIdleRecommendationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ComputeOptimizerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ComputeOptimizerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetIdleRecommendationsRequest,
|
|
10
|
+
GetIdleRecommendationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetIdleRecommendationsCommandInput
|
|
15
|
+
extends GetIdleRecommendationsRequest {}
|
|
16
|
+
export interface GetIdleRecommendationsCommandOutput
|
|
17
|
+
extends GetIdleRecommendationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetIdleRecommendationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetIdleRecommendationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetIdleRecommendationsCommandInput,
|
|
24
|
+
GetIdleRecommendationsCommandOutput,
|
|
25
|
+
ComputeOptimizerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetIdleRecommendationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetIdleRecommendationsCommandInput,
|
|
33
|
+
GetIdleRecommendationsCommandOutput,
|
|
34
|
+
ComputeOptimizerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetIdleRecommendationsCommand extends GetIdleRecommendationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetIdleRecommendationsRequest;
|
|
44
|
+
output: GetIdleRecommendationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetIdleRecommendationsCommandInput;
|
|
48
|
+
output: GetIdleRecommendationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./ExportAutoScalingGroupRecommendationsCommand";
|
|
|
4
4
|
export * from "./ExportEBSVolumeRecommendationsCommand";
|
|
5
5
|
export * from "./ExportEC2InstanceRecommendationsCommand";
|
|
6
6
|
export * from "./ExportECSServiceRecommendationsCommand";
|
|
7
|
+
export * from "./ExportIdleRecommendationsCommand";
|
|
7
8
|
export * from "./ExportLambdaFunctionRecommendationsCommand";
|
|
8
9
|
export * from "./ExportLicenseRecommendationsCommand";
|
|
9
10
|
export * from "./ExportRDSDatabaseRecommendationsCommand";
|
|
@@ -16,6 +17,7 @@ export * from "./GetECSServiceRecommendationsCommand";
|
|
|
16
17
|
export * from "./GetEffectiveRecommendationPreferencesCommand";
|
|
17
18
|
export * from "./GetEnrollmentStatusCommand";
|
|
18
19
|
export * from "./GetEnrollmentStatusesForOrganizationCommand";
|
|
20
|
+
export * from "./GetIdleRecommendationsCommand";
|
|
19
21
|
export * from "./GetLambdaFunctionRecommendationsCommand";
|
|
20
22
|
export * from "./GetLicenseRecommendationsCommand";
|
|
21
23
|
export * from "./GetRDSDatabaseRecommendationProjectedMetricsCommand";
|
|
@@ -266,6 +266,7 @@ export declare const ResourceType: {
|
|
|
266
266
|
readonly EBS_VOLUME: "EbsVolume";
|
|
267
267
|
readonly EC2_INSTANCE: "Ec2Instance";
|
|
268
268
|
readonly ECS_SERVICE: "EcsService";
|
|
269
|
+
readonly IDLE: "Idle";
|
|
269
270
|
readonly LAMBDA_FUNCTION: "LambdaFunction";
|
|
270
271
|
readonly LICENSE: "License";
|
|
271
272
|
readonly NOT_APPLICABLE: "NotApplicable";
|
|
@@ -693,6 +694,52 @@ export interface ExportECSServiceRecommendationsResponse {
|
|
|
693
694
|
jobId?: string | undefined;
|
|
694
695
|
s3Destination?: S3Destination | undefined;
|
|
695
696
|
}
|
|
697
|
+
export declare const ExportableIdleField: {
|
|
698
|
+
readonly ACCOUNT_ID: "AccountId";
|
|
699
|
+
readonly FINDING: "Finding";
|
|
700
|
+
readonly FINDING_DESCRIPTION: "FindingDescription";
|
|
701
|
+
readonly LAST_REFRESH_TIMESTAMP: "LastRefreshTimestamp";
|
|
702
|
+
readonly LOOKBACK_PERIOD_IN_DAYS: "LookbackPeriodInDays";
|
|
703
|
+
readonly RESOURCE_ARN: "ResourceArn";
|
|
704
|
+
readonly RESOURCE_ID: "ResourceId";
|
|
705
|
+
readonly RESOURCE_TYPE: "ResourceType";
|
|
706
|
+
readonly SAVINGS_OPPORTUNITY: "SavingsOpportunity";
|
|
707
|
+
readonly SAVINGS_OPPORTUNITY_AFTER_DISCOUNT: "SavingsOpportunityAfterDiscount";
|
|
708
|
+
readonly TAGS: "Tags";
|
|
709
|
+
readonly UTILIZATION_METRICS_CPU_MAXIMUM: "UtilizationMetricsCpuMaximum";
|
|
710
|
+
readonly UTILIZATION_METRICS_DATABASE_CONNECTIONS_MAXIMUM: "UtilizationMetricsDatabaseConnectionsMaximum";
|
|
711
|
+
readonly UTILIZATION_METRICS_EBS_VOLUME_READ_IOPS_MAXIMUM: "UtilizationMetricsEBSVolumeReadIOPSMaximum";
|
|
712
|
+
readonly UTILIZATION_METRICS_EBS_VOLUME_WRITE_IOPS_MAXIMUM: "UtilizationMetricsEBSVolumeWriteIOPSMaximum";
|
|
713
|
+
readonly UTILIZATION_METRICS_MEMORY_MAXIMUM: "UtilizationMetricsMemoryMaximum";
|
|
714
|
+
readonly UTILIZATION_METRICS_NETWORK_IN_BYTES_PER_SECOND_MAXIMUM: "UtilizationMetricsNetworkInBytesPerSecondMaximum";
|
|
715
|
+
readonly UTILIZATION_METRICS_NETWORK_OUT_BYTES_PER_SECOND_MAXIMUM: "UtilizationMetricsNetworkOutBytesPerSecondMaximum";
|
|
716
|
+
readonly UTILIZATION_METRICS_VOLUME_READ_OPS_PER_SECOND_MAXIMUM: "UtilizationMetricsVolumeReadOpsPerSecondMaximum";
|
|
717
|
+
readonly UTILIZATION_METRICS_VOLUME_WRITE_OPS_PER_SECOND_MAXIMUM: "UtilizationMetricsVolumeWriteOpsPerSecondMaximum";
|
|
718
|
+
};
|
|
719
|
+
export type ExportableIdleField =
|
|
720
|
+
(typeof ExportableIdleField)[keyof typeof ExportableIdleField];
|
|
721
|
+
export declare const IdleRecommendationFilterName: {
|
|
722
|
+
readonly FINDING: "Finding";
|
|
723
|
+
readonly RESOURCE_TYPE: "ResourceType";
|
|
724
|
+
};
|
|
725
|
+
export type IdleRecommendationFilterName =
|
|
726
|
+
(typeof IdleRecommendationFilterName)[keyof typeof IdleRecommendationFilterName];
|
|
727
|
+
export interface IdleRecommendationFilter {
|
|
728
|
+
name?: IdleRecommendationFilterName | undefined;
|
|
729
|
+
values?: string[] | undefined;
|
|
730
|
+
}
|
|
731
|
+
export interface ExportIdleRecommendationsRequest {
|
|
732
|
+
accountIds?: string[] | undefined;
|
|
733
|
+
filters?: IdleRecommendationFilter[] | undefined;
|
|
734
|
+
fieldsToExport?: ExportableIdleField[] | undefined;
|
|
735
|
+
s3DestinationConfig: S3DestinationConfig | undefined;
|
|
736
|
+
fileFormat?: FileFormat | undefined;
|
|
737
|
+
includeMemberAccounts?: boolean | undefined;
|
|
738
|
+
}
|
|
739
|
+
export interface ExportIdleRecommendationsResponse {
|
|
740
|
+
jobId?: string | undefined;
|
|
741
|
+
s3Destination?: S3Destination | undefined;
|
|
742
|
+
}
|
|
696
743
|
export declare const ExportableLambdaFunctionField: {
|
|
697
744
|
readonly ACCOUNT_ID: "AccountId";
|
|
698
745
|
readonly CURRENT_CONFIGURATION_MEMORY_SIZE: "CurrentConfigurationMemorySize";
|
|
@@ -802,12 +849,14 @@ export declare const ExportableRDSDBField: {
|
|
|
802
849
|
readonly ACCOUNT_ID: "AccountId";
|
|
803
850
|
readonly CURRENT_DB_INSTANCE_CLASS: "CurrentDBInstanceClass";
|
|
804
851
|
readonly CURRENT_INSTANCE_ON_DEMAND_HOURLY_PRICE: "CurrentInstanceOnDemandHourlyPrice";
|
|
852
|
+
readonly CURRENT_INSTANCE_PERFORMANCE_RISK: "CurrentInstancePerformanceRisk";
|
|
805
853
|
readonly CURRENT_STORAGE_CONFIGURATION_ALLOCATED_STORAGE: "CurrentStorageConfigurationAllocatedStorage";
|
|
806
854
|
readonly CURRENT_STORAGE_CONFIGURATION_IOPS: "CurrentStorageConfigurationIOPS";
|
|
807
855
|
readonly CURRENT_STORAGE_CONFIGURATION_MAX_ALLOCATED_STORAGE: "CurrentStorageConfigurationMaxAllocatedStorage";
|
|
808
856
|
readonly CURRENT_STORAGE_CONFIGURATION_STORAGE_THROUGHPUT: "CurrentStorageConfigurationStorageThroughput";
|
|
809
857
|
readonly CURRENT_STORAGE_CONFIGURATION_STORAGE_TYPE: "CurrentStorageConfigurationStorageType";
|
|
810
858
|
readonly CURRENT_STORAGE_ON_DEMAND_MONTHLY_PRICE: "CurrentStorageOnDemandMonthlyPrice";
|
|
859
|
+
readonly DB_CLUSTER_IDENTIFIER: "DBClusterIdentifier";
|
|
811
860
|
readonly EFFECTIVE_RECOMMENDATION_PREFERENCES_CPU_VENDOR_ARCHITECTURES: "EffectiveRecommendationPreferencesCpuVendorArchitectures";
|
|
812
861
|
readonly EFFECTIVE_RECOMMENDATION_PREFERENCES_ENHANCED_INFRASTRUCTURE_METRICS: "EffectiveRecommendationPreferencesEnhancedInfrastructureMetrics";
|
|
813
862
|
readonly EFFECTIVE_RECOMMENDATION_PREFERENCES_LOOKBACK_PERIOD: "EffectiveRecommendationPreferencesLookBackPeriod";
|
|
@@ -831,6 +880,7 @@ export declare const ExportableRDSDBField: {
|
|
|
831
880
|
readonly LAST_REFRESH_TIMESTAMP: "LastRefreshTimestamp";
|
|
832
881
|
readonly LOOKBACK_PERIOD_IN_DAYS: "LookbackPeriodInDays";
|
|
833
882
|
readonly MULTI_AZ_DB_INSTANCE: "MultiAZDBInstance";
|
|
883
|
+
readonly PROMOTION_TIER: "PromotionTier";
|
|
834
884
|
readonly RESOURCE_ARN: "ResourceArn";
|
|
835
885
|
readonly STORAGE_FINDING: "StorageFinding";
|
|
836
886
|
readonly STORAGE_FINDING_REASON_CODES: "StorageFindingReasonCodes";
|
|
@@ -848,6 +898,10 @@ export declare const ExportableRDSDBField: {
|
|
|
848
898
|
readonly STORAGE_RECOMMENDATION_OPTIONS_STORAGE_THROUGHPUT: "StorageRecommendationOptionsStorageThroughput";
|
|
849
899
|
readonly STORAGE_RECOMMENDATION_OPTIONS_STORAGE_TYPE: "StorageRecommendationOptionsStorageType";
|
|
850
900
|
readonly TAGS: "Tags";
|
|
901
|
+
readonly UTILIZATION_METRICS_AURORA_MEMORY_HEALTH_STATE_MAXIMUM: "UtilizationMetricsAuroraMemoryHealthStateMaximum";
|
|
902
|
+
readonly UTILIZATION_METRICS_AURORA_MEMORY_NUM_DECLINED_SQL_TOTAL_MAXIMUM: "UtilizationMetricsAuroraMemoryNumDeclinedSqlTotalMaximum";
|
|
903
|
+
readonly UTILIZATION_METRICS_AURORA_MEMORY_NUM_KILL_CONN_TOTAL_MAXIMUM: "UtilizationMetricsAuroraMemoryNumKillConnTotalMaximum";
|
|
904
|
+
readonly UTILIZATION_METRICS_AURORA_MEMORY_NUM_KILL_QUERY_TOTAL_MAXIMUM: "UtilizationMetricsAuroraMemoryNumKillQueryTotalMaximum";
|
|
851
905
|
readonly UTILIZATION_METRICS_CPU_MAXIMUM: "UtilizationMetricsCpuMaximum";
|
|
852
906
|
readonly UTILIZATION_METRICS_DATABASE_CONNECTIONS_MAXIMUM: "UtilizationMetricsDatabaseConnectionsMaximum";
|
|
853
907
|
readonly UTILIZATION_METRICS_EBS_VOLUME_READ_IOPS_MAXIMUM: "UtilizationMetricsEBSVolumeReadIOPSMaximum";
|
|
@@ -858,6 +912,10 @@ export declare const ExportableRDSDBField: {
|
|
|
858
912
|
readonly UTILIZATION_METRICS_MEMORY_MAXIMUM: "UtilizationMetricsMemoryMaximum";
|
|
859
913
|
readonly UTILIZATION_METRICS_NETWORK_RECEIVE_THROUGHPUT_MAXIMUM: "UtilizationMetricsNetworkReceiveThroughputMaximum";
|
|
860
914
|
readonly UTILIZATION_METRICS_NETWORK_TRANSMIT_THROUGHPUT_MAXIMUM: "UtilizationMetricsNetworkTransmitThroughputMaximum";
|
|
915
|
+
readonly UTILIZATION_METRICS_READ_IOPS_EPHEMERAL_STORAGE_MAXIMUM: "UtilizationMetricsReadIOPSEphemeralStorageMaximum";
|
|
916
|
+
readonly UTILIZATION_METRICS_STORAGE_NETWORK_RECEIVE_THROUGHPUT_MAXIMUM: "UtilizationMetricsStorageNetworkReceiveThroughputMaximum";
|
|
917
|
+
readonly UTILIZATION_METRICS_STORAGE_NETWORK_TRANSMIT_THROUGHPUT_MAXIMUM: "UtilizationMetricsStorageNetworkTransmitThroughputMaximum";
|
|
918
|
+
readonly UTILIZATION_METRICS_WRITE_IOPS_EPHEMERAL_STORAGE_MAXIMUM: "UtilizationMetricsWriteIOPSEphemeralStorageMaximum";
|
|
861
919
|
};
|
|
862
920
|
export type ExportableRDSDBField =
|
|
863
921
|
(typeof ExportableRDSDBField)[keyof typeof ExportableRDSDBField];
|
|
@@ -1342,6 +1400,99 @@ export interface GetEnrollmentStatusesForOrganizationResponse {
|
|
|
1342
1400
|
accountEnrollmentStatuses?: AccountEnrollmentStatus[] | undefined;
|
|
1343
1401
|
nextToken?: string | undefined;
|
|
1344
1402
|
}
|
|
1403
|
+
export declare const Dimension: {
|
|
1404
|
+
readonly SAVINGS_VALUE: "SavingsValue";
|
|
1405
|
+
readonly SAVINGS_VALUE_AFTER_DISCOUNT: "SavingsValueAfterDiscount";
|
|
1406
|
+
};
|
|
1407
|
+
export type Dimension = (typeof Dimension)[keyof typeof Dimension];
|
|
1408
|
+
export declare const Order: {
|
|
1409
|
+
readonly ASC: "Asc";
|
|
1410
|
+
readonly DESC: "Desc";
|
|
1411
|
+
};
|
|
1412
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
1413
|
+
export interface OrderBy {
|
|
1414
|
+
dimension?: Dimension | undefined;
|
|
1415
|
+
order?: Order | undefined;
|
|
1416
|
+
}
|
|
1417
|
+
export interface GetIdleRecommendationsRequest {
|
|
1418
|
+
resourceArns?: string[] | undefined;
|
|
1419
|
+
nextToken?: string | undefined;
|
|
1420
|
+
maxResults?: number | undefined;
|
|
1421
|
+
filters?: IdleRecommendationFilter[] | undefined;
|
|
1422
|
+
accountIds?: string[] | undefined;
|
|
1423
|
+
orderBy?: OrderBy | undefined;
|
|
1424
|
+
}
|
|
1425
|
+
export declare const IdleRecommendationResourceType: {
|
|
1426
|
+
readonly AUTO_SCALING_GROUP: "AutoScalingGroup";
|
|
1427
|
+
readonly EBS_VOLUME: "EBSVolume";
|
|
1428
|
+
readonly EC2_INSTANCE: "EC2Instance";
|
|
1429
|
+
readonly ECS_SERVICE: "ECSService";
|
|
1430
|
+
readonly RDS_DB_INSTANCE: "RDSDBInstance";
|
|
1431
|
+
};
|
|
1432
|
+
export type IdleRecommendationResourceType =
|
|
1433
|
+
(typeof IdleRecommendationResourceType)[keyof typeof IdleRecommendationResourceType];
|
|
1434
|
+
export interface IdleRecommendationError {
|
|
1435
|
+
identifier?: string | undefined;
|
|
1436
|
+
code?: string | undefined;
|
|
1437
|
+
message?: string | undefined;
|
|
1438
|
+
resourceType?: IdleRecommendationResourceType | undefined;
|
|
1439
|
+
}
|
|
1440
|
+
export declare const IdleFinding: {
|
|
1441
|
+
readonly IDLE: "Idle";
|
|
1442
|
+
readonly UNATTACHED: "Unattached";
|
|
1443
|
+
};
|
|
1444
|
+
export type IdleFinding = (typeof IdleFinding)[keyof typeof IdleFinding];
|
|
1445
|
+
export interface IdleEstimatedMonthlySavings {
|
|
1446
|
+
currency?: Currency | undefined;
|
|
1447
|
+
value?: number | undefined;
|
|
1448
|
+
}
|
|
1449
|
+
export interface IdleSavingsOpportunity {
|
|
1450
|
+
savingsOpportunityPercentage?: number | undefined;
|
|
1451
|
+
estimatedMonthlySavings?: IdleEstimatedMonthlySavings | undefined;
|
|
1452
|
+
}
|
|
1453
|
+
export interface IdleSavingsOpportunityAfterDiscounts {
|
|
1454
|
+
savingsOpportunityPercentage?: number | undefined;
|
|
1455
|
+
estimatedMonthlySavings?: IdleEstimatedMonthlySavings | undefined;
|
|
1456
|
+
}
|
|
1457
|
+
export declare const IdleMetricName: {
|
|
1458
|
+
readonly CPU: "CPU";
|
|
1459
|
+
readonly DATABASE_CONNECTIONS: "DatabaseConnections";
|
|
1460
|
+
readonly EBS_VOLUME_READ_IOPS: "EBSVolumeReadIOPS";
|
|
1461
|
+
readonly EBS_VOLUME_WRITE_IOPS: "EBSVolumeWriteIOPS";
|
|
1462
|
+
readonly MEMORY: "Memory";
|
|
1463
|
+
readonly NETWORK_IN_BYTES_PER_SECOND: "NetworkInBytesPerSecond";
|
|
1464
|
+
readonly NETWORK_OUT_BYTES_PER_SECOND: "NetworkOutBytesPerSecond";
|
|
1465
|
+
readonly VOLUME_READ_OPS_PER_SECOND: "VolumeReadOpsPerSecond";
|
|
1466
|
+
readonly VOLUME_WRITE_OPS_PER_SECOND: "VolumeWriteOpsPerSecond";
|
|
1467
|
+
};
|
|
1468
|
+
export type IdleMetricName =
|
|
1469
|
+
(typeof IdleMetricName)[keyof typeof IdleMetricName];
|
|
1470
|
+
export interface IdleUtilizationMetric {
|
|
1471
|
+
name?: IdleMetricName | undefined;
|
|
1472
|
+
statistic?: MetricStatistic | undefined;
|
|
1473
|
+
value?: number | undefined;
|
|
1474
|
+
}
|
|
1475
|
+
export interface IdleRecommendation {
|
|
1476
|
+
resourceArn?: string | undefined;
|
|
1477
|
+
resourceId?: string | undefined;
|
|
1478
|
+
resourceType?: IdleRecommendationResourceType | undefined;
|
|
1479
|
+
accountId?: string | undefined;
|
|
1480
|
+
finding?: IdleFinding | undefined;
|
|
1481
|
+
findingDescription?: string | undefined;
|
|
1482
|
+
savingsOpportunity?: IdleSavingsOpportunity | undefined;
|
|
1483
|
+
savingsOpportunityAfterDiscounts?:
|
|
1484
|
+
| IdleSavingsOpportunityAfterDiscounts
|
|
1485
|
+
| undefined;
|
|
1486
|
+
utilizationMetrics?: IdleUtilizationMetric[] | undefined;
|
|
1487
|
+
lookBackPeriodInDays?: number | undefined;
|
|
1488
|
+
lastRefreshTimestamp?: Date | undefined;
|
|
1489
|
+
tags?: Tag[] | undefined;
|
|
1490
|
+
}
|
|
1491
|
+
export interface GetIdleRecommendationsResponse {
|
|
1492
|
+
nextToken?: string | undefined;
|
|
1493
|
+
idleRecommendations?: IdleRecommendation[] | undefined;
|
|
1494
|
+
errors?: IdleRecommendationError[] | undefined;
|
|
1495
|
+
}
|
|
1345
1496
|
export interface GetLambdaFunctionRecommendationsRequest {
|
|
1346
1497
|
functionArns?: string[] | undefined;
|
|
1347
1498
|
accountIds?: string[] | undefined;
|
|
@@ -1546,6 +1697,10 @@ export interface GetRDSDatabaseRecommendationProjectedMetricsRequest {
|
|
|
1546
1697
|
recommendationPreferences?: RecommendationPreferences | undefined;
|
|
1547
1698
|
}
|
|
1548
1699
|
export declare const RDSDBMetricName: {
|
|
1700
|
+
readonly AURORA_MEMORY_HEALTH_STATE: "AuroraMemoryHealthState";
|
|
1701
|
+
readonly AURORA_MEMORY_NUM_DECLINED_SQL: "AuroraMemoryNumDeclinedSql";
|
|
1702
|
+
readonly AURORA_MEMORY_NUM_KILL_CONN_TOTAL: "AuroraMemoryNumKillConnTotal";
|
|
1703
|
+
readonly AURORA_MEMORY_NUM_KILL_QUERY_TOTAL: "AuroraMemoryNumKillQueryTotal";
|
|
1549
1704
|
readonly CPU: "CPU";
|
|
1550
1705
|
readonly DATABASE_CONNECTIONS: "DatabaseConnections";
|
|
1551
1706
|
readonly EBS_VOLUME_READ_IOPS: "EBSVolumeReadIOPS";
|
|
@@ -1556,6 +1711,10 @@ export declare const RDSDBMetricName: {
|
|
|
1556
1711
|
readonly MEMORY: "Memory";
|
|
1557
1712
|
readonly NETWORK_RECEIVE_THROUGHPUT: "NetworkReceiveThroughput";
|
|
1558
1713
|
readonly NETWORK_TRANSMIT_THROUGHPUT: "NetworkTransmitThroughput";
|
|
1714
|
+
readonly READ_IOPS_EPHEMERAL_STORAGE: "ReadIOPSEphemeralStorage";
|
|
1715
|
+
readonly STORAGE_NETWORK_RECEIVE_THROUGHPUT: "StorageNetworkReceiveThroughput";
|
|
1716
|
+
readonly STORAGE_NETWORK_TRANSMIT_THROUGHPUT: "StorageNetworkTransmitThroughput";
|
|
1717
|
+
readonly WRITE_IOPS_EPHEMERAL_STORAGE: "WriteIOPSEphemeralStorage";
|
|
1559
1718
|
};
|
|
1560
1719
|
export type RDSDBMetricName =
|
|
1561
1720
|
(typeof RDSDBMetricName)[keyof typeof RDSDBMetricName];
|
|
@@ -1582,6 +1741,14 @@ export interface GetRDSDatabaseRecommendationsRequest {
|
|
|
1582
1741
|
accountIds?: string[] | undefined;
|
|
1583
1742
|
recommendationPreferences?: RecommendationPreferences | undefined;
|
|
1584
1743
|
}
|
|
1744
|
+
export declare const RDSCurrentInstancePerformanceRisk: {
|
|
1745
|
+
readonly HIGH: "High";
|
|
1746
|
+
readonly LOW: "Low";
|
|
1747
|
+
readonly MEDIUM: "Medium";
|
|
1748
|
+
readonly VERY_LOW: "VeryLow";
|
|
1749
|
+
};
|
|
1750
|
+
export type RDSCurrentInstancePerformanceRisk =
|
|
1751
|
+
(typeof RDSCurrentInstancePerformanceRisk)[keyof typeof RDSCurrentInstancePerformanceRisk];
|
|
1585
1752
|
export interface DBStorageConfiguration {
|
|
1586
1753
|
storageType?: string | undefined;
|
|
1587
1754
|
allocatedStorage?: number | undefined;
|
|
@@ -1620,9 +1787,14 @@ export type RDSInstanceFinding =
|
|
|
1620
1787
|
export declare const RDSInstanceFindingReasonCode: {
|
|
1621
1788
|
readonly CPU_OVER_PROVISIONED: "CPUOverprovisioned";
|
|
1622
1789
|
readonly CPU_UNDER_PROVISIONED: "CPUUnderprovisioned";
|
|
1790
|
+
readonly DB_CLUSTER_WRITER_UNDER_PROVISIONED: "DBClusterWriterUnderprovisioned";
|
|
1623
1791
|
readonly EBS_IOPS_OVER_PROVISIONED: "EBSIOPSOverprovisioned";
|
|
1792
|
+
readonly EBS_IOPS_UNDER_PROVISIONED: "EBSIOPSUnderprovisioned";
|
|
1624
1793
|
readonly EBS_THROUGHPUT_OVER_PROVISIONED: "EBSThroughputOverprovisioned";
|
|
1625
1794
|
readonly EBS_THROUGHPUT_UNDER_PROVISIONED: "EBSThroughputUnderprovisioned";
|
|
1795
|
+
readonly INSTANCE_STORAGE_READ_IOPS_UNDER_PROVISIONED: "InstanceStorageReadIOPSUnderprovisioned";
|
|
1796
|
+
readonly INSTANCE_STORAGE_WRITE_IOPS_UNDER_PROVISIONED: "InstanceStorageWriteIOPSUnderprovisioned";
|
|
1797
|
+
readonly MEMORY_UNDER_PROVISIONED: "MemoryUnderprovisioned";
|
|
1626
1798
|
readonly NETWORK_BANDWIDTH_OVER_PROVISIONED: "NetworkBandwidthOverprovisioned";
|
|
1627
1799
|
readonly NETWORK_BANDWIDTH_UNDER_PROVISIONED: "NetworkBandwidthUnderprovisioned";
|
|
1628
1800
|
readonly NEW_ENGINE_VERSION_AVAILABLE: "NewEngineVersionAvailable";
|
|
@@ -1697,12 +1869,17 @@ export interface RDSDBRecommendation {
|
|
|
1697
1869
|
accountId?: string | undefined;
|
|
1698
1870
|
engine?: string | undefined;
|
|
1699
1871
|
engineVersion?: string | undefined;
|
|
1872
|
+
promotionTier?: number | undefined;
|
|
1700
1873
|
currentDBInstanceClass?: string | undefined;
|
|
1701
1874
|
currentStorageConfiguration?: DBStorageConfiguration | undefined;
|
|
1875
|
+
dbClusterIdentifier?: string | undefined;
|
|
1702
1876
|
idle?: Idle | undefined;
|
|
1703
1877
|
instanceFinding?: RDSInstanceFinding | undefined;
|
|
1704
1878
|
storageFinding?: RDSStorageFinding | undefined;
|
|
1705
1879
|
instanceFindingReasonCodes?: RDSInstanceFindingReasonCode[] | undefined;
|
|
1880
|
+
currentInstancePerformanceRisk?:
|
|
1881
|
+
| RDSCurrentInstancePerformanceRisk
|
|
1882
|
+
| undefined;
|
|
1706
1883
|
storageFindingReasonCodes?: RDSStorageFindingReasonCode[] | undefined;
|
|
1707
1884
|
instanceRecommendationOptions?:
|
|
1708
1885
|
| RDSDBInstanceRecommendationOption[]
|
|
@@ -1761,6 +1938,10 @@ export interface CurrentPerformanceRiskRatings {
|
|
|
1761
1938
|
low?: number | undefined;
|
|
1762
1939
|
veryLow?: number | undefined;
|
|
1763
1940
|
}
|
|
1941
|
+
export interface IdleSummary {
|
|
1942
|
+
name?: IdleFinding | undefined;
|
|
1943
|
+
value?: number | undefined;
|
|
1944
|
+
}
|
|
1764
1945
|
export interface InferredWorkloadSaving {
|
|
1765
1946
|
inferredWorkloadTypes?: InferredWorkloadType[] | undefined;
|
|
1766
1947
|
estimatedMonthlySavings?: EstimatedMonthlySavings | undefined;
|
|
@@ -1782,9 +1963,12 @@ export interface Summary {
|
|
|
1782
1963
|
}
|
|
1783
1964
|
export interface RecommendationSummary {
|
|
1784
1965
|
summaries?: Summary[] | undefined;
|
|
1966
|
+
idleSummaries?: IdleSummary[] | undefined;
|
|
1785
1967
|
recommendationResourceType?: RecommendationSourceType | undefined;
|
|
1786
1968
|
accountId?: string | undefined;
|
|
1787
1969
|
savingsOpportunity?: SavingsOpportunity | undefined;
|
|
1970
|
+
idleSavingsOpportunity?: SavingsOpportunity | undefined;
|
|
1971
|
+
aggregatedSavingsOpportunity?: SavingsOpportunity | undefined;
|
|
1788
1972
|
currentPerformanceRiskRatings?: CurrentPerformanceRiskRatings | undefined;
|
|
1789
1973
|
inferredWorkloadSavings?: InferredWorkloadSaving[] | undefined;
|
|
1790
1974
|
}
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
ExportECSServiceRecommendationsCommandInput,
|
|
28
28
|
ExportECSServiceRecommendationsCommandOutput,
|
|
29
29
|
} from "../commands/ExportECSServiceRecommendationsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ExportIdleRecommendationsCommandInput,
|
|
32
|
+
ExportIdleRecommendationsCommandOutput,
|
|
33
|
+
} from "../commands/ExportIdleRecommendationsCommand";
|
|
30
34
|
import {
|
|
31
35
|
ExportLambdaFunctionRecommendationsCommandInput,
|
|
32
36
|
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -75,6 +79,10 @@ import {
|
|
|
75
79
|
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
76
80
|
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
77
81
|
} from "../commands/GetEnrollmentStatusesForOrganizationCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetIdleRecommendationsCommandInput,
|
|
84
|
+
GetIdleRecommendationsCommandOutput,
|
|
85
|
+
} from "../commands/GetIdleRecommendationsCommand";
|
|
78
86
|
import {
|
|
79
87
|
GetLambdaFunctionRecommendationsCommandInput,
|
|
80
88
|
GetLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -131,6 +139,10 @@ export declare const se_ExportECSServiceRecommendationsCommand: (
|
|
|
131
139
|
input: ExportECSServiceRecommendationsCommandInput,
|
|
132
140
|
context: __SerdeContext
|
|
133
141
|
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_ExportIdleRecommendationsCommand: (
|
|
143
|
+
input: ExportIdleRecommendationsCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
134
146
|
export declare const se_ExportLambdaFunctionRecommendationsCommand: (
|
|
135
147
|
input: ExportLambdaFunctionRecommendationsCommandInput,
|
|
136
148
|
context: __SerdeContext
|
|
@@ -179,6 +191,10 @@ export declare const se_GetEnrollmentStatusesForOrganizationCommand: (
|
|
|
179
191
|
input: GetEnrollmentStatusesForOrganizationCommandInput,
|
|
180
192
|
context: __SerdeContext
|
|
181
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_GetIdleRecommendationsCommand: (
|
|
195
|
+
input: GetIdleRecommendationsCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
182
198
|
export declare const se_GetLambdaFunctionRecommendationsCommand: (
|
|
183
199
|
input: GetLambdaFunctionRecommendationsCommandInput,
|
|
184
200
|
context: __SerdeContext
|
|
@@ -235,6 +251,10 @@ export declare const de_ExportECSServiceRecommendationsCommand: (
|
|
|
235
251
|
output: __HttpResponse,
|
|
236
252
|
context: __SerdeContext
|
|
237
253
|
) => Promise<ExportECSServiceRecommendationsCommandOutput>;
|
|
254
|
+
export declare const de_ExportIdleRecommendationsCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<ExportIdleRecommendationsCommandOutput>;
|
|
238
258
|
export declare const de_ExportLambdaFunctionRecommendationsCommand: (
|
|
239
259
|
output: __HttpResponse,
|
|
240
260
|
context: __SerdeContext
|
|
@@ -283,6 +303,10 @@ export declare const de_GetEnrollmentStatusesForOrganizationCommand: (
|
|
|
283
303
|
output: __HttpResponse,
|
|
284
304
|
context: __SerdeContext
|
|
285
305
|
) => Promise<GetEnrollmentStatusesForOrganizationCommandOutput>;
|
|
306
|
+
export declare const de_GetIdleRecommendationsCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<GetIdleRecommendationsCommandOutput>;
|
|
286
310
|
export declare const de_GetLambdaFunctionRecommendationsCommand: (
|
|
287
311
|
output: __HttpResponse,
|
|
288
312
|
context: __SerdeContext
|