@aws-sdk/client-codeguruprofiler 3.312.0 → 3.316.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.
@@ -23,346 +23,171 @@ import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput } from "./comma
23
23
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
24
24
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
25
25
  import { UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput } from "./commands/UpdateProfilingGroupCommand";
26
- /**
27
- * @public
28
- * <p>
29
- * This section provides documentation for the Amazon CodeGuru Profiler API operations.
30
- * </p>
31
- * <p>
32
- * Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides
33
- * recommendations that can help you fine-tune your application performance. Using machine learning
34
- * algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can
35
- * improve efficiency and remove CPU bottlenecks.
36
- * </p>
37
- * <p>
38
- * Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is
39
- * running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization.
40
- * </p>
41
- * <note>
42
- * <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM)
43
- * languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications
44
- * written in Java, it can also generate visualizations and a subset of recommendations for
45
- * applications written in other JVM languages and Python.</p>
46
- * </note>
47
- * <p>
48
- * For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/what-is-codeguru-profiler.html">What is Amazon CodeGuru Profiler</a> in
49
- * the <i>Amazon CodeGuru Profiler User Guide</i>.
50
- * </p>
51
- */
52
- export declare class CodeGuruProfiler extends CodeGuruProfilerClient {
26
+ export interface CodeGuruProfiler {
53
27
  /**
54
- * @public
55
- * <p>Add up to 2 anomaly notifications channels for a profiling group.</p>
28
+ * @see {@link AddNotificationChannelsCommand}
56
29
  */
57
30
  addNotificationChannels(args: AddNotificationChannelsCommandInput, options?: __HttpHandlerOptions): Promise<AddNotificationChannelsCommandOutput>;
58
31
  addNotificationChannels(args: AddNotificationChannelsCommandInput, cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void): void;
59
32
  addNotificationChannels(args: AddNotificationChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void): void;
60
33
  /**
61
- * @public
62
- * <p>
63
- * Returns the time series of values for a requested list
64
- * of frame metrics from a time period.</p>
34
+ * @see {@link BatchGetFrameMetricDataCommand}
65
35
  */
66
36
  batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetFrameMetricDataCommandOutput>;
67
37
  batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void): void;
68
38
  batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void): void;
69
39
  /**
70
- * @public
71
- * <p>
72
- * Used by profiler agents to report their current state and to receive remote
73
- * configuration updates. For example, <code>ConfigureAgent</code> can be used
74
- * to tell an agent whether to profile or not and for how long to return profiling data.
75
- * </p>
40
+ * @see {@link ConfigureAgentCommand}
76
41
  */
77
42
  configureAgent(args: ConfigureAgentCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureAgentCommandOutput>;
78
43
  configureAgent(args: ConfigureAgentCommandInput, cb: (err: any, data?: ConfigureAgentCommandOutput) => void): void;
79
44
  configureAgent(args: ConfigureAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureAgentCommandOutput) => void): void;
80
45
  /**
81
- * @public
82
- * <p>Creates a profiling group.</p>
46
+ * @see {@link CreateProfilingGroupCommand}
83
47
  */
84
48
  createProfilingGroup(args: CreateProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfilingGroupCommandOutput>;
85
49
  createProfilingGroup(args: CreateProfilingGroupCommandInput, cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void): void;
86
50
  createProfilingGroup(args: CreateProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void): void;
87
51
  /**
88
- * @public
89
- * <p>Deletes a profiling group.</p>
52
+ * @see {@link DeleteProfilingGroupCommand}
90
53
  */
91
54
  deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfilingGroupCommandOutput>;
92
55
  deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void): void;
93
56
  deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void): void;
94
57
  /**
95
- * @public
96
- * <p>
97
- * Returns a <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ProfilingGroupDescription.html">
98
- * <code>ProfilingGroupDescription</code>
99
- * </a>
100
- * object that contains information about the requested profiling group.
101
- * </p>
58
+ * @see {@link DescribeProfilingGroupCommand}
102
59
  */
103
60
  describeProfilingGroup(args: DescribeProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProfilingGroupCommandOutput>;
104
61
  describeProfilingGroup(args: DescribeProfilingGroupCommandInput, cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void): void;
105
62
  describeProfilingGroup(args: DescribeProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void): void;
106
63
  /**
107
- * @public
108
- * <p>
109
- * Returns a list of
110
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_FindingsReportSummary.html">
111
- * <code>FindingsReportSummary</code>
112
- * </a>
113
- * objects that contain analysis results for all profiling groups in your AWS account.
114
- * </p>
64
+ * @see {@link GetFindingsReportAccountSummaryCommand}
115
65
  */
116
66
  getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetFindingsReportAccountSummaryCommandOutput>;
117
67
  getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void): void;
