@aws-sdk/client-compute-optimizer 3.296.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 +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetAutoScalingGroupRecommendationsRequest, GetAutoScalingGroupRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAutoScalingGroupRecommendationsCommand}.
8
10
  */
9
11
  export interface GetAutoScalingGroupRecommendationsCommandInput extends GetAutoScalingGroupRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAutoScalingGroupRecommendationsCommand}.
13
17
  */
14
18
  export interface GetAutoScalingGroupRecommendationsCommandOutput extends GetAutoScalingGroupRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns Auto Scaling group recommendations.</p>
18
23
  * <p>Compute Optimizer generates recommendations for Amazon EC2 Auto Scaling groups that
19
24
  * 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
@@ -29,6 +34,8 @@ export interface GetAutoScalingGroupRecommendationsCommandOutput extends GetAuto
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetAutoScalingGroupRecommendationsCommandInput - {@link GetAutoScalingGroupRecommendationsCommandInput}
38
+ * @returns {@link GetAutoScalingGroupRecommendationsCommandOutput}
32
39
  * @see {@link GetAutoScalingGroupRecommendationsCommandInput} for command's `input` shape.
33
40
  * @see {@link GetAutoScalingGroupRecommendationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -63,11 +70,20 @@ export interface GetAutoScalingGroupRecommendationsCommandOutput extends GetAuto
63
70
  export declare class GetAutoScalingGroupRecommendationsCommand extends $Command<GetAutoScalingGroupRecommendationsCommandInput, GetAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
64
71
  readonly input: GetAutoScalingGroupRecommendationsCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: GetAutoScalingGroupRecommendationsCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAutoScalingGroupRecommendationsCommandInput, GetAutoScalingGroupRecommendationsCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetEBSVolumeRecommendationsRequest, GetEBSVolumeRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEBSVolumeRecommendationsCommand}.
8
10
  */
9
11
  export interface GetEBSVolumeRecommendationsCommandInput extends GetEBSVolumeRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEBSVolumeRecommendationsCommand}.
13
17
  */
14
18
  export interface GetEBSVolumeRecommendationsCommandOutput extends GetEBSVolumeRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.</p>
18
23
  * <p>Compute Optimizer generates recommendations for Amazon EBS volumes that
19
24
  * 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
@@ -29,6 +34,8 @@ export interface GetEBSVolumeRecommendationsCommandOutput extends GetEBSVolumeRe
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetEBSVolumeRecommendationsCommandInput - {@link GetEBSVolumeRecommendationsCommandInput}
38
+ * @returns {@link GetEBSVolumeRecommendationsCommandOutput}
32
39
  * @see {@link GetEBSVolumeRecommendationsCommandInput} for command's `input` shape.
33
40
  * @see {@link GetEBSVolumeRecommendationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -63,11 +70,20 @@ export interface GetEBSVolumeRecommendationsCommandOutput extends GetEBSVolumeRe
63
70
  export declare class GetEBSVolumeRecommendationsCommand extends $Command<GetEBSVolumeRecommendationsCommandInput, GetEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
64
71
  readonly input: GetEBSVolumeRecommendationsCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: GetEBSVolumeRecommendationsCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEBSVolumeRecommendationsCommandInput, GetEBSVolumeRecommendationsCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetEC2InstanceRecommendationsRequest, GetEC2InstanceRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEC2InstanceRecommendationsCommand}.
8
10
  */
9
11
  export interface GetEC2InstanceRecommendationsCommandInput extends GetEC2InstanceRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEC2InstanceRecommendationsCommand}.
13
17
  */
14
18
  export interface GetEC2InstanceRecommendationsCommandOutput extends GetEC2InstanceRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns Amazon EC2 instance recommendations.</p>
18
23
  * <p>Compute Optimizer generates recommendations for Amazon Elastic Compute Cloud (Amazon EC2) instances that meet a specific set of requirements. For more
19
24
  * information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
