@aws-sdk/client-compute-optimizer 3.295.0 → 3.297.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.
Files changed (32) hide show
  1. package/dist-types/ComputeOptimizer.d.ts +22 -0
  2. package/dist-types/ComputeOptimizerClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +16 -0
  4. package/dist-types/commands/DescribeRecommendationExportJobsCommand.d.ts +16 -0
  5. package/dist-types/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +16 -0
  6. package/dist-types/commands/ExportEBSVolumeRecommendationsCommand.d.ts +16 -0
  7. package/dist-types/commands/ExportEC2InstanceRecommendationsCommand.d.ts +16 -0
  8. package/dist-types/commands/ExportECSServiceRecommendationsCommand.d.ts +16 -0
  9. package/dist-types/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +16 -0
  10. package/dist-types/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +16 -0
  11. package/dist-types/commands/GetEBSVolumeRecommendationsCommand.d.ts +16 -0
  12. package/dist-types/commands/GetEC2InstanceRecommendationsCommand.d.ts +16 -0
  13. package/dist-types/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetECSServiceRecommendationProjectedMetricsCommand.d.ts +16 -0
  15. package/dist-types/commands/GetECSServiceRecommendationsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +16 -0
  17. package/dist-types/commands/GetEnrollmentStatusCommand.d.ts +16 -0
  18. package/dist-types/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +16 -0
  19. package/dist-types/commands/GetLambdaFunctionRecommendationsCommand.d.ts +16 -0
  20. package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +16 -0
  21. package/dist-types/commands/GetRecommendationSummariesCommand.d.ts +16 -0
  22. package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +16 -0
  23. package/dist-types/commands/UpdateEnrollmentStatusCommand.d.ts +16 -0
  24. package/dist-types/models/ComputeOptimizerServiceException.d.ts +2 -0
  25. package/dist-types/models/models_0.d.ts +323 -0
  26. package/dist-types/pagination/DescribeRecommendationExportJobsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/GetEnrollmentStatusesForOrganizationPaginator.d.ts +3 -0
  28. package/dist-types/pagination/GetLambdaFunctionRecommendationsPaginator.d.ts +3 -0
  29. package/dist-types/pagination/GetRecommendationPreferencesPaginator.d.ts +3 -0
  30. package/dist-types/pagination/GetRecommendationSummariesPaginator.d.ts +3 -0
  31. package/dist-types/pagination/Interfaces.d.ts +3 -0
  32. package/package.json +29 -29
