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