@@ -29,6 +34,8 @@ export interface GetEC2InstanceRecommendationsCommandOutput extends GetEC2Instan
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetEC2InstanceRecommendationsCommandInput - {@link GetEC2InstanceRecommendationsCommandInput}
38
+ * @returns {@link GetEC2InstanceRecommendationsCommandOutput}
32
39
  * @see {@link GetEC2InstanceRecommendationsCommandInput} for command's `input` shape.
33
40
  * @see {@link GetEC2InstanceRecommendationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -63,11 +70,20 @@ export interface GetEC2InstanceRecommendationsCommandOutput extends GetEC2Instan
63
70
  export declare class GetEC2InstanceRecommendationsCommand extends $Command<GetEC2InstanceRecommendationsCommandInput, GetEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
64
71
  readonly input: GetEC2InstanceRecommendationsCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: GetEC2InstanceRecommendationsCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEC2InstanceRecommendationsCommandInput, GetEC2InstanceRecommendationsCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetEC2RecommendationProjectedMetricsRequest, GetEC2RecommendationProjectedMetricsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEC2RecommendationProjectedMetricsCommand}.
8
10
  */
9
11
  export interface GetEC2RecommendationProjectedMetricsCommandInput extends GetEC2RecommendationProjectedMetricsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEC2RecommendationProjectedMetricsCommand}.
13
17
  */
14
18
  export interface GetEC2RecommendationProjectedMetricsCommandOutput extends GetEC2RecommendationProjectedMetricsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the projected utilization metrics of Amazon EC2 instance
18
23
  * recommendations.</p>
19
24
  * <note>
@@ -32,6 +37,8 @@ export interface GetEC2RecommendationProjectedMetricsCommandOutput extends GetEC
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param GetEC2RecommendationProjectedMetricsCommandInput - {@link GetEC2RecommendationProjectedMetricsCommandInput}
41
+ * @returns {@link GetEC2RecommendationProjectedMetricsCommandOutput}
35
42
  * @see {@link GetEC2RecommendationProjectedMetricsCommandInput} for command's `input` shape.
36
43
  * @see {@link GetEC2RecommendationProjectedMetricsCommandOutput} for command's `response` shape.
37
44
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -66,11 +73,20 @@ export interface GetEC2RecommendationProjectedMetricsCommandOutput extends GetEC
66
73
  export declare class GetEC2RecommendationProjectedMetricsCommand extends $Command<GetEC2RecommendationProjectedMetricsCommandInput, GetEC2RecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig> {
67
74
  readonly input: GetEC2RecommendationProjectedMetricsCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: GetEC2RecommendationProjectedMetricsCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEC2RecommendationProjectedMetricsCommandInput, GetEC2RecommendationProjectedMetricsCommandOutput>;
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 { GetECSServiceRecommendationProjectedMetricsRequest, GetECSServiceRecommendationProjectedMetricsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetECSServiceRecommendationProjectedMetricsCommand}.
8
10
  */
9
11
  export interface GetECSServiceRecommendationProjectedMetricsCommandInput extends GetECSServiceRecommendationProjectedMetricsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetECSServiceRecommendationProjectedMetricsCommand}.
13
17
  */
14
18
  export interface GetECSServiceRecommendationProjectedMetricsCommandOutput extends GetECSServiceRecommendationProjectedMetricsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns the projected metrics of Amazon ECS service recommendations.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface GetECSServiceRecommendationProjectedMetricsCommandOutput extend
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetECSServiceRecommendationProjectedMetricsCommandInput - {@link GetECSServiceRecommendationProjectedMetricsCommandInput}
36
+ * @returns {@link GetECSServiceRecommendationProjectedMetricsCommandOutput}
30
37
  * @see {@link GetECSServiceRecommendationProjectedMetricsCommandInput} for command's `input` shape.
31
38
  * @see {@link GetECSServiceRecommendationProjectedMetricsCommandOutput} for command's `response` shape.