118
68
  getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void): void;
119
69
  /**
120
- * @public
121
- * <p>Get the current configuration for anomaly notifications for a profiling group.</p>
70
+ * @see {@link GetNotificationConfigurationCommand}
122
71
  */
123
72
  getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNotificationConfigurationCommandOutput>;
124
73
  getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void): void;
125
74
  getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void): void;
126
75
  /**
127
- * @public
128
- * <p>
129
- * Returns the JSON-formatted resource-based policy on a profiling group.
130
- * </p>
76
+ * @see {@link GetPolicyCommand}
131
77
  */
132
78
  getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
133
79
  getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
134
80
  getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
135
81
  /**
136
- * @public
137
- * <p>
138
- * Gets the aggregated profile of a profiling group for a specified time range.
139
- * Amazon CodeGuru Profiler collects posted agent profiles for a profiling group
140
- * into aggregated profiles.
141
- * </p>
142
- *
143
- * <note>
144
- * <p>
145
- * Because aggregated profiles expire over time <code>GetProfile</code> is not idempotent.
146
- * </p>
147
- * </note>
148
- *
149
- * <p>
150
- * Specify the time range for the requested aggregated profile using 1 or 2 of the following parameters: <code>startTime</code>,
151
- * <code>endTime</code>, <code>period</code>. The maximum time range allowed is 7 days. If you specify all 3 parameters,
152
- * an exception is thrown. If you specify only <code>period</code>, the latest aggregated profile is returned.
153
- * </p>
154
- *
155
- * <p>
156
- * Aggregated profiles are available with aggregation periods of 5 minutes, 1 hour, and 1 day, aligned to
157
- * UTC. The aggregation period of an aggregated profile determines how long it is retained. For more
158
- * information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_AggregatedProfileTime.html">
159
- * <code>AggregatedProfileTime</code>
160
- * </a>. The aggregated profile's aggregation period determines how long
161
- * it is retained by CodeGuru Profiler.
162
- * </p>
163
- *
164
- * <ul>
165
- * <li>
166
- * <p>
167
- * If the aggregation period is 5 minutes, the aggregated profile is retained for 15 days.
168
- * </p>
169
- * </li>
170
- * <li>
171
- * <p>
172
- * If the aggregation period is 1 hour, the aggregated profile is retained for 60 days.
173
- * </p>
174
- * </li>
175
- * <li>
176
- * <p>
177
- * If the aggregation period is 1 day, the aggregated profile is retained for 3 years.
178
- * </p>
179
- * </li>
180
- * </ul>
181
- *
182
- * <p>There are two use cases for calling <code>GetProfile</code>.</p>
183
- * <ol>
184
- * <li>
185
- * <p>
186
- * If you want to return an aggregated profile that already exists, use
187
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ListProfileTimes.html">
188
- * <code>ListProfileTimes</code>
189
- * </a> to
190
- * view the time ranges of existing aggregated profiles. Use them in a <code>GetProfile</code> request to return a specific,
191
- * existing aggregated profile.
192
- * </p>
193
- * </li>
194
- * <li>
195
- * <p>
196
- * If you want to return an aggregated profile for a time range that doesn't align with an existing aggregated profile,
197
- * then CodeGuru Profiler makes a best effort to combine existing aggregated profiles from the requested time
198
- * range and return them as one aggregated profile.
199
- * </p>
200
- *
201
- * <p> If aggregated profiles do not exist for the full time range requested, then
202
- * aggregated profiles for a smaller time range are returned. For example, if the
203
- * requested time range is from 00:00 to 00:20, and the existing aggregated profiles are
204
- * from 00:15 and 00:25, then the aggregated profiles from 00:15 to 00:20 are returned. </p>
205
- *
206
- *
207
- * </li>
208
- * </ol>
82
+ * @see {@link GetProfileCommand}
209
83
  */
