Returns a list of
Recommendation
objects that contain recommendations for a profiling group for a given time period. A list of
Anomaly
objects that contains details about anomalies detected in the profiling group for the same time period is also
returned.
example
Use a bare-bones client and the command you need to make an API call.
Returns a list of
Recommendation
objects that contain recommendations for a profiling group for a given time period. A list ofAnomaly
objects that contains details about anomalies detected in the profiling group for the same time period is also returned.Use a bare-bones client and the command you need to make an API call.
import { CodeGuruProfilerClient, GetRecommendationsCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import // const { CodeGuruProfilerClient, GetRecommendationsCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import const client = new CodeGuruProfilerClient(config); const command = new GetRecommendationsCommand(input); const response = await client.send(command);
GetRecommendationsCommandInput for command's
input
shape.GetRecommendationsCommandOutput for command's
response
shape.config for CodeGuruProfilerClient's
config
shape.