32
39
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -61,11 +68,20 @@ export interface GetECSServiceRecommendationProjectedMetricsCommandOutput extend
61
68
  export declare class GetECSServiceRecommendationProjectedMetricsCommand extends $Command<GetECSServiceRecommendationProjectedMetricsCommandInput, GetECSServiceRecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig> {
62
69
  readonly input: GetECSServiceRecommendationProjectedMetricsCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: GetECSServiceRecommendationProjectedMetricsCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetECSServiceRecommendationProjectedMetricsCommandInput, GetECSServiceRecommendationProjectedMetricsCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetECSServiceRecommendationsRequest, GetECSServiceRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetECSServiceRecommendationsCommand}.
8
10
  */
9
11
  export interface GetECSServiceRecommendationsCommandInput extends GetECSServiceRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetECSServiceRecommendationsCommand}.
13
17
  */
14
18
  export interface GetECSServiceRecommendationsCommandOutput extends GetECSServiceRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns Amazon ECS service recommendations.
19
24
  * </p>
@@ -34,6 +39,8 @@ export interface GetECSServiceRecommendationsCommandOutput extends GetECSService
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param GetECSServiceRecommendationsCommandInput - {@link GetECSServiceRecommendationsCommandInput}
43
+ * @returns {@link GetECSServiceRecommendationsCommandOutput}
37
44
  * @see {@link GetECSServiceRecommendationsCommandInput} for command's `input` shape.
38
45
  * @see {@link GetECSServiceRecommendationsCommandOutput} for command's `response` shape.
39
46
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -68,11 +75,20 @@ export interface GetECSServiceRecommendationsCommandOutput extends GetECSService
68
75
  export declare class GetECSServiceRecommendationsCommand extends $Command<GetECSServiceRecommendationsCommandInput, GetECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
69
76
  readonly input: GetECSServiceRecommendationsCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetECSServiceRecommendationsCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetECSServiceRecommendationsCommandInput, GetECSServiceRecommendationsCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetEffectiveRecommendationPreferencesRequest, GetEffectiveRecommendationPreferencesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEffectiveRecommendationPreferencesCommand}.
8
10
  */
9
11
  export interface GetEffectiveRecommendationPreferencesCommandInput extends GetEffectiveRecommendationPreferencesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEffectiveRecommendationPreferencesCommand}.
13
17
  */
14
18
  export interface GetEffectiveRecommendationPreferencesCommandOutput extends GetEffectiveRecommendationPreferencesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the recommendation preferences that are in effect for a given resource, such
18
23
  * as enhanced infrastructure metrics. Considers all applicable preferences that you might
19
24
  * have set at the resource, account, and organization level.</p>
@@ -30,6 +35,8 @@ export interface GetEffectiveRecommendationPreferencesCommandOutput extends GetE
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param GetEffectiveRecommendationPreferencesCommandInput - {@link GetEffectiveRecommendationPreferencesCommandInput}
39
+ * @returns {@link GetEffectiveRecommendationPreferencesCommandOutput}
33
40
  * @see {@link GetEffectiveRecommendationPreferencesCommandInput} for command's `input` shape.
34
41
  * @see {@link GetEffectiveRecommendationPreferencesCommandOutput} for command's `response` shape.
35
42
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -64,11 +71,20 @@ export interface GetEffectiveRecommendationPreferencesCommandOutput extends GetE
64
71
  export declare class GetEffectiveRecommendationPreferencesCommand extends $Command<GetEffectiveRecommendationPreferencesCommandInput, GetEffectiveRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig> {
65
72
  readonly input: GetEffectiveRecommendationPreferencesCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: GetEffectiveRecommendationPreferencesCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEffectiveRecommendationPreferencesCommandInput, GetEffectiveRecommendationPreferencesCommandOutput>;
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 { GetEnrollmentStatusRequest, GetEnrollmentStatusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEnrollmentStatusCommand}.
8
10
  */
9
11
  export interface GetEnrollmentStatusCommandInput extends GetEnrollmentStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEnrollmentStatusCommand}.
13
17
  */
14
18
  export interface GetEnrollmentStatusCommandOutput extends GetEnrollmentStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the enrollment (opt in) status of an account to the Compute Optimizer
18
23
  * service.</p>
19
24
  * <p>If the account is the management account of an organization, this action also confirms