@@ -22,6 +22,7 @@ import { PutRecommendationPreferencesCommandInput, PutRecommendationPreferencesC
22
22
  import { UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput } from "./commands/UpdateEnrollmentStatusCommand";
23
23
  import { ComputeOptimizerClient } from "./ComputeOptimizerClient";
24
24
  /**
25
+ * @public
25
26
  * <p>Compute Optimizer is a service that analyzes the configuration and utilization
26
27
  * metrics of your Amazon Web Services compute resources, such as Amazon EC2
27
28
  * instances, Amazon EC2 Auto Scaling groups, Lambda functions, Amazon EBS volumes, and Amazon ECS services on Fargate.
@@ -37,6 +38,7 @@ import { ComputeOptimizerClient } from "./ComputeOptimizerClient";
37
38
  */
38
39
  export declare class ComputeOptimizer extends ComputeOptimizerClient {
39
40
  /**
41
+ * @public
40
42
  * <p>Deletes a recommendation preference, such as enhanced infrastructure metrics.</p>
41
43
  * <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
42
44
  * enhanced infrastructure metrics</a> in the <i>Compute Optimizer User
@@ -46,6 +48,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
46
48
  deleteRecommendationPreferences(args: DeleteRecommendationPreferencesCommandInput, cb: (err: any, data?: DeleteRecommendationPreferencesCommandOutput) => void): void;
47
49
  deleteRecommendationPreferences(args: DeleteRecommendationPreferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecommendationPreferencesCommandOutput) => void): void;
48
50
  /**
51
+ * @public
49
52
  * <p>Describes recommendation export jobs created in the last seven days.</p>
50
53
  * <p>Use the <a>ExportAutoScalingGroupRecommendations</a> or <a>ExportEC2InstanceRecommendations</a> actions to request an export of your
51
54
  * recommendations. Then use the <a>DescribeRecommendationExportJobs</a> action
@@ -55,6 +58,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
55
58
  describeRecommendationExportJobs(args: DescribeRecommendationExportJobsCommandInput, cb: (err: any, data?: DescribeRecommendationExportJobsCommandOutput) => void): void;
56
59
  describeRecommendationExportJobs(args: DescribeRecommendationExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecommendationExportJobsCommandOutput) => void): void;
57
60
  /**
61
+ * @public
58
62
  * <p>Exports optimization recommendations for Auto Scaling groups.</p>
59
63
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
60
64
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -66,6 +70,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
66
70
  exportAutoScalingGroupRecommendations(args: ExportAutoScalingGroupRecommendationsCommandInput, cb: (err: any, data?: ExportAutoScalingGroupRecommendationsCommandOutput) => void): void;
67
71
  exportAutoScalingGroupRecommendations(args: ExportAutoScalingGroupRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportAutoScalingGroupRecommendationsCommandOutput) => void): void;
68
72
  /**
73
+ * @public
69
74
  * <p>Exports optimization recommendations for Amazon EBS volumes.</p>
70
75
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
71
76
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -77,6 +82,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
77
82
  exportEBSVolumeRecommendations(args: ExportEBSVolumeRecommendationsCommandInput, cb: (err: any, data?: ExportEBSVolumeRecommendationsCommandOutput) => void): void;
78
83
  exportEBSVolumeRecommendations(args: ExportEBSVolumeRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportEBSVolumeRecommendationsCommandOutput) => void): void;
79
84
  /**
85
+ * @public
80
86
  * <p>Exports optimization recommendations for Amazon EC2 instances.</p>
81
87
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
82
88
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -88,6 +94,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
88
94
  exportEC2InstanceRecommendations(args: ExportEC2InstanceRecommendationsCommandInput, cb: (err: any, data?: ExportEC2InstanceRecommendationsCommandOutput) => void): void;
89
95
  exportEC2InstanceRecommendations(args: ExportEC2InstanceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportEC2InstanceRecommendationsCommandOutput) => void): void;
90
96
  /**
97
+ * @public
91
98
  * <p>
92
99
  * Exports optimization recommendations for Amazon ECS services on Fargate.
93
100
  * </p>
@@ -101,6 +108,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
101
108
  exportECSServiceRecommendations(args: ExportECSServiceRecommendationsCommandInput, cb: (err: any, data?: ExportECSServiceRecommendationsCommandOutput) => void): void;
102
109
  exportECSServiceRecommendations(args: ExportECSServiceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportECSServiceRecommendationsCommandOutput) => void): void;
103
110
  /**
111
+ * @public
104
112
  * <p>Exports optimization recommendations for Lambda functions.</p>
105
113
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
106
114
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -112,6 +120,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
112
120
  exportLambdaFunctionRecommendations(args: ExportLambdaFunctionRecommendationsCommandInput, cb: (err: any, data?: ExportLambdaFunctionRecommendationsCommandOutput) => void): void;
113
121
  exportLambdaFunctionRecommendations(args: ExportLambdaFunctionRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportLambdaFunctionRecommendationsCommandOutput) => void): void;
114
122
  /**
123
+ * @public
115
124
  * <p>Returns Auto Scaling group recommendations.</p>
116
125
  * <p>Compute Optimizer generates recommendations for Amazon EC2 Auto Scaling groups that
117
126
  * meet a specific set of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported
@@ -122,6 +131,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
122
131
  getAutoScalingGroupRecommendations(args: GetAutoScalingGroupRecommendationsCommandInput, cb: (err: any, data?: GetAutoScalingGroupRecommendationsCommandOutput) => void): void;
123
132
  getAutoScalingGroupRecommendations(args: GetAutoScalingGroupRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAutoScalingGroupRecommendationsCommandOutput) => void): void;
124
133
  /**
134
+ * @public
125
135
  * <p>Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.</p>
126
136
  * <p>Compute Optimizer generates recommendations for Amazon EBS volumes that
127
137
  * meet a specific set of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported
@@ -132,6 +142,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
132
142
  getEBSVolumeRecommendations(args: GetEBSVolumeRecommendationsCommandInput, cb: (err: any, data?: GetEBSVolumeRecommendationsCommandOutput) => void): void;
133
143
  getEBSVolumeRecommendations(args: GetEBSVolumeRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEBSVolumeRecommendationsCommandOutput) => void): void;
134
144
  /**
145
+ * @public
135
146
  * <p>Returns Amazon EC2 instance recommendations.</p>
136
147
  * <p>Compute Optimizer generates recommendations for Amazon Elastic Compute Cloud (Amazon EC2) instances that meet a specific set of requirements. For more
137
148
  * information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
@@ -142,6 +153,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
142
153
  getEC2InstanceRecommendations(args: GetEC2InstanceRecommendationsCommandInput, cb: (err: any, data?: GetEC2InstanceRecommendationsCommandOutput) => void): void;
143
154
  getEC2InstanceRecommendations(args: GetEC2InstanceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEC2InstanceRecommendationsCommandOutput) => void): void;
144
155
  /**
156
+ * @public
145
157
  * <p>Returns the projected utilization metrics of Amazon EC2 instance
146
158
  * recommendations.</p>
147
159
  * <note>
@@ -155,6 +167,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
155
167
  getEC2RecommendationProjectedMetrics(args: GetEC2RecommendationProjectedMetricsCommandInput, cb: (err: any, data?: GetEC2RecommendationProjectedMetricsCommandOutput) => void): void;
156
168
  getEC2RecommendationProjectedMetrics(args: GetEC2RecommendationProjectedMetricsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEC2RecommendationProjectedMetricsCommandOutput) => void): void;
157
169
  /**
170
+ * @public
158
171
  * <p>
159
172
  * Returns the projected metrics of Amazon ECS service recommendations.
160
173
  * </p>
@@ -163,6 +176,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
163
176
  getECSServiceRecommendationProjectedMetrics(args: GetECSServiceRecommendationProjectedMetricsCommandInput, cb: (err: any, data?: GetECSServiceRecommendationProjectedMetricsCommandOutput) => void): void;
164
177
  getECSServiceRecommendationProjectedMetrics(args: GetECSServiceRecommendationProjectedMetricsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetECSServiceRecommendationProjectedMetricsCommandOutput) => void): void;
165
178
  /**
179
+ * @public
166
180
  * <p>
167
181
  * Returns Amazon ECS service recommendations.
168
182
  * </p>
@@ -178,6 +192,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
178
192
  getECSServiceRecommendations(args: GetECSServiceRecommendationsCommandInput, cb: (err: any, data?: GetECSServiceRecommendationsCommandOutput) => void): void;
179
193
  getECSServiceRecommendations(args: GetECSServiceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetECSServiceRecommendationsCommandOutput) => void): void;
180
194
  /**
195
+ * @public
181
196
  * <p>Returns the recommendation preferences that are in effect for a given resource, such
182
197
  * as enhanced infrastructure metrics. Considers all applicable preferences that you might
183
198
  * have set at the resource, account, and organization level.</p>
@@ -189,6 +204,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
189
204
  getEffectiveRecommendationPreferences(args: GetEffectiveRecommendationPreferencesCommandInput, cb: (err: any, data?: GetEffectiveRecommendationPreferencesCommandOutput) => void): void;
190
205
  getEffectiveRecommendationPreferences(args: GetEffectiveRecommendationPreferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEffectiveRecommendationPreferencesCommandOutput) => void): void;
191
206
  /**
207
+ * @public
192
208
  * <p>Returns the enrollment (opt in) status of an account to the Compute Optimizer
193
209
  * service.</p>
194
210
  * <p>If the account is the management account of an organization, this action also confirms
@@ -199,6 +215,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
199
215
  getEnrollmentStatus(args: GetEnrollmentStatusCommandInput, cb: (err: any, data?: GetEnrollmentStatusCommandOutput) => void): void;
200
216
  getEnrollmentStatus(args: GetEnrollmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnrollmentStatusCommandOutput) => void): void;
201
217
  /**
218
+ * @public
202
219
  * <p>Returns the Compute Optimizer enrollment (opt-in) status of organization member
203
220
  * accounts, if your account is an organization management account.</p>
204
221
  * <p>To get the enrollment status of standalone accounts, use the <a>GetEnrollmentStatus</a> action.</p>
@@ -207,6 +224,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
207
224
  getEnrollmentStatusesForOrganization(args: GetEnrollmentStatusesForOrganizationCommandInput, cb: (err: any, data?: GetEnrollmentStatusesForOrganizationCommandOutput) => void): void;
208
225
  getEnrollmentStatusesForOrganization(args: GetEnrollmentStatusesForOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnrollmentStatusesForOrganizationCommandOutput) => void): void;
209
226
  /**
227
+ * @public
210
228
  * <p>Returns Lambda function recommendations.</p>
211
229
  * <p>Compute Optimizer generates recommendations for functions that meet a specific set
212
230
  * of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
@@ -217,6 +235,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
217
235
  getLambdaFunctionRecommendations(args: GetLambdaFunctionRecommendationsCommandInput, cb: (err: any, data?: GetLambdaFunctionRecommendationsCommandOutput) => void): void;
218
236
  getLambdaFunctionRecommendations(args: GetLambdaFunctionRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLambdaFunctionRecommendationsCommandOutput) => void): void;
219
237
  /**
238
+ * @public
220
239
  * <p>Returns existing recommendation preferences, such as enhanced infrastructure
221
240
  * metrics.</p>
222
241
  * <p>Use the <code>scope</code> parameter to specify which preferences to return. You can
@@ -230,6 +249,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
230
249
  getRecommendationPreferences(args: GetRecommendationPreferencesCommandInput, cb: (err: any, data?: GetRecommendationPreferencesCommandOutput) => void): void;
231
250
  getRecommendationPreferences(args: GetRecommendationPreferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationPreferencesCommandOutput) => void): void;
232
251
  /**
252
+ * @public
233
253
  * <p>Returns the optimization findings for an account.</p>
234
254
  * <p>It returns the number of:</p>
235
255
  * <ul>
@@ -260,6 +280,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
260
280
  getRecommendationSummaries(args: GetRecommendationSummariesCommandInput, cb: (err: any, data?: GetRecommendationSummariesCommandOutput) => void): void;
261
281
  getRecommendationSummaries(args: GetRecommendationSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationSummariesCommandOutput) => void): void;
262
282
  /**
283
+ * @public
263
284
  * <p>Creates a new recommendation preference or updates an existing recommendation
264
285
  * preference, such as enhanced infrastructure metrics.</p>
265
286
  * <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
@@ -270,6 +291,7 @@ export declare class ComputeOptimizer extends ComputeOptimizerClient {
270
291
  putRecommendationPreferences(args: PutRecommendationPreferencesCommandInput, cb: (err: any, data?: PutRecommendationPreferencesCommandOutput) => void): void;
271
292
  putRecommendationPreferences(args: PutRecommendationPreferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecommendationPreferencesCommandOutput) => void): void;
272
293
  /**
294
+ * @public
273
295
  * <p>Updates the enrollment (opt in and opt out) status of an account to the Compute Optimizer service.</p>
274
296
  * <p>If the account is a management account of an organization, this action can also be
275
297
  * used to enroll member accounts of the organization.</p>
@@ -29,15 +29,24 @@ import { GetRecommendationSummariesCommandInput, GetRecommendationSummariesComma
29
29
  import { PutRecommendationPreferencesCommandInput, PutRecommendationPreferencesCommandOutput } from "./commands/PutRecommendationPreferencesCommand";
30
30
  import { UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput } from "./commands/UpdateEnrollmentStatusCommand";
31
31
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
32
+ /**
33
+ * @public
34
+ */
32
35
  export type ServiceInputTypes = DeleteRecommendationPreferencesCommandInput | DescribeRecommendationExportJobsCommandInput | ExportAutoScalingGroupRecommendationsCommandInput | ExportEBSVolumeRecommendationsCommandInput | ExportEC2InstanceRecommendationsCommandInput | ExportECSServiceRecommendationsCommandInput | ExportLambdaFunctionRecommendationsCommandInput | GetAutoScalingGroupRecommendationsCommandInput | GetEBSVolumeRecommendationsCommandInput | GetEC2InstanceRecommendationsCommandInput | GetEC2RecommendationProjectedMetricsCommandInput | GetECSServiceRecommendationProjectedMetricsCommandInput | GetECSServiceRecommendationsCommandInput | GetEffectiveRecommendationPreferencesCommandInput | GetEnrollmentStatusCommandInput | GetEnrollmentStatusesForOrganizationCommandInput | GetLambdaFunctionRecommendationsCommandInput | GetRecommendationPreferencesCommandInput | GetRecommendationSummariesCommandInput | PutRecommendationPreferencesCommandInput | UpdateEnrollmentStatusCommandInput;
36
+ /**
37
+ * @public
38
+ */
33
39
  export type ServiceOutputTypes = DeleteRecommendationPreferencesCommandOutput | DescribeRecommendationExportJobsCommandOutput | ExportAutoScalingGroupRecommendationsCommandOutput | ExportEBSVolumeRecommendationsCommandOutput | ExportEC2InstanceRecommendationsCommandOutput | ExportECSServiceRecommendationsCommandOutput | ExportLambdaFunctionRecommendationsCommandOutput | GetAutoScalingGroupRecommendationsCommandOutput | GetEBSVolumeRecommendationsCommandOutput | GetEC2InstanceRecommendationsCommandOutput | GetEC2RecommendationProjectedMetricsCommandOutput | GetECSServiceRecommendationProjectedMetricsCommandOutput | GetECSServiceRecommendationsCommandOutput | GetEffectiveRecommendationPreferencesCommandOutput | GetEnrollmentStatusCommandOutput | GetEnrollmentStatusesForOrganizationCommandOutput | GetLambdaFunctionRecommendationsCommandOutput | GetRecommendationPreferencesCommandOutput | GetRecommendationSummariesCommandOutput | PutRecommendationPreferencesCommandOutput | UpdateEnrollmentStatusCommandOutput;
40
+ /**
41
+ * @public
42
+ */
34
43
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
44
  /**
36
45
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
37
46
  */
38
47
  requestHandler?: __HttpHandler;
39
48
  /**
40
- * A constructor for a class implementing the {@link __Checksum} interface
49
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
41
50
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
42
51
  * @internal
43
52
  */
@@ -127,23 +136,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
127
136
  */
128
137
  logger?: __Logger;
129
138
  /**
130
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
139
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
131
140
  */
132
141
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
133
142
  }
143
+ /**
144
+ * @public
145
+ */
134
146
  type ComputeOptimizerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
135
147
  /**
136
- * The configuration interface of ComputeOptimizerClient class constructor that set the region, credentials and other options.
148
+ * @public
149
+ *
150
+ * The configuration interface of ComputeOptimizerClient class constructor that set the region, credentials and other options.
137
151
  */
138
152
  export interface ComputeOptimizerClientConfig extends ComputeOptimizerClientConfigType {
139
153
  }
154
+ /**
155
+ * @public
156
+ */
140
157
  type ComputeOptimizerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
141
158
  /**
142
- * The resolved configuration interface of ComputeOptimizerClient class. This is resolved and normalized from the {@link ComputeOptimizerClientConfig | constructor configuration interface}.
159
+ * @public
160
+ *
161
+ * The resolved configuration interface of ComputeOptimizerClient class. This is resolved and normalized from the {@link ComputeOptimizerClientConfig | constructor configuration interface}.
143
162
  */
144
163
  export interface ComputeOptimizerClientResolvedConfig extends ComputeOptimizerClientResolvedConfigType {
145
164
  }
146
165
  /**
166
+ * @public
147
167
  * <p>Compute Optimizer is a service that analyzes the configuration and utilization
148
168
  * metrics of your Amazon Web Services compute resources, such as Amazon EC2
149
169
  * instances, Amazon EC2 Auto Scaling groups, Lambda functions, Amazon EBS volumes, and Amazon ECS services on Fargate.
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { DeleteRecommendationPreferencesRequest, DeleteRecommendationPreferencesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRecommendationPreferencesCommand}.
8
10
  */
9
11
  export interface DeleteRecommendationPreferencesCommandInput extends DeleteRecommendationPreferencesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRecommendationPreferencesCommand}.
13
17
  */
14
18
  export interface DeleteRecommendationPreferencesCommandOutput extends DeleteRecommendationPreferencesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a recommendation preference, such as enhanced infrastructure metrics.</p>
18
23
  * <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
19
24
  * enhanced infrastructure metrics</a> in the <i>Compute Optimizer User
@@ -28,6 +33,8 @@ export interface DeleteRecommendationPreferencesCommandOutput extends DeleteReco
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DeleteRecommendationPreferencesCommandInput - {@link DeleteRecommendationPreferencesCommandInput}
37
+ * @returns {@link DeleteRecommendationPreferencesCommandOutput}
31
38
  * @see {@link DeleteRecommendationPreferencesCommandInput} for command's `input` shape.
32
39
  * @see {@link DeleteRecommendationPreferencesCommandOutput} for command's `response` shape.
33
40
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -62,11 +69,20 @@ export interface DeleteRecommendationPreferencesCommandOutput extends DeleteReco
62
69
  export declare class DeleteRecommendationPreferencesCommand extends $Command<DeleteRecommendationPreferencesCommandInput, DeleteRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig> {
63
70
  readonly input: DeleteRecommendationPreferencesCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: DeleteRecommendationPreferencesCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecommendationPreferencesCommandInput, DeleteRecommendationPreferencesCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { DescribeRecommendationExportJobsRequest, DescribeRecommendationExportJobsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRecommendationExportJobsCommand}.
8
10
  */
9
11
  export interface DescribeRecommendationExportJobsCommandInput extends DescribeRecommendationExportJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRecommendationExportJobsCommand}.
13
17
  */
14
18
  export interface DescribeRecommendationExportJobsCommandOutput extends DescribeRecommendationExportJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes recommendation export jobs created in the last seven days.</p>
18
23
  * <p>Use the <a>ExportAutoScalingGroupRecommendations</a> or <a>ExportEC2InstanceRecommendations</a> actions to request an export of your
19
24
  * recommendations. Then use the <a>DescribeRecommendationExportJobs</a> action
@@ -28,6 +33,8 @@ export interface DescribeRecommendationExportJobsCommandOutput extends DescribeR
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DescribeRecommendationExportJobsCommandInput - {@link DescribeRecommendationExportJobsCommandInput}
37
+ * @returns {@link DescribeRecommendationExportJobsCommandOutput}
31
38
  * @see {@link DescribeRecommendationExportJobsCommandInput} for command's `input` shape.
32
39
  * @see {@link DescribeRecommendationExportJobsCommandOutput} for command's `response` shape.
33
40
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -62,11 +69,20 @@ export interface DescribeRecommendationExportJobsCommandOutput extends DescribeR
62
69
  export declare class DescribeRecommendationExportJobsCommand extends $Command<DescribeRecommendationExportJobsCommandInput, DescribeRecommendationExportJobsCommandOutput, ComputeOptimizerClientResolvedConfig> {
63
70
  readonly input: DescribeRecommendationExportJobsCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: DescribeRecommendationExportJobsCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecommendationExportJobsCommandInput, DescribeRecommendationExportJobsCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { ExportAutoScalingGroupRecommendationsRequest, ExportAutoScalingGroupRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportAutoScalingGroupRecommendationsCommand}.
8
10
  */
9
11
  export interface ExportAutoScalingGroupRecommendationsCommandInput extends ExportAutoScalingGroupRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportAutoScalingGroupRecommendationsCommand}.