210
84
  getProfile(args: GetProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileCommandOutput>;
211
85
  getProfile(args: GetProfileCommandInput, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
212
86
  getProfile(args: GetProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
213
87
  /**
214
- * @public
215
- * <p>
216
- * Returns a list of
217
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_Recommendation.html">
218
- * <code>Recommendation</code>
219
- * </a>
220
- * objects that contain recommendations for a profiling group for a given time period. A list of
221
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_Anomaly.html">
222
- * <code>Anomaly</code>
223
- * </a>
224
- * objects that contains details about anomalies detected in the profiling group for the same time period is also
225
- * returned.
226
- * </p>
88
+ * @see {@link GetRecommendationsCommand}
227
89
  */
228
90
  getRecommendations(args: GetRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetRecommendationsCommandOutput>;
229
91
  getRecommendations(args: GetRecommendationsCommandInput, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void;
230
92
  getRecommendations(args: GetRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void;
231
93
  /**
232
- * @public
233
- * <p>List the available reports for a given profiling group and time range.</p>
94
+ * @see {@link ListFindingsReportsCommand}
234
95
  */
235
96
  listFindingsReports(args: ListFindingsReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListFindingsReportsCommandOutput>;
236
97
  listFindingsReports(args: ListFindingsReportsCommandInput, cb: (err: any, data?: ListFindingsReportsCommandOutput) => void): void;
237
98
  listFindingsReports(args: ListFindingsReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFindingsReportsCommandOutput) => void): void;
238
99
  /**
239
- * @public
240
- * <p>Lists the start times of the available aggregated profiles of a profiling group
241
- * for an aggregation period within the specified time range.</p>
100
+ * @see {@link ListProfileTimesCommand}
242
101
  */
243
102
  listProfileTimes(args: ListProfileTimesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileTimesCommandOutput>;
244
103
  listProfileTimes(args: ListProfileTimesCommandInput, cb: (err: any, data?: ListProfileTimesCommandOutput) => void): void;
245
104
  listProfileTimes(args: ListProfileTimesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileTimesCommandOutput) => void): void;
246
105
  /**
247
- * @public
248
- * <p>
249
- * Returns a list of profiling groups. The profiling groups are returned as
250
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ProfilingGroupDescription.html">
251
- * <code>ProfilingGroupDescription</code>
252
- * </a>
253
- * objects.
254
- * </p>
106
+ * @see {@link ListProfilingGroupsCommand}
255
107
  */
256
108
  listProfilingGroups(args: ListProfilingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilingGroupsCommandOutput>;
257
109
  listProfilingGroups(args: ListProfilingGroupsCommandInput, cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void): void;
258
110
  listProfilingGroups(args: ListProfilingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void): void;
259
111
  /**
260
- * @public
261
- * <p>
262
- * Returns a list of the tags that are assigned to a specified resource.
263
- * </p>
112
+ * @see {@link ListTagsForResourceCommand}
264
113
  */
265
114
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
266
115
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
267
116
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
268
117
  /**
269
- * @public
270
- * <p>
271
- * Submits profiling data to an aggregated profile of a profiling group. To get an
272
- * aggregated profile that is created with this profiling data, use
273
- * <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_GetProfile.html">
274
- * <code>GetProfile</code>
275
- * </a>.
276
- * </p>
118
+ * @see {@link PostAgentProfileCommand}
277
119
  */
278
120
  postAgentProfile(args: PostAgentProfileCommandInput, options?: __HttpHandlerOptions): Promise<PostAgentProfileCommandOutput>;
279
121
  postAgentProfile(args: PostAgentProfileCommandInput, cb: (err: any, data?: PostAgentProfileCommandOutput) => void): void;
280
122
  postAgentProfile(args: PostAgentProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PostAgentProfileCommandOutput) => void): void;
281
123
  /**
282
- * @public
283
- * <p>
284
- * Adds permissions to a profiling group's resource-based policy
285
- * that are provided using an action group. If a profiling group doesn't have
286
- * a resource-based policy, one is created for it using the permissions in the action group and
287
- * the roles and users in the <code>principals</code> parameter.
288
- * </p>
289
- *
290
- * <p> The one supported action group that can be added is <code>agentPermission</code>
291
- * which grants <code>ConfigureAgent</code> and <code>PostAgent</code> permissions. For
292
- * more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/resource-based-policies.html">Resource-based
293
- * policies in CodeGuru Profiler</a> in the <i>Amazon CodeGuru Profiler User
294
- * Guide</i>, <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ConfigureAgent.html">
295
- * <code>ConfigureAgent</code>
296
- * </a>, and <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_PostAgentProfile.html">
297
- * <code>PostAgentProfile</code>
298
- * </a>. </p>
299
- *
300
- * <p>
301
- * The first time you call <code>PutPermission</code> on a profiling group, do not specify a <code>revisionId</code> because
302
- * it doesn't have a resource-based policy. Subsequent calls must provide a <code>revisionId</code> to specify
303
- * which revision of the resource-based policy to add the permissions to.
304
- * </p>
305
- *
306
- * <p>
307
- * The response contains the profiling group's JSON-formatted resource policy.
308
- * </p>
124
+ * @see {@link PutPermissionCommand}
309
125
  */
310
126
  putPermission(args: PutPermissionCommandInput, options?: __HttpHandlerOptions): Promise<PutPermissionCommandOutput>;
311
127
  putPermission(args: PutPermissionCommandInput, cb: (err: any, data?: PutPermissionCommandOutput) => void): void;
312
128
  putPermission(args: PutPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPermissionCommandOutput) => void): void;
313
129
  /**
314
- * @public
315
- * <p>Remove one anomaly notifications channel for a profiling group.</p>
130
+ * @see {@link RemoveNotificationChannelCommand}
316
131
  */
317
132
  removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<RemoveNotificationChannelCommandOutput>;
318
133
  removeNotificationChannel(args: RemoveNotificationChannelCommandInput, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
319
134
  removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
320
135
  /**
321
- * @public
322
- * <p> Removes permissions from a profiling group's resource-based policy that are provided
323
- * using an action group. The one supported action group that can be removed is
324
- * <code>agentPermission</code> which grants <code>ConfigureAgent</code> and
325
- * <code>PostAgent</code> permissions. For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/resource-based-policies.html">Resource-based policies in CodeGuru Profiler</a> in the <i>Amazon
326
- * CodeGuru Profiler User Guide</i>, <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ConfigureAgent.html">
327
- * <code>ConfigureAgent</code>
328
- * </a>, and <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_PostAgentProfile.html">
329
- * <code>PostAgentProfile</code>
330
- * </a>. </p>
136
+ * @see {@link RemovePermissionCommand}
331
137
  */
332
138
  removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
333
139
  removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
334
140
  removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
335
141
  /**
336
- * @public
337
- * <p>Sends feedback to CodeGuru Profiler about whether the anomaly detected by the analysis is
338
- * useful or not.</p>
142
+ * @see {@link SubmitFeedbackCommand}
339
143
  */
340
144
  submitFeedback(args: SubmitFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<SubmitFeedbackCommandOutput>;
341
145
  submitFeedback(args: SubmitFeedbackCommandInput, cb: (err: any, data?: SubmitFeedbackCommandOutput) => void): void;
342
146
  submitFeedback(args: SubmitFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubmitFeedbackCommandOutput) => void): void;
343
147
  /**
344
- * @public
345
- * <p>
346
- * Use to assign one or more tags to a resource.
347
- * </p>
148
+ * @see {@link TagResourceCommand}
348
149
  */
349
150
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
350
151
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
351
152
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
352
153
  /**
353
- * @public
354
- * <p>
355
- * Use to remove one or more tags from a resource.
356
- * </p>
154
+ * @see {@link UntagResourceCommand}
357
155
  */
358
156
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
359
157
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
360
158
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
361
159
  /**
362
- * @public
363
- * <p>Updates a profiling group.</p>
160
+ * @see {@link UpdateProfilingGroupCommand}
364
161
  */
365
162
  updateProfilingGroup(args: UpdateProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfilingGroupCommandOutput>;
366
163
  updateProfilingGroup(args: UpdateProfilingGroupCommandInput, cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void): void;
367
164
  updateProfilingGroup(args: UpdateProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void): void;
368
165
  }
166
+ /**
167
+ * @public
168
+ * <p>
169
+ * This section provides documentation for the Amazon CodeGuru Profiler API operations.
170
+ * </p>
171
+ * <p>
172
+ * Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides
173
+ * recommendations that can help you fine-tune your application performance. Using machine learning
174
+ * algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can
175
+ * improve efficiency and remove CPU bottlenecks.
176
+ * </p>
177
+ * <p>
178
+ * Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is
179
+ * running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization.
180
+ * </p>
181
+ * <note>
182
+ * <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM)
183
+ * languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications
184
+ * written in Java, it can also generate visualizations and a subset of recommendations for
185
+ * applications written in other JVM languages and Python.</p>
186
+ * </note>
187
+ * <p>
188
+ * For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/what-is-codeguru-profiler.html">What is Amazon CodeGuru Profiler</a> in
189
+ * the <i>Amazon CodeGuru Profiler User Guide</i>.
190
+ * </p>
191
+ */
192
+ export declare class CodeGuruProfiler extends CodeGuruProfilerClient implements CodeGuruProfiler {
193
+ }
@@ -92,7 +92,7 @@ import {
92
92
  UpdateProfilingGroupCommandInput,
93
93
  UpdateProfilingGroupCommandOutput,
94
94
  } from "./commands/UpdateProfilingGroupCommand";
95
- export declare class CodeGuruProfiler extends CodeGuruProfilerClient {
95
+ export interface CodeGuruProfiler {
96
96
  addNotificationChannels(
97
97
  args: AddNotificationChannelsCommandInput,
98
98
  options?: __HttpHandlerOptions
@@ -393,3 +393,6 @@ export declare class CodeGuruProfiler extends CodeGuruProfilerClient {
393
393
  cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void
394
394
  ): void;
395
395
  }
396
+ export declare class CodeGuruProfiler
397
+ extends CodeGuruProfilerClient
398
+ implements CodeGuruProfiler {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codeguruprofiler",
3
3
  "description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.316.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.316.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.316.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.316.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",