@@ -29,6 +34,8 @@ export interface GetEnrollmentStatusCommandOutput extends GetEnrollmentStatusRes
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetEnrollmentStatusCommandInput - {@link GetEnrollmentStatusCommandInput}
38
+ * @returns {@link GetEnrollmentStatusCommandOutput}
32
39
  * @see {@link GetEnrollmentStatusCommandInput} for command's `input` shape.
33
40
  * @see {@link GetEnrollmentStatusCommandOutput} for command's `response` shape.
34
41
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -57,11 +64,20 @@ export interface GetEnrollmentStatusCommandOutput extends GetEnrollmentStatusRes
57
64
  export declare class GetEnrollmentStatusCommand extends $Command<GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput, ComputeOptimizerClientResolvedConfig> {
58
65
  readonly input: GetEnrollmentStatusCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: GetEnrollmentStatusCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetEnrollmentStatusesForOrganizationRequest, GetEnrollmentStatusesForOrganizationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEnrollmentStatusesForOrganizationCommand}.
8
10
  */
9
11
  export interface GetEnrollmentStatusesForOrganizationCommandInput extends GetEnrollmentStatusesForOrganizationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEnrollmentStatusesForOrganizationCommand}.
13
17
  */
14
18
  export interface GetEnrollmentStatusesForOrganizationCommandOutput extends GetEnrollmentStatusesForOrganizationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the Compute Optimizer enrollment (opt-in) status of organization member
18
23
  * accounts, if your account is an organization management account.</p>
19
24
  * <p>To get the enrollment status of standalone accounts, use the <a>GetEnrollmentStatus</a> action.</p>
@@ -27,6 +32,8 @@ export interface GetEnrollmentStatusesForOrganizationCommandOutput extends GetEn
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetEnrollmentStatusesForOrganizationCommandInput - {@link GetEnrollmentStatusesForOrganizationCommandInput}
36
+ * @returns {@link GetEnrollmentStatusesForOrganizationCommandOutput}
30
37
  * @see {@link GetEnrollmentStatusesForOrganizationCommandInput} for command's `input` shape.
31
38
  * @see {@link GetEnrollmentStatusesForOrganizationCommandOutput} for command's `response` shape.
32
39
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -55,11 +62,20 @@ export interface GetEnrollmentStatusesForOrganizationCommandOutput extends GetEn
55
62
  export declare class GetEnrollmentStatusesForOrganizationCommand extends $Command<GetEnrollmentStatusesForOrganizationCommandInput, GetEnrollmentStatusesForOrganizationCommandOutput, ComputeOptimizerClientResolvedConfig> {
56
63
  readonly input: GetEnrollmentStatusesForOrganizationCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: GetEnrollmentStatusesForOrganizationCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnrollmentStatusesForOrganizationCommandInput, GetEnrollmentStatusesForOrganizationCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetLambdaFunctionRecommendationsRequest, GetLambdaFunctionRecommendationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLambdaFunctionRecommendationsCommand}.
8
10
  */
9
11
  export interface GetLambdaFunctionRecommendationsCommandInput extends GetLambdaFunctionRecommendationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLambdaFunctionRecommendationsCommand}.
13
17
  */
14
18
  export interface GetLambdaFunctionRecommendationsCommandOutput extends GetLambdaFunctionRecommendationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns Lambda function recommendations.</p>
18
23
  * <p>Compute Optimizer generates recommendations for functions that meet a specific set
19
24
  * of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
@@ -29,6 +34,8 @@ export interface GetLambdaFunctionRecommendationsCommandOutput extends GetLambda
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetLambdaFunctionRecommendationsCommandInput - {@link GetLambdaFunctionRecommendationsCommandInput}
38
+ * @returns {@link GetLambdaFunctionRecommendationsCommandOutput}
32
39
  * @see {@link GetLambdaFunctionRecommendationsCommandInput} for command's `input` shape.