13
17
  */
14
18
  export interface ExportAutoScalingGroupRecommendationsCommandOutput extends ExportAutoScalingGroupRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exports optimization recommendations for Auto Scaling groups.</p>
18
23
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
19
24
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -30,6 +35,8 @@ export interface ExportAutoScalingGroupRecommendationsCommandOutput extends Expo
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ExportAutoScalingGroupRecommendationsCommandInput - {@link ExportAutoScalingGroupRecommendationsCommandInput}
39
+ * @returns {@link ExportAutoScalingGroupRecommendationsCommandOutput}
33
40
  * @see {@link ExportAutoScalingGroupRecommendationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ExportAutoScalingGroupRecommendationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -64,11 +71,20 @@ export interface ExportAutoScalingGroupRecommendationsCommandOutput extends Expo
64
71
  export declare class ExportAutoScalingGroupRecommendationsCommand extends $Command<ExportAutoScalingGroupRecommendationsCommandInput, ExportAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
65
72
  readonly input: ExportAutoScalingGroupRecommendationsCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: ExportAutoScalingGroupRecommendationsCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportAutoScalingGroupRecommendationsCommandInput, ExportAutoScalingGroupRecommendationsCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { ExportEBSVolumeRecommendationsRequest, ExportEBSVolumeRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportEBSVolumeRecommendationsCommand}.
8
10
  */
9
11
  export interface ExportEBSVolumeRecommendationsCommandInput extends ExportEBSVolumeRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportEBSVolumeRecommendationsCommand}.
13
17
  */
14
18
  export interface ExportEBSVolumeRecommendationsCommandOutput extends ExportEBSVolumeRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exports optimization recommendations for Amazon EBS volumes.</p>
18
23
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
19
24
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -30,6 +35,8 @@ export interface ExportEBSVolumeRecommendationsCommandOutput extends ExportEBSVo
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ExportEBSVolumeRecommendationsCommandInput - {@link ExportEBSVolumeRecommendationsCommandInput}
39
+ * @returns {@link ExportEBSVolumeRecommendationsCommandOutput}
33
40
  * @see {@link ExportEBSVolumeRecommendationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ExportEBSVolumeRecommendationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -64,11 +71,20 @@ export interface ExportEBSVolumeRecommendationsCommandOutput extends ExportEBSVo
64
71
  export declare class ExportEBSVolumeRecommendationsCommand extends $Command<ExportEBSVolumeRecommendationsCommandInput, ExportEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
65
72
  readonly input: ExportEBSVolumeRecommendationsCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: ExportEBSVolumeRecommendationsCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportEBSVolumeRecommendationsCommandInput, ExportEBSVolumeRecommendationsCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { ExportEC2InstanceRecommendationsRequest, ExportEC2InstanceRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportEC2InstanceRecommendationsCommand}.
8
10
  */
9
11
  export interface ExportEC2InstanceRecommendationsCommandInput extends ExportEC2InstanceRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportEC2InstanceRecommendationsCommand}.
