@aws-sdk/client-codeguruprofiler 3.170.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CodeGuruProfiler.d.ts +0 -23
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -263
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -6,227 +6,156 @@ export declare enum ActionGroup {
|
|
|
6
6
|
export declare enum EventPublisher {
|
|
7
7
|
ANOMALY_DETECTION = "AnomalyDetection",
|
|
8
8
|
}
|
|
9
|
-
|
|
10
9
|
export interface Channel {
|
|
11
10
|
id?: string;
|
|
12
|
-
|
|
13
11
|
uri: string | undefined;
|
|
14
|
-
|
|
15
12
|
eventPublishers: (EventPublisher | string)[] | undefined;
|
|
16
13
|
}
|
|
17
|
-
|
|
18
14
|
export interface AddNotificationChannelsRequest {
|
|
19
15
|
profilingGroupName: string | undefined;
|
|
20
|
-
|
|
21
16
|
channels: Channel[] | undefined;
|
|
22
17
|
}
|
|
23
|
-
|
|
24
18
|
export interface NotificationConfiguration {
|
|
25
19
|
channels?: Channel[];
|
|
26
20
|
}
|
|
27
|
-
|
|
28
21
|
export interface AddNotificationChannelsResponse {
|
|
29
22
|
notificationConfiguration?: NotificationConfiguration;
|
|
30
23
|
}
|
|
31
|
-
|
|
32
24
|
export declare class ConflictException extends __BaseException {
|
|
33
25
|
readonly name: "ConflictException";
|
|
34
26
|
readonly $fault: "client";
|
|
35
|
-
|
|
36
27
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
37
28
|
}
|
|
38
|
-
|
|
39
29
|
export declare class InternalServerException extends __BaseException {
|
|
40
30
|
readonly name: "InternalServerException";
|
|
41
31
|
readonly $fault: "server";
|
|
42
32
|
$retryable: {};
|
|
43
|
-
|
|
44
33
|
constructor(
|
|
45
34
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
46
35
|
);
|
|
47
36
|
}
|
|
48
|
-
|
|
49
37
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
50
38
|
readonly name: "ResourceNotFoundException";
|
|
51
39
|
readonly $fault: "client";
|
|
52
|
-
|
|
53
40
|
constructor(
|
|
54
41
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
55
42
|
);
|
|
56
43
|
}
|
|
57
|
-
|
|
58
44
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
59
45
|
readonly name: "ServiceQuotaExceededException";
|
|
60
46
|
readonly $fault: "client";
|
|
61
47
|
$retryable: {};
|
|
62
|
-
|
|
63
48
|
constructor(
|
|
64
49
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
50
|
);
|
|
66
51
|
}
|
|
67
|
-
|
|
68
52
|
export declare class ThrottlingException extends __BaseException {
|
|
69
53
|
readonly name: "ThrottlingException";
|
|
70
54
|
readonly $fault: "client";
|
|
71
55
|
$retryable: {};
|
|
72
|
-
|
|
73
56
|
constructor(
|
|
74
57
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
75
58
|
);
|
|
76
59
|
}
|
|
77
|
-
|
|
78
60
|
export declare class ValidationException extends __BaseException {
|
|
79
61
|
readonly name: "ValidationException";
|
|
80
62
|
readonly $fault: "client";
|
|
81
|
-
|
|
82
63
|
constructor(
|
|
83
64
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
84
65
|
);
|
|
85
66
|
}
|
|
86
67
|
export declare enum AgentParameterField {
|
|
87
68
|
MAX_STACK_DEPTH = "MaxStackDepth",
|
|
88
|
-
|
|
89
69
|
MEMORY_USAGE_LIMIT_PERCENT = "MemoryUsageLimitPercent",
|
|
90
|
-
|
|
91
70
|
MINIMUM_TIME_FOR_REPORTING_IN_MILLISECONDS = "MinimumTimeForReportingInMilliseconds",
|
|
92
|
-
|
|
93
71
|
REPORTING_INTERVAL_IN_MILLISECONDS = "ReportingIntervalInMilliseconds",
|
|
94
|
-
|
|
95
72
|
SAMPLING_INTERVAL_IN_MILLISECONDS = "SamplingIntervalInMilliseconds",
|
|
96
73
|
}
|
|
97
|
-
|
|
98
74
|
export interface AgentConfiguration {
|
|
99
75
|
shouldProfile: boolean | undefined;
|
|
100
|
-
|
|
101
76
|
periodInSeconds: number | undefined;
|
|
102
|
-
|
|
103
77
|
agentParameters?: Record<string, string>;
|
|
104
78
|
}
|
|
105
|
-
|
|
106
79
|
export interface AgentOrchestrationConfig {
|
|
107
80
|
profilingEnabled: boolean | undefined;
|
|
108
81
|
}
|
|
109
82
|
export declare enum AggregationPeriod {
|
|
110
83
|
P1D = "P1D",
|
|
111
|
-
|
|
112
84
|
PT1H = "PT1H",
|
|
113
|
-
|
|
114
85
|
PT5M = "PT5M",
|
|
115
86
|
}
|
|
116
|
-
|
|
117
87
|
export interface AggregatedProfileTime {
|
|
118
88
|
start?: Date;
|
|
119
|
-
|
|
120
89
|
period?: AggregationPeriod | string;
|
|
121
90
|
}
|
|
122
91
|
export declare enum FeedbackType {
|
|
123
92
|
Negative = "Negative",
|
|
124
|
-
|
|
125
93
|
Positive = "Positive",
|
|
126
94
|
}
|
|
127
|
-
|
|
128
95
|
export interface UserFeedback {
|
|
129
96
|
type: FeedbackType | string | undefined;
|
|
130
97
|
}
|
|
131
|
-
|
|
132
98
|
export interface AnomalyInstance {
|
|
133
99
|
id: string | undefined;
|
|
134
|
-
|
|
135
100
|
startTime: Date | undefined;
|
|
136
|
-
|
|
137
101
|
endTime?: Date;
|
|
138
|
-
|
|
139
102
|
userFeedback?: UserFeedback;
|
|
140
103
|
}
|
|
141
104
|
export declare enum MetricType {
|
|
142
105
|
AggregatedRelativeTotalTime = "AggregatedRelativeTotalTime",
|
|
143
106
|
}
|
|
144
|
-
|
|
145
107
|
export interface Metric {
|
|
146
108
|
frameName: string | undefined;
|
|
147
|
-
|
|
148
109
|
type: MetricType | string | undefined;
|
|
149
|
-
|
|
150
110
|
threadStates: string[] | undefined;
|
|
151
111
|
}
|
|
152
|
-
|
|
153
112
|
export interface Anomaly {
|
|
154
113
|
metric: Metric | undefined;
|
|
155
|
-
|
|
156
114
|
reason: string | undefined;
|
|
157
|
-
|
|
158
115
|
instances: AnomalyInstance[] | undefined;
|
|
159
116
|
}
|
|
160
|
-
|
|
161
117
|
export interface FrameMetric {
|
|
162
118
|
frameName: string | undefined;
|
|
163
|
-
|
|
164
119
|
type: MetricType | string | undefined;
|
|
165
|
-
|
|
166
120
|
threadStates: string[] | undefined;
|
|
167
121
|
}
|
|
168
|
-
|
|
169
122
|
export interface BatchGetFrameMetricDataRequest {
|
|
170
123
|
profilingGroupName: string | undefined;
|
|
171
|
-
|
|
172
124
|
startTime?: Date;
|
|
173
|
-
|
|
174
125
|
endTime?: Date;
|
|
175
|
-
|
|
176
126
|
period?: string;
|
|
177
|
-
|
|
178
127
|
targetResolution?: AggregationPeriod | string;
|
|
179
|
-
|
|
180
128
|
frameMetrics?: FrameMetric[];
|
|
181
129
|
}
|
|
182
|
-
|
|
183
130
|
export interface TimestampStructure {
|
|
184
131
|
value: Date | undefined;
|
|
185
132
|
}
|
|
186
|
-
|
|
187
133
|
export interface FrameMetricDatum {
|
|
188
134
|
frameMetric: FrameMetric | undefined;
|
|
189
|
-
|
|
190
135
|
values: number[] | undefined;
|
|
191
136
|
}
|
|
192
|
-
|
|
193
137
|
export interface BatchGetFrameMetricDataResponse {
|
|
194
138
|
startTime: Date | undefined;
|
|
195
|
-
|
|
196
139
|
endTime: Date | undefined;
|
|
197
|
-
|
|
198
140
|
resolution: AggregationPeriod | string | undefined;
|
|
199
|
-
|
|
200
141
|
endTimes: TimestampStructure[] | undefined;
|
|
201
|
-
|
|
202
142
|
unprocessedEndTimes: Record<string, TimestampStructure[]> | undefined;
|
|
203
|
-
|
|
204
143
|
frameMetricData: FrameMetricDatum[] | undefined;
|
|
205
144
|
}
|
|
206
|
-
|
|
207
145
|
export interface GetFindingsReportAccountSummaryRequest {
|
|
208
146
|
nextToken?: string;
|
|
209
|
-
|
|
210
147
|
maxResults?: number;
|
|
211
|
-
|
|
212
148
|
dailyReportsOnly?: boolean;
|
|
213
149
|
}
|
|
214
|
-
|
|
215
150
|
export interface FindingsReportSummary {
|
|
216
151
|
id?: string;
|
|
217
|
-
|
|
218
152
|
profilingGroupName?: string;
|
|
219
|
-
|
|
220
153
|
profileStartTime?: Date;
|
|
221
|
-
|
|
222
154
|
profileEndTime?: Date;
|
|
223
|
-
|
|
224
155
|
totalNumberOfFindings?: number;
|
|
225
156
|
}
|
|
226
|
-
|
|
227
157
|
export interface GetFindingsReportAccountSummaryResponse {
|
|
228
158
|
reportSummaries: FindingsReportSummary[] | undefined;
|
|
229
|
-
|
|
230
159
|
nextToken?: string;
|
|
231
160
|
}
|
|
232
161
|
export interface ListTagsForResourceRequest {
|
|
@@ -237,590 +166,398 @@ export interface ListTagsForResourceResponse {
|
|
|
237
166
|
}
|
|
238
167
|
export declare enum MetadataField {
|
|
239
168
|
AGENT_ID = "AgentId",
|
|
240
|
-
|
|
241
169
|
AWS_REQUEST_ID = "AwsRequestId",
|
|
242
|
-
|
|
243
170
|
COMPUTE_PLATFORM = "ComputePlatform",
|
|
244
|
-
|
|
245
171
|
EXECUTION_ENVIRONMENT = "ExecutionEnvironment",
|
|
246
|
-
|
|
247
172
|
LAMBDA_FUNCTION_ARN = "LambdaFunctionArn",
|
|
248
|
-
|
|
249
173
|
LAMBDA_MEMORY_LIMIT_IN_MB = "LambdaMemoryLimitInMB",
|
|
250
|
-
|
|
251
174
|
LAMBDA_PREVIOUS_EXECUTION_TIME_IN_MILLISECONDS = "LambdaPreviousExecutionTimeInMilliseconds",
|
|
252
|
-
|
|
253
175
|
LAMBDA_REMAINING_TIME_IN_MILLISECONDS = "LambdaRemainingTimeInMilliseconds",
|
|
254
|
-
|
|
255
176
|
LAMBDA_TIME_GAP_BETWEEN_INVOKES_IN_MILLISECONDS = "LambdaTimeGapBetweenInvokesInMilliseconds",
|
|
256
177
|
}
|
|
257
|
-
|
|
258
178
|
export interface ConfigureAgentRequest {
|
|
259
179
|
profilingGroupName: string | undefined;
|
|
260
|
-
|
|
261
180
|
fleetInstanceId?: string;
|
|
262
|
-
|
|
263
181
|
metadata?: Record<string, string>;
|
|
264
182
|
}
|
|
265
|
-
|
|
266
183
|
export interface ConfigureAgentResponse {
|
|
267
184
|
configuration: AgentConfiguration | undefined;
|
|
268
185
|
}
|
|
269
186
|
export declare enum ComputePlatform {
|
|
270
187
|
AWSLAMBDA = "AWSLambda",
|
|
271
|
-
|
|
272
188
|
DEFAULT = "Default",
|
|
273
189
|
}
|
|
274
|
-
|
|
275
190
|
export interface CreateProfilingGroupRequest {
|
|
276
191
|
profilingGroupName: string | undefined;
|
|
277
|
-
|
|
278
192
|
computePlatform?: ComputePlatform | string;
|
|
279
|
-
|
|
280
193
|
clientToken?: string;
|
|
281
|
-
|
|
282
194
|
agentOrchestrationConfig?: AgentOrchestrationConfig;
|
|
283
|
-
|
|
284
195
|
tags?: Record<string, string>;
|
|
285
196
|
}
|
|
286
|
-
|
|
287
197
|
export interface ProfilingStatus {
|
|
288
198
|
latestAgentProfileReportedAt?: Date;
|
|
289
|
-
|
|
290
199
|
latestAggregatedProfile?: AggregatedProfileTime;
|
|
291
|
-
|
|
292
200
|
latestAgentOrchestratedAt?: Date;
|
|
293
201
|
}
|
|
294
|
-
|
|
295
202
|
export interface ProfilingGroupDescription {
|
|
296
203
|
name?: string;
|
|
297
|
-
|
|
298
204
|
agentOrchestrationConfig?: AgentOrchestrationConfig;
|
|
299
|
-
|
|
300
205
|
arn?: string;
|
|
301
|
-
|
|
302
206
|
createdAt?: Date;
|
|
303
|
-
|
|
304
207
|
updatedAt?: Date;
|
|
305
|
-
|
|
306
208
|
profilingStatus?: ProfilingStatus;
|
|
307
|
-
|
|
308
209
|
computePlatform?: ComputePlatform | string;
|
|
309
|
-
|
|
310
210
|
tags?: Record<string, string>;
|
|
311
211
|
}
|
|
312
|
-
|
|
313
212
|
export interface CreateProfilingGroupResponse {
|
|
314
213
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
315
214
|
}
|
|
316
|
-
|
|
317
215
|
export interface DeleteProfilingGroupRequest {
|
|
318
216
|
profilingGroupName: string | undefined;
|
|
319
217
|
}
|
|
320
|
-
|
|
321
218
|
export interface DeleteProfilingGroupResponse {}
|
|
322
|
-
|
|
323
219
|
export interface DescribeProfilingGroupRequest {
|
|
324
220
|
profilingGroupName: string | undefined;
|
|
325
221
|
}
|
|
326
|
-
|
|
327
222
|
export interface DescribeProfilingGroupResponse {
|
|
328
223
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
329
224
|
}
|
|
330
|
-
|
|
331
225
|
export interface GetNotificationConfigurationRequest {
|
|
332
226
|
profilingGroupName: string | undefined;
|
|
333
227
|
}
|
|
334
|
-
|
|
335
228
|
export interface GetNotificationConfigurationResponse {
|
|
336
229
|
notificationConfiguration: NotificationConfiguration | undefined;
|
|
337
230
|
}
|
|
338
|
-
|
|
339
231
|
export interface GetPolicyRequest {
|
|
340
232
|
profilingGroupName: string | undefined;
|
|
341
233
|
}
|
|
342
|
-
|
|
343
234
|
export interface GetPolicyResponse {
|
|
344
235
|
policy: string | undefined;
|
|
345
|
-
|
|
346
236
|
revisionId: string | undefined;
|
|
347
237
|
}
|
|
348
|
-
|
|
349
238
|
export interface GetProfileRequest {
|
|
350
239
|
profilingGroupName: string | undefined;
|
|
351
|
-
|
|
352
240
|
startTime?: Date;
|
|
353
|
-
|
|
354
241
|
period?: string;
|
|
355
|
-
|
|
356
242
|
endTime?: Date;
|
|
357
|
-
|
|
358
243
|
maxDepth?: number;
|
|
359
|
-
|
|
360
244
|
accept?: string;
|
|
361
245
|
}
|
|
362
|
-
|
|
363
246
|
export interface GetProfileResponse {
|
|
364
247
|
profile: Uint8Array | undefined;
|
|
365
|
-
|
|
366
248
|
contentType: string | undefined;
|
|
367
|
-
|
|
368
249
|
contentEncoding?: string;
|
|
369
250
|
}
|
|
370
|
-
|
|
371
251
|
export interface GetRecommendationsRequest {
|
|
372
252
|
profilingGroupName: string | undefined;
|
|
373
|
-
|
|
374
253
|
startTime: Date | undefined;
|
|
375
|
-
|
|
376
254
|
endTime: Date | undefined;
|
|
377
|
-
|
|
378
255
|
locale?: string;
|
|
379
256
|
}
|
|
380
|
-
|
|
381
257
|
export interface Pattern {
|
|
382
258
|
id?: string;
|
|
383
|
-
|
|
384
259
|
name?: string;
|
|
385
|
-
|
|
386
260
|
description?: string;
|
|
387
|
-
|
|
388
261
|
resolutionSteps?: string;
|
|
389
|
-
|
|
390
262
|
targetFrames?: string[][];
|
|
391
|
-
|
|
392
263
|
thresholdPercent?: number;
|
|
393
|
-
|
|
394
264
|
countersToAggregate?: string[];
|
|
395
265
|
}
|
|
396
|
-
|
|
397
266
|
export interface Match {
|
|
398
267
|
targetFramesIndex?: number;
|
|
399
|
-
|
|
400
268
|
frameAddress?: string;
|
|
401
|
-
|
|
402
269
|
thresholdBreachValue?: number;
|
|
403
270
|
}
|
|
404
|
-
|
|
405
271
|
export interface Recommendation {
|
|
406
272
|
allMatchesCount: number | undefined;
|
|
407
|
-
|
|
408
273
|
allMatchesSum: number | undefined;
|
|
409
|
-
|
|
410
274
|
pattern: Pattern | undefined;
|
|
411
|
-
|
|
412
275
|
topMatches: Match[] | undefined;
|
|
413
|
-
|
|
414
276
|
startTime: Date | undefined;
|
|
415
|
-
|
|
416
277
|
endTime: Date | undefined;
|
|
417
278
|
}
|
|
418
|
-
|
|
419
279
|
export interface GetRecommendationsResponse {
|
|
420
280
|
profilingGroupName: string | undefined;
|
|
421
|
-
|
|
422
281
|
profileStartTime: Date | undefined;
|
|
423
|
-
|
|
424
282
|
profileEndTime: Date | undefined;
|
|
425
|
-
|
|
426
283
|
recommendations: Recommendation[] | undefined;
|
|
427
|
-
|
|
428
284
|
anomalies: Anomaly[] | undefined;
|
|
429
285
|
}
|
|
430
|
-
|
|
431
286
|
export interface ListFindingsReportsRequest {
|
|
432
287
|
profilingGroupName: string | undefined;
|
|
433
|
-
|
|
434
288
|
startTime: Date | undefined;
|
|
435
|
-
|
|
436
289
|
endTime: Date | undefined;
|
|
437
|
-
|
|
438
290
|
nextToken?: string;
|
|
439
|
-
|
|
440
291
|
maxResults?: number;
|
|
441
|
-
|
|
442
292
|
dailyReportsOnly?: boolean;
|
|
443
293
|
}
|
|
444
|
-
|
|
445
294
|
export interface ListFindingsReportsResponse {
|
|
446
295
|
findingsReportSummaries: FindingsReportSummary[] | undefined;
|
|
447
|
-
|
|
448
296
|
nextToken?: string;
|
|
449
297
|
}
|
|
450
298
|
export declare enum OrderBy {
|
|
451
299
|
TIMESTAMP_ASCENDING = "TimestampAscending",
|
|
452
|
-
|
|
453
300
|
TIMESTAMP_DESCENDING = "TimestampDescending",
|
|
454
301
|
}
|
|
455
|
-
|
|
456
302
|
export interface ListProfileTimesRequest {
|
|
457
303
|
profilingGroupName: string | undefined;
|
|
458
|
-
|
|
459
304
|
startTime: Date | undefined;
|
|
460
|
-
|
|
461
305
|
endTime: Date | undefined;
|
|
462
|
-
|
|
463
306
|
period: AggregationPeriod | string | undefined;
|
|
464
|
-
|
|
465
307
|
orderBy?: OrderBy | string;
|
|
466
|
-
|
|
467
308
|
maxResults?: number;
|
|
468
|
-
|
|
469
309
|
nextToken?: string;
|
|
470
310
|
}
|
|
471
|
-
|
|
472
311
|
export interface ProfileTime {
|
|
473
312
|
start?: Date;
|
|
474
313
|
}
|
|
475
|
-
|
|
476
314
|
export interface ListProfileTimesResponse {
|
|
477
315
|
profileTimes: ProfileTime[] | undefined;
|
|
478
|
-
|
|
479
316
|
nextToken?: string;
|
|
480
317
|
}
|
|
481
|
-
|
|
482
318
|
export interface ListProfilingGroupsRequest {
|
|
483
319
|
nextToken?: string;
|
|
484
|
-
|
|
485
320
|
maxResults?: number;
|
|
486
|
-
|
|
487
321
|
includeDescription?: boolean;
|
|
488
322
|
}
|
|
489
|
-
|
|
490
323
|
export interface ListProfilingGroupsResponse {
|
|
491
324
|
profilingGroupNames: string[] | undefined;
|
|
492
|
-
|
|
493
325
|
profilingGroups?: ProfilingGroupDescription[];
|
|
494
|
-
|
|
495
326
|
nextToken?: string;
|
|
496
327
|
}
|
|
497
|
-
|
|
498
328
|
export interface PostAgentProfileRequest {
|
|
499
329
|
profilingGroupName: string | undefined;
|
|
500
|
-
|
|
501
330
|
agentProfile: Uint8Array | undefined;
|
|
502
|
-
|
|
503
331
|
profileToken?: string;
|
|
504
|
-
|
|
505
332
|
contentType: string | undefined;
|
|
506
333
|
}
|
|
507
|
-
|
|
508
334
|
export interface PostAgentProfileResponse {}
|
|
509
|
-
|
|
510
335
|
export interface PutPermissionRequest {
|
|
511
336
|
profilingGroupName: string | undefined;
|
|
512
|
-
|
|
513
337
|
actionGroup: ActionGroup | string | undefined;
|
|
514
|
-
|
|
515
338
|
principals: string[] | undefined;
|
|
516
|
-
|
|
517
339
|
revisionId?: string;
|
|
518
340
|
}
|
|
519
|
-
|
|
520
341
|
export interface PutPermissionResponse {
|
|
521
342
|
policy: string | undefined;
|
|
522
|
-
|
|
523
343
|
revisionId: string | undefined;
|
|
524
344
|
}
|
|
525
|
-
|
|
526
345
|
export interface RemoveNotificationChannelRequest {
|
|
527
346
|
profilingGroupName: string | undefined;
|
|
528
|
-
|
|
529
347
|
channelId: string | undefined;
|
|
530
348
|
}
|
|
531
|
-
|
|
532
349
|
export interface RemoveNotificationChannelResponse {
|
|
533
350
|
notificationConfiguration?: NotificationConfiguration;
|
|
534
351
|
}
|
|
535
|
-
|
|
536
352
|
export interface RemovePermissionRequest {
|
|
537
353
|
profilingGroupName: string | undefined;
|
|
538
|
-
|
|
539
354
|
actionGroup: ActionGroup | string | undefined;
|
|
540
|
-
|
|
541
355
|
revisionId: string | undefined;
|
|
542
356
|
}
|
|
543
|
-
|
|
544
357
|
export interface RemovePermissionResponse {
|
|
545
358
|
policy: string | undefined;
|
|
546
|
-
|
|
547
359
|
revisionId: string | undefined;
|
|
548
360
|
}
|
|
549
|
-
|
|
550
361
|
export interface SubmitFeedbackRequest {
|
|
551
362
|
profilingGroupName: string | undefined;
|
|
552
|
-
|
|
553
363
|
anomalyInstanceId: string | undefined;
|
|
554
|
-
|
|
555
364
|
type: FeedbackType | string | undefined;
|
|
556
|
-
|
|
557
365
|
comment?: string;
|
|
558
366
|
}
|
|
559
|
-
|
|
560
367
|
export interface SubmitFeedbackResponse {}
|
|
561
|
-
|
|
562
368
|
export interface UpdateProfilingGroupRequest {
|
|
563
369
|
profilingGroupName: string | undefined;
|
|
564
|
-
|
|
565
370
|
agentOrchestrationConfig: AgentOrchestrationConfig | undefined;
|
|
566
371
|
}
|
|
567
|
-
|
|
568
372
|
export interface UpdateProfilingGroupResponse {
|
|
569
373
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
570
374
|
}
|
|
571
375
|
export interface TagResourceRequest {
|
|
572
376
|
resourceArn: string | undefined;
|
|
573
|
-
|
|
574
377
|
tags: Record<string, string> | undefined;
|
|
575
378
|
}
|
|
576
379
|
export interface TagResourceResponse {}
|
|
577
380
|
export interface UntagResourceRequest {
|
|
578
381
|
resourceArn: string | undefined;
|
|
579
|
-
|
|
580
382
|
tagKeys: string[] | undefined;
|
|
581
383
|
}
|
|
582
384
|
export interface UntagResourceResponse {}
|
|
583
|
-
|
|
584
385
|
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
585
|
-
|
|
586
386
|
export declare const AddNotificationChannelsRequestFilterSensitiveLog: (
|
|
587
387
|
obj: AddNotificationChannelsRequest
|
|
588
388
|
) => any;
|
|
589
|
-
|
|
590
389
|
export declare const NotificationConfigurationFilterSensitiveLog: (
|
|
591
390
|
obj: NotificationConfiguration
|
|
592
391
|
) => any;
|
|
593
|
-
|
|
594
392
|
export declare const AddNotificationChannelsResponseFilterSensitiveLog: (
|
|
595
393
|
obj: AddNotificationChannelsResponse
|
|
596
394
|
) => any;
|
|
597
|
-
|
|
598
395
|
export declare const AgentConfigurationFilterSensitiveLog: (
|
|
599
396
|
obj: AgentConfiguration
|
|
600
397
|
) => any;
|
|
601
|
-
|
|
602
398
|
export declare const AgentOrchestrationConfigFilterSensitiveLog: (
|
|
603
399
|
obj: AgentOrchestrationConfig
|
|
604
400
|
) => any;
|
|
605
|
-
|
|
606
401
|
export declare const AggregatedProfileTimeFilterSensitiveLog: (
|
|
607
402
|
obj: AggregatedProfileTime
|
|
608
403
|
) => any;
|
|
609
|
-
|
|
610
404
|
export declare const UserFeedbackFilterSensitiveLog: (obj: UserFeedback) => any;
|
|
611
|
-
|
|
612
405
|
export declare const AnomalyInstanceFilterSensitiveLog: (
|
|
613
406
|
obj: AnomalyInstance
|
|
614
407
|
) => any;
|
|
615
|
-
|
|
616
408
|
export declare const MetricFilterSensitiveLog: (obj: Metric) => any;
|
|
617
|
-
|
|
618
409
|
export declare const AnomalyFilterSensitiveLog: (obj: Anomaly) => any;
|
|
619
|
-
|
|
620
410
|
export declare const FrameMetricFilterSensitiveLog: (obj: FrameMetric) => any;
|
|
621
|
-
|
|
622
411
|
export declare const BatchGetFrameMetricDataRequestFilterSensitiveLog: (
|
|
623
412
|
obj: BatchGetFrameMetricDataRequest
|
|
624
413
|
) => any;
|
|
625
|
-
|
|
626
414
|
export declare const TimestampStructureFilterSensitiveLog: (
|
|
627
415
|
obj: TimestampStructure
|
|
628
416
|
) => any;
|
|
629
|
-
|
|
630
417
|
export declare const FrameMetricDatumFilterSensitiveLog: (
|
|
631
418
|
obj: FrameMetricDatum
|
|
632
419
|
) => any;
|
|
633
|
-
|
|
634
420
|
export declare const BatchGetFrameMetricDataResponseFilterSensitiveLog: (
|
|
635
421
|
obj: BatchGetFrameMetricDataResponse
|
|
636
422
|
) => any;
|
|
637
|
-
|
|
638
423
|
export declare const GetFindingsReportAccountSummaryRequestFilterSensitiveLog: (
|
|
639
424
|
obj: GetFindingsReportAccountSummaryRequest
|
|
640
425
|
) => any;
|
|
641
|
-
|
|
642
426
|
export declare const FindingsReportSummaryFilterSensitiveLog: (
|
|
643
427
|
obj: FindingsReportSummary
|
|
644
428
|
) => any;
|
|
645
|
-
|
|
646
429
|
export declare const GetFindingsReportAccountSummaryResponseFilterSensitiveLog: (
|
|
647
430
|
obj: GetFindingsReportAccountSummaryResponse
|
|
648
431
|
) => any;
|
|
649
|
-
|
|
650
432
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
651
433
|
obj: ListTagsForResourceRequest
|
|
652
434
|
) => any;
|
|
653
|
-
|
|
654
435
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
655
436
|
obj: ListTagsForResourceResponse
|
|
656
437
|
) => any;
|
|
657
|
-
|
|
658
438
|
export declare const ConfigureAgentRequestFilterSensitiveLog: (
|
|
659
439
|
obj: ConfigureAgentRequest
|
|
660
440
|
) => any;
|
|
661
|
-
|
|
662
441
|
export declare const ConfigureAgentResponseFilterSensitiveLog: (
|
|
663
442
|
obj: ConfigureAgentResponse
|
|
664
443
|
) => any;
|
|
665
|
-
|
|
666
444
|
export declare const CreateProfilingGroupRequestFilterSensitiveLog: (
|
|
667
445
|
obj: CreateProfilingGroupRequest
|
|
668
446
|
) => any;
|
|
669
|
-
|
|
670
447
|
export declare const ProfilingStatusFilterSensitiveLog: (
|
|
671
448
|
obj: ProfilingStatus
|
|
672
449
|
) => any;
|
|
673
|
-
|
|
674
450
|
export declare const ProfilingGroupDescriptionFilterSensitiveLog: (
|
|
675
451
|
obj: ProfilingGroupDescription
|
|
676
452
|
) => any;
|
|
677
|
-
|
|
678
453
|
export declare const CreateProfilingGroupResponseFilterSensitiveLog: (
|
|
679
454
|
obj: CreateProfilingGroupResponse
|
|
680
455
|
) => any;
|
|
681
|
-
|
|
682
456
|
export declare const DeleteProfilingGroupRequestFilterSensitiveLog: (
|
|
683
457
|
obj: DeleteProfilingGroupRequest
|
|
684
458
|
) => any;
|
|
685
|
-
|
|
686
459
|
export declare const DeleteProfilingGroupResponseFilterSensitiveLog: (
|
|
687
460
|
obj: DeleteProfilingGroupResponse
|
|
688
461
|
) => any;
|
|
689
|
-
|
|
690
462
|
export declare const DescribeProfilingGroupRequestFilterSensitiveLog: (
|
|
691
463
|
obj: DescribeProfilingGroupRequest
|
|
692
464
|
) => any;
|
|
693
|
-
|
|
694
465
|
export declare const DescribeProfilingGroupResponseFilterSensitiveLog: (
|
|
695
466
|
obj: DescribeProfilingGroupResponse
|
|
696
467
|
) => any;
|
|
697
|
-
|
|
698
468
|
export declare const GetNotificationConfigurationRequestFilterSensitiveLog: (
|
|
699
469
|
obj: GetNotificationConfigurationRequest
|
|
700
470
|
) => any;
|
|
701
|
-
|
|
702
471
|
export declare const GetNotificationConfigurationResponseFilterSensitiveLog: (
|
|
703
472
|
obj: GetNotificationConfigurationResponse
|
|
704
473
|
) => any;
|
|
705
|
-
|
|
706
474
|
export declare const GetPolicyRequestFilterSensitiveLog: (
|
|
707
475
|
obj: GetPolicyRequest
|
|
708
476
|
) => any;
|
|
709
|
-
|
|
710
477
|
export declare const GetPolicyResponseFilterSensitiveLog: (
|
|
711
478
|
obj: GetPolicyResponse
|
|
712
479
|
) => any;
|
|
713
|
-
|
|
714
480
|
export declare const GetProfileRequestFilterSensitiveLog: (
|
|
715
481
|
obj: GetProfileRequest
|
|
716
482
|
) => any;
|
|
717
|
-
|
|
718
483
|
export declare const GetProfileResponseFilterSensitiveLog: (
|
|
719
484
|
obj: GetProfileResponse
|
|
720
485
|
) => any;
|
|
721
|
-
|
|
722
486
|
export declare const GetRecommendationsRequestFilterSensitiveLog: (
|
|
723
487
|
obj: GetRecommendationsRequest
|
|
724
488
|
) => any;
|
|
725
|
-
|
|
726
489
|
export declare const PatternFilterSensitiveLog: (obj: Pattern) => any;
|
|
727
|
-
|
|
728
490
|
export declare const MatchFilterSensitiveLog: (obj: Match) => any;
|
|
729
|
-
|
|
730
491
|
export declare const RecommendationFilterSensitiveLog: (
|
|
731
492
|
obj: Recommendation
|
|
732
493
|
) => any;
|
|
733
|
-
|
|
734
494
|
export declare const GetRecommendationsResponseFilterSensitiveLog: (
|
|
735
495
|
obj: GetRecommendationsResponse
|
|
736
496
|
) => any;
|
|
737
|
-
|
|
738
497
|
export declare const ListFindingsReportsRequestFilterSensitiveLog: (
|
|
739
498
|
obj: ListFindingsReportsRequest
|
|
740
499
|
) => any;
|
|
741
|
-
|
|
742
500
|
export declare const ListFindingsReportsResponseFilterSensitiveLog: (
|
|
743
501
|
obj: ListFindingsReportsResponse
|
|
744
502
|
) => any;
|
|
745
|
-
|
|
746
503
|
export declare const ListProfileTimesRequestFilterSensitiveLog: (
|
|
747
504
|
obj: ListProfileTimesRequest
|
|
748
505
|
) => any;
|
|
749
|
-
|
|
750
506
|
export declare const ProfileTimeFilterSensitiveLog: (obj: ProfileTime) => any;
|
|
751
|
-
|
|
752
507
|
export declare const ListProfileTimesResponseFilterSensitiveLog: (
|
|
753
508
|
obj: ListProfileTimesResponse
|
|
754
509
|
) => any;
|
|
755
|
-
|
|
756
510
|
export declare const ListProfilingGroupsRequestFilterSensitiveLog: (
|
|
757
511
|
obj: ListProfilingGroupsRequest
|
|
758
512
|
) => any;
|
|
759
|
-
|
|
760
513
|
export declare const ListProfilingGroupsResponseFilterSensitiveLog: (
|
|
761
514
|
obj: ListProfilingGroupsResponse
|
|
762
515
|
) => any;
|
|
763
|
-
|
|
764
516
|
export declare const PostAgentProfileRequestFilterSensitiveLog: (
|
|
765
517
|
obj: PostAgentProfileRequest
|
|
766
518
|
) => any;
|
|
767
|
-
|
|
768
519
|
export declare const PostAgentProfileResponseFilterSensitiveLog: (
|
|
769
520
|
obj: PostAgentProfileResponse
|
|
770
521
|
) => any;
|
|
771
|
-
|
|
772
522
|
export declare const PutPermissionRequestFilterSensitiveLog: (
|
|
773
523
|
obj: PutPermissionRequest
|
|
774
524
|
) => any;
|
|
775
|
-
|
|
776
525
|
export declare const PutPermissionResponseFilterSensitiveLog: (
|
|
777
526
|
obj: PutPermissionResponse
|
|
778
527
|
) => any;
|
|
779
|
-
|
|
780
528
|
export declare const RemoveNotificationChannelRequestFilterSensitiveLog: (
|
|
781
529
|
obj: RemoveNotificationChannelRequest
|
|
782
530
|
) => any;
|
|
783
|
-
|
|
784
531
|
export declare const RemoveNotificationChannelResponseFilterSensitiveLog: (
|
|
785
532
|
obj: RemoveNotificationChannelResponse
|
|
786
533
|
) => any;
|
|
787
|
-
|
|
788
534
|
export declare const RemovePermissionRequestFilterSensitiveLog: (
|
|
789
535
|
obj: RemovePermissionRequest
|
|
790
536
|
) => any;
|
|
791
|
-
|
|
792
537
|
export declare const RemovePermissionResponseFilterSensitiveLog: (
|
|
793
538
|
obj: RemovePermissionResponse
|
|
794
539
|
) => any;
|
|
795
|
-
|
|
796
540
|
export declare const SubmitFeedbackRequestFilterSensitiveLog: (
|
|
797
541
|
obj: SubmitFeedbackRequest
|
|
798
542
|
) => any;
|
|
799
|
-
|
|
800
543
|
export declare const SubmitFeedbackResponseFilterSensitiveLog: (
|
|
801
544
|
obj: SubmitFeedbackResponse
|
|
802
545
|
) => any;
|
|
803
|
-
|
|
804
546
|
export declare const UpdateProfilingGroupRequestFilterSensitiveLog: (
|
|
805
547
|
obj: UpdateProfilingGroupRequest
|
|
806
548
|
) => any;
|
|
807
|
-
|
|
808
549
|
export declare const UpdateProfilingGroupResponseFilterSensitiveLog: (
|
|
809
550
|
obj: UpdateProfilingGroupResponse
|
|
810
551
|
) => any;
|
|
811
|
-
|
|
812
552
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
813
553
|
obj: TagResourceRequest
|
|
814
554
|
) => any;
|
|
815
|
-
|
|
816
555
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
817
556
|
obj: TagResourceResponse
|
|
818
557
|
) => any;
|
|
819
|
-
|
|
820
558
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
821
559
|
obj: UntagResourceRequest
|
|
822
560
|
) => any;
|
|
823
|
-
|
|
824
561
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
825
562
|
obj: UntagResourceResponse
|
|
826
563
|
) => any;
|