33
40
  * @see {@link GetLambdaFunctionRecommendationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -63,11 +70,20 @@ export interface GetLambdaFunctionRecommendationsCommandOutput extends GetLambda
63
70
  export declare class GetLambdaFunctionRecommendationsCommand extends $Command<GetLambdaFunctionRecommendationsCommandInput, GetLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig> {
64
71
  readonly input: GetLambdaFunctionRecommendationsCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: GetLambdaFunctionRecommendationsCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLambdaFunctionRecommendationsCommandInput, GetLambdaFunctionRecommendationsCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient";
5
5
  import { GetRecommendationPreferencesRequest, GetRecommendationPreferencesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRecommendationPreferencesCommand}.
8
10
  */
9
11
  export interface GetRecommendationPreferencesCommandInput extends GetRecommendationPreferencesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRecommendationPreferencesCommand}.
13
17
  */
14
18
  export interface GetRecommendationPreferencesCommandOutput extends GetRecommendationPreferencesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns existing recommendation preferences, such as enhanced infrastructure
18
23
  * metrics.</p>
19
24
  * <p>Use the <code>scope</code> parameter to specify which preferences to return. You can
@@ -32,6 +37,8 @@ export interface GetRecommendationPreferencesCommandOutput extends GetRecommenda
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param GetRecommendationPreferencesCommandInput - {@link GetRecommendationPreferencesCommandInput}
41
+ * @returns {@link GetRecommendationPreferencesCommandOutput}
35
42
  * @see {@link GetRecommendationPreferencesCommandInput} for command's `input` shape.
36
43
  * @see {@link GetRecommendationPreferencesCommandOutput} for command's `response` shape.
37
44
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -66,11 +73,20 @@ export interface GetRecommendationPreferencesCommandOutput extends GetRecommenda
66
73
  export declare class GetRecommendationPreferencesCommand extends $Command<GetRecommendationPreferencesCommandInput, GetRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig> {
67
74
  readonly input: GetRecommendationPreferencesCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: GetRecommendationPreferencesCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationPreferencesCommandInput, GetRecommendationPreferencesCommandOutput>;
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 { GetRecommendationSummariesRequest, GetRecommendationSummariesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRecommendationSummariesCommand}.
8
10
  */
9
11
  export interface GetRecommendationSummariesCommandInput extends GetRecommendationSummariesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRecommendationSummariesCommand}.
13
17
  */
14
18
  export interface GetRecommendationSummariesCommandOutput extends GetRecommendationSummariesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the optimization findings for an account.</p>
18
23
  * <p>It returns the number of:</p>
19
24
  * <ul>
@@ -49,6 +54,8 @@ export interface GetRecommendationSummariesCommandOutput extends GetRecommendati
49
54
  * const response = await client.send(command);
50
55
  * ```
51
56
  *
57
+ * @param GetRecommendationSummariesCommandInput - {@link GetRecommendationSummariesCommandInput}
58
+ * @returns {@link GetRecommendationSummariesCommandOutput}
52
59
  * @see {@link GetRecommendationSummariesCommandInput} for command's `input` shape.
53
60
  * @see {@link GetRecommendationSummariesCommandOutput} for command's `response` shape.
54
61
  * @see {@link ComputeOptimizerClientResolvedConfig | config} for ComputeOptimizerClient's `config` shape.
@@ -80,11 +87,20 @@ export interface GetRecommendationSummariesCommandOutput extends GetRecommendati
80
87
  export declare class GetRecommendationSummariesCommand extends $Command<GetRecommendationSummariesCommandInput, GetRecommendationSummariesCommandOutput, ComputeOptimizerClientResolvedConfig> {
81
88
  readonly input: GetRecommendationSummariesCommandInput;
82
89
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
+ /**
91
+ * @public
92
+ */
83
93
  constructor(input: GetRecommendationSummariesCommandInput);
84
94
  /**
85
95
  * @internal
86
96
  */
87
97
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComputeOptimizerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationSummariesCommandInput, GetRecommendationSummariesCommandOutput>;
98
+ /**
99
+ * @internal
100
+ */
88
101
  private serialize;
102
+ /**
103
+ * @internal
104
+ */
89
105
  private deserialize;
90
106
  }