13
17
  */
14
18
  export interface ExportEC2InstanceRecommendationsCommandOutput extends ExportEC2InstanceRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exports optimization recommendations for Amazon EC2 instances.</p>
18
23
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
19
24
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -30,6 +35,8 @@ export interface ExportEC2InstanceRecommendationsCommandOutput extends ExportEC2
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ExportEC2InstanceRecommendationsCommandInput - {@link ExportEC2InstanceRecommendationsCommandInput}
39
+ * @returns {@link ExportEC2InstanceRecommendationsCommandOutput}
33
40
  * @see {@link ExportEC2InstanceRecommendationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ExportEC2InstanceRecommendationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -64,11 +71,20 @@ export interface ExportEC2InstanceRecommendationsCommandOutput extends ExportEC2
64
71
  export declare class ExportEC2InstanceRecommendationsCommand extends $Command<ExportEC2InstanceRecommendationsCommandInput, ExportEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
65
72
  readonly input: ExportEC2InstanceRecommendationsCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: ExportEC2InstanceRecommendationsCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportEC2InstanceRecommendationsCommandInput, ExportEC2InstanceRecommendationsCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { ExportECSServiceRecommendationsRequest, ExportECSServiceRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportECSServiceRecommendationsCommand}.
8
10
  */
9
11
  export interface ExportECSServiceRecommendationsCommandInput extends ExportECSServiceRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportECSServiceRecommendationsCommand}.
13
17
  */
14
18
  export interface ExportECSServiceRecommendationsCommandOutput extends ExportECSServiceRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Exports optimization recommendations for Amazon ECS services on Fargate.
19
24
  * </p>
@@ -32,6 +37,8 @@ export interface ExportECSServiceRecommendationsCommandOutput extends ExportECSS
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param ExportECSServiceRecommendationsCommandInput - {@link ExportECSServiceRecommendationsCommandInput}
41
+ * @returns {@link ExportECSServiceRecommendationsCommandOutput}
35
42
  * @see {@link ExportECSServiceRecommendationsCommandInput} for command's `input` shape.
36
43
  * @see {@link ExportECSServiceRecommendationsCommandOutput} for command's `response` shape.
37
44
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -66,11 +73,20 @@ export interface ExportECSServiceRecommendationsCommandOutput extends ExportECSS
66
73
  export declare class ExportECSServiceRecommendationsCommand extends $Command<ExportECSServiceRecommendationsCommandInput, ExportECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
67
74
  readonly input: ExportECSServiceRecommendationsCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: ExportECSServiceRecommendationsCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportECSServiceRecommendationsCommandInput, ExportECSServiceRecommendationsCommandOutput>;
84
+ /**
85
+ * @internal
86
+ */
74
87
  private serialize;
88
+ /**
89
+ * @internal
90
+ */
75
91
  private deserialize;
76
92
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { ExportLambdaFunctionRecommendationsRequest, ExportLambdaFunctionRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportLambdaFunctionRecommendationsCommand}.
8
10
  */
9
11
  export interface ExportLambdaFunctionRecommendationsCommandInput extends ExportLambdaFunctionRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportLambdaFunctionRecommendationsCommand}.
13
17
  */
14
18
  export interface ExportLambdaFunctionRecommendationsCommandOutput extends ExportLambdaFunctionRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exports optimization recommendations for Lambda functions.</p>
18
23
  * <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
19
24
  * in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
@@ -30,6 +35,8 @@ export interface ExportLambdaFunctionRecommendationsCommandOutput extends Export
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ExportLambdaFunctionRecommendationsCommandInput - {@link ExportLambdaFunctionRecommendationsCommandInput}
39
+ * @returns {@link ExportLambdaFunctionRecommendationsCommandOutput}
33
40
  * @see {@link ExportLambdaFunctionRecommendationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ExportLambdaFunctionRecommendationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -64,11 +71,20 @@ export interface ExportLambdaFunctionRecommendationsCommandOutput extends Export
64
71
  export declare class ExportLambdaFunctionRecommendationsCommand extends $Command<ExportLambdaFunctionRecommendationsCommandInput, ExportLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
65
72
  readonly input: ExportLambdaFunctionRecommendationsCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: ExportLambdaFunctionRecommendationsCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportLambdaFunctionRecommendationsCommandInput, ExportLambdaFunctionRecommendationsCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }