@aws-sdk/client-codeguruprofiler 3.169.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodeGuruProfiler.d.ts +395 -120
  3. package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +243 -96
  4. package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +39 -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 +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +563 -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 +67 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  44. package/package.json +34 -34
@@ -1,776 +1,563 @@
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
+ export interface Channel {
10
+ id?: string;
11
+ uri: string | undefined;
12
+ eventPublishers: (EventPublisher | string)[] | undefined;
13
+ }
14
+ export interface AddNotificationChannelsRequest {
15
+ profilingGroupName: string | undefined;
16
+ channels: Channel[] | undefined;
17
+ }
18
+ export interface NotificationConfiguration {
19
+ channels?: Channel[];
20
+ }
21
+ export interface AddNotificationChannelsResponse {
22
+ notificationConfiguration?: NotificationConfiguration;
23
+ }
24
+ export declare class ConflictException extends __BaseException {
25
+ readonly name: "ConflictException";
26
+ readonly $fault: "client";
27
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
+ }
29
+ export declare class InternalServerException extends __BaseException {
30
+ readonly name: "InternalServerException";
31
+ readonly $fault: "server";
32
+ $retryable: {};
33
+ constructor(
34
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ResourceNotFoundException extends __BaseException {
38
+ readonly name: "ResourceNotFoundException";
39
+ readonly $fault: "client";
40
+ constructor(
41
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
42
+ );
43
+ }
44
+ export declare class ServiceQuotaExceededException extends __BaseException {
45
+ readonly name: "ServiceQuotaExceededException";
46
+ readonly $fault: "client";
47
+ $retryable: {};
48
+ constructor(
49
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
50
+ );
51
+ }
52
+ export declare class ThrottlingException extends __BaseException {
53
+ readonly name: "ThrottlingException";
54
+ readonly $fault: "client";
55
+ $retryable: {};
56
+ constructor(
57
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
58
+ );
59
+ }
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+ constructor(
64
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
65
+ );
66
+ }
67
+ export declare enum AgentParameterField {
68
+ MAX_STACK_DEPTH = "MaxStackDepth",
69
+ MEMORY_USAGE_LIMIT_PERCENT = "MemoryUsageLimitPercent",
70
+ MINIMUM_TIME_FOR_REPORTING_IN_MILLISECONDS = "MinimumTimeForReportingInMilliseconds",
71
+ REPORTING_INTERVAL_IN_MILLISECONDS = "ReportingIntervalInMilliseconds",
72
+ SAMPLING_INTERVAL_IN_MILLISECONDS = "SamplingIntervalInMilliseconds",
73
+ }
74
+ export interface AgentConfiguration {
75
+ shouldProfile: boolean | undefined;
76
+ periodInSeconds: number | undefined;
77
+ agentParameters?: Record<string, string>;
78
+ }
79
+ export interface AgentOrchestrationConfig {
80
+ profilingEnabled: boolean | undefined;
81
+ }
82
+ export declare enum AggregationPeriod {
83
+ P1D = "P1D",
84
+ PT1H = "PT1H",
85
+ PT5M = "PT5M",
86
+ }
87
+ export interface AggregatedProfileTime {
88
+ start?: Date;
89
+ period?: AggregationPeriod | string;
90
+ }
91
+ export declare enum FeedbackType {
92
+ Negative = "Negative",
93
+ Positive = "Positive",
94
+ }
95
+ export interface UserFeedback {
96
+ type: FeedbackType | string | undefined;
97
+ }
98
+ export interface AnomalyInstance {
99
+ id: string | undefined;
100
+ startTime: Date | undefined;
101
+ endTime?: Date;
102
+ userFeedback?: UserFeedback;
103
+ }
104
+ export declare enum MetricType {
105
+ AggregatedRelativeTotalTime = "AggregatedRelativeTotalTime",
106
+ }
107
+ export interface Metric {
108
+ frameName: string | undefined;
109
+ type: MetricType | string | undefined;
110
+ threadStates: string[] | undefined;
111
+ }
112
+ export interface Anomaly {
113
+ metric: Metric | undefined;
114
+ reason: string | undefined;
115
+ instances: AnomalyInstance[] | undefined;
116
+ }
117
+ export interface FrameMetric {
118
+ frameName: string | undefined;
119
+ type: MetricType | string | undefined;
120
+ threadStates: string[] | undefined;
121
+ }
122
+ export interface BatchGetFrameMetricDataRequest {
123
+ profilingGroupName: string | undefined;
124
+ startTime?: Date;
125
+ endTime?: Date;
126
+ period?: string;
127
+ targetResolution?: AggregationPeriod | string;
128
+ frameMetrics?: FrameMetric[];
129
+ }
130
+ export interface TimestampStructure {
131
+ value: Date | undefined;
132
+ }
133
+ export interface FrameMetricDatum {
134
+ frameMetric: FrameMetric | undefined;
135
+ values: number[] | undefined;
136
+ }
137
+ export interface BatchGetFrameMetricDataResponse {
138
+ startTime: Date | undefined;
139
+ endTime: Date | undefined;
140
+ resolution: AggregationPeriod | string | undefined;
141
+ endTimes: TimestampStructure[] | undefined;
142
+ unprocessedEndTimes: Record<string, TimestampStructure[]> | undefined;
143
+ frameMetricData: FrameMetricDatum[] | undefined;
144
+ }
145
+ export interface GetFindingsReportAccountSummaryRequest {
146
+ nextToken?: string;
147
+ maxResults?: number;
148
+ dailyReportsOnly?: boolean;
149
+ }
150
+ export interface FindingsReportSummary {
151
+ id?: string;
152
+ profilingGroupName?: string;
153
+ profileStartTime?: Date;
154
+ profileEndTime?: Date;
155
+ totalNumberOfFindings?: number;
156
+ }
157
+ export interface GetFindingsReportAccountSummaryResponse {
158
+ reportSummaries: FindingsReportSummary[] | undefined;
159
+ nextToken?: string;
160
+ }
161
+ export interface ListTagsForResourceRequest {
162
+ resourceArn: string | undefined;
163
+ }
164
+ export interface ListTagsForResourceResponse {
165
+ tags?: Record<string, string>;
166
+ }
167
+ export declare enum MetadataField {
168
+ AGENT_ID = "AgentId",
169
+ AWS_REQUEST_ID = "AwsRequestId",
170
+ COMPUTE_PLATFORM = "ComputePlatform",
171
+ EXECUTION_ENVIRONMENT = "ExecutionEnvironment",
172
+ LAMBDA_FUNCTION_ARN = "LambdaFunctionArn",
173
+ LAMBDA_MEMORY_LIMIT_IN_MB = "LambdaMemoryLimitInMB",
174
+ LAMBDA_PREVIOUS_EXECUTION_TIME_IN_MILLISECONDS = "LambdaPreviousExecutionTimeInMilliseconds",
175
+ LAMBDA_REMAINING_TIME_IN_MILLISECONDS = "LambdaRemainingTimeInMilliseconds",
176
+ LAMBDA_TIME_GAP_BETWEEN_INVOKES_IN_MILLISECONDS = "LambdaTimeGapBetweenInvokesInMilliseconds",
177
+ }
178
+ export interface ConfigureAgentRequest {
179
+ profilingGroupName: string | undefined;
180
+ fleetInstanceId?: string;
181
+ metadata?: Record<string, string>;
182
+ }
183
+ export interface ConfigureAgentResponse {
184
+ configuration: AgentConfiguration | undefined;
185
+ }
186
+ export declare enum ComputePlatform {
187
+ AWSLAMBDA = "AWSLambda",
188
+ DEFAULT = "Default",
189
+ }
190
+ export interface CreateProfilingGroupRequest {
191
+ profilingGroupName: string | undefined;
192
+ computePlatform?: ComputePlatform | string;
193
+ clientToken?: string;
194
+ agentOrchestrationConfig?: AgentOrchestrationConfig;
195
+ tags?: Record<string, string>;
196
+ }
197
+ export interface ProfilingStatus {
198
+ latestAgentProfileReportedAt?: Date;
199
+ latestAggregatedProfile?: AggregatedProfileTime;
200
+ latestAgentOrchestratedAt?: Date;
201
+ }
202
+ export interface ProfilingGroupDescription {
203
+ name?: string;
204
+ agentOrchestrationConfig?: AgentOrchestrationConfig;
205
+ arn?: string;
206
+ createdAt?: Date;
207
+ updatedAt?: Date;
208
+ profilingStatus?: ProfilingStatus;
209
+ computePlatform?: ComputePlatform | string;
210
+ tags?: Record<string, string>;
211
+ }
212
+ export interface CreateProfilingGroupResponse {
213
+ profilingGroup: ProfilingGroupDescription | undefined;
214
+ }
215
+ export interface DeleteProfilingGroupRequest {
216
+ profilingGroupName: string | undefined;
217
+ }
218
+ export interface DeleteProfilingGroupResponse {}
219
+ export interface DescribeProfilingGroupRequest {
220
+ profilingGroupName: string | undefined;
221
+ }
222
+ export interface DescribeProfilingGroupResponse {
223
+ profilingGroup: ProfilingGroupDescription | undefined;
224
+ }
225
+ export interface GetNotificationConfigurationRequest {
226
+ profilingGroupName: string | undefined;
227
+ }
228
+ export interface GetNotificationConfigurationResponse {
229
+ notificationConfiguration: NotificationConfiguration | undefined;
230
+ }
231
+ export interface GetPolicyRequest {
232
+ profilingGroupName: string | undefined;
233
+ }
234
+ export interface GetPolicyResponse {
235
+ policy: string | undefined;
236
+ revisionId: string | undefined;
237
+ }
238
+ export interface GetProfileRequest {
239
+ profilingGroupName: string | undefined;
240
+ startTime?: Date;
241
+ period?: string;
242
+ endTime?: Date;
243
+ maxDepth?: number;
244
+ accept?: string;
245
+ }
246
+ export interface GetProfileResponse {
247
+ profile: Uint8Array | undefined;
248
+ contentType: string | undefined;
249
+ contentEncoding?: string;
250
+ }
251
+ export interface GetRecommendationsRequest {
252
+ profilingGroupName: string | undefined;
253
+ startTime: Date | undefined;
254
+ endTime: Date | undefined;
255
+ locale?: string;
256
+ }
257
+ export interface Pattern {
258
+ id?: string;
259
+ name?: string;
260
+ description?: string;
261
+ resolutionSteps?: string;
262
+ targetFrames?: string[][];
263
+ thresholdPercent?: number;
264
+ countersToAggregate?: string[];
265
+ }
266
+ export interface Match {
267
+ targetFramesIndex?: number;
268
+ frameAddress?: string;
269
+ thresholdBreachValue?: number;
270
+ }
271
+ export interface Recommendation {
272
+ allMatchesCount: number | undefined;
273
+ allMatchesSum: number | undefined;
274
+ pattern: Pattern | undefined;
275
+ topMatches: Match[] | undefined;
276
+ startTime: Date | undefined;
277
+ endTime: Date | undefined;
278
+ }
279
+ export interface GetRecommendationsResponse {
280
+ profilingGroupName: string | undefined;
281
+ profileStartTime: Date | undefined;
282
+ profileEndTime: Date | undefined;
283
+ recommendations: Recommendation[] | undefined;
284
+ anomalies: Anomaly[] | undefined;
285
+ }
286
+ export interface ListFindingsReportsRequest {
287
+ profilingGroupName: string | undefined;
288
+ startTime: Date | undefined;
289
+ endTime: Date | undefined;
290
+ nextToken?: string;
291
+ maxResults?: number;
292
+ dailyReportsOnly?: boolean;
293
+ }
294
+ export interface ListFindingsReportsResponse {
295
+ findingsReportSummaries: FindingsReportSummary[] | undefined;
296
+ nextToken?: string;
297
+ }
298
+ export declare enum OrderBy {
299
+ TIMESTAMP_ASCENDING = "TimestampAscending",
300
+ TIMESTAMP_DESCENDING = "TimestampDescending",
301
+ }
302
+ export interface ListProfileTimesRequest {
303
+ profilingGroupName: string | undefined;
304
+ startTime: Date | undefined;
305
+ endTime: Date | undefined;
306
+ period: AggregationPeriod | string | undefined;
307
+ orderBy?: OrderBy | string;
308
+ maxResults?: number;
309
+ nextToken?: string;
310
+ }
311
+ export interface ProfileTime {
312
+ start?: Date;
313
+ }
314
+ export interface ListProfileTimesResponse {
315
+ profileTimes: ProfileTime[] | undefined;
316
+ nextToken?: string;
317
+ }
318
+ export interface ListProfilingGroupsRequest {
319
+ nextToken?: string;
320
+ maxResults?: number;
321
+ includeDescription?: boolean;
322
+ }
323
+ export interface ListProfilingGroupsResponse {
324
+ profilingGroupNames: string[] | undefined;
325
+ profilingGroups?: ProfilingGroupDescription[];
326
+ nextToken?: string;
327
+ }
328
+ export interface PostAgentProfileRequest {
329
+ profilingGroupName: string | undefined;
330
+ agentProfile: Uint8Array | undefined;
331
+ profileToken?: string;
332
+ contentType: string | undefined;
333
+ }
334
+ export interface PostAgentProfileResponse {}
335
+ export interface PutPermissionRequest {
336
+ profilingGroupName: string | undefined;
337
+ actionGroup: ActionGroup | string | undefined;
338
+ principals: string[] | undefined;
339
+ revisionId?: string;
340
+ }
341
+ export interface PutPermissionResponse {
342
+ policy: string | undefined;
343
+ revisionId: string | undefined;
344
+ }
345
+ export interface RemoveNotificationChannelRequest {
346
+ profilingGroupName: string | undefined;
347
+ channelId: string | undefined;
348
+ }
349
+ export interface RemoveNotificationChannelResponse {
350
+ notificationConfiguration?: NotificationConfiguration;
351
+ }
352
+ export interface RemovePermissionRequest {
353
+ profilingGroupName: string | undefined;
354
+ actionGroup: ActionGroup | string | undefined;
355
+ revisionId: string | undefined;
356
+ }
357
+ export interface RemovePermissionResponse {
358
+ policy: string | undefined;
359
+ revisionId: string | undefined;
360
+ }
361
+ export interface SubmitFeedbackRequest {
362
+ profilingGroupName: string | undefined;
363
+ anomalyInstanceId: string | undefined;
364
+ type: FeedbackType | string | undefined;
365
+ comment?: string;
366
+ }
367
+ export interface SubmitFeedbackResponse {}
368
+ export interface UpdateProfilingGroupRequest {
369
+ profilingGroupName: string | undefined;
370
+ agentOrchestrationConfig: AgentOrchestrationConfig | undefined;
371
+ }
372
+ export interface UpdateProfilingGroupResponse {
373
+ profilingGroup: ProfilingGroupDescription | undefined;
374
+ }
375
+ export interface TagResourceRequest {
376
+ resourceArn: string | undefined;
377
+ tags: Record<string, string> | undefined;
378
+ }
379
+ export interface TagResourceResponse {}
380
+ export interface UntagResourceRequest {
381
+ resourceArn: string | undefined;
382
+ tagKeys: string[] | undefined;
383
+ }
384
+ export interface UntagResourceResponse {}
385
+ export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
386
+ export declare const AddNotificationChannelsRequestFilterSensitiveLog: (
387
+ obj: AddNotificationChannelsRequest
388
+ ) => any;
389
+ export declare const NotificationConfigurationFilterSensitiveLog: (
390
+ obj: NotificationConfiguration
391
+ ) => any;
392
+ export declare const AddNotificationChannelsResponseFilterSensitiveLog: (
393
+ obj: AddNotificationChannelsResponse
394
+ ) => any;
395
+ export declare const AgentConfigurationFilterSensitiveLog: (
396
+ obj: AgentConfiguration
397
+ ) => any;
398
+ export declare const AgentOrchestrationConfigFilterSensitiveLog: (
399
+ obj: AgentOrchestrationConfig
400
+ ) => any;
401
+ export declare const AggregatedProfileTimeFilterSensitiveLog: (
402
+ obj: AggregatedProfileTime
403
+ ) => any;
404
+ export declare const UserFeedbackFilterSensitiveLog: (obj: UserFeedback) => any;
405
+ export declare const AnomalyInstanceFilterSensitiveLog: (
406
+ obj: AnomalyInstance
407
+ ) => any;
408
+ export declare const MetricFilterSensitiveLog: (obj: Metric) => any;
409
+ export declare const AnomalyFilterSensitiveLog: (obj: Anomaly) => any;
410
+ export declare const FrameMetricFilterSensitiveLog: (obj: FrameMetric) => any;
411
+ export declare const BatchGetFrameMetricDataRequestFilterSensitiveLog: (
412
+ obj: BatchGetFrameMetricDataRequest
413
+ ) => any;
414
+ export declare const TimestampStructureFilterSensitiveLog: (
415
+ obj: TimestampStructure
416
+ ) => any;
417
+ export declare const FrameMetricDatumFilterSensitiveLog: (
418
+ obj: FrameMetricDatum
419
+ ) => any;
420
+ export declare const BatchGetFrameMetricDataResponseFilterSensitiveLog: (
421
+ obj: BatchGetFrameMetricDataResponse
422
+ ) => any;
423
+ export declare const GetFindingsReportAccountSummaryRequestFilterSensitiveLog: (
424
+ obj: GetFindingsReportAccountSummaryRequest
425
+ ) => any;
426
+ export declare const FindingsReportSummaryFilterSensitiveLog: (
427
+ obj: FindingsReportSummary
428
+ ) => any;
429
+ export declare const GetFindingsReportAccountSummaryResponseFilterSensitiveLog: (
430
+ obj: GetFindingsReportAccountSummaryResponse
431
+ ) => any;
432
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
433
+ obj: ListTagsForResourceRequest
434
+ ) => any;
435
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
436
+ obj: ListTagsForResourceResponse
437
+ ) => any;
438
+ export declare const ConfigureAgentRequestFilterSensitiveLog: (
439
+ obj: ConfigureAgentRequest
440
+ ) => any;
441
+ export declare const ConfigureAgentResponseFilterSensitiveLog: (
442
+ obj: ConfigureAgentResponse
443
+ ) => any;
444
+ export declare const CreateProfilingGroupRequestFilterSensitiveLog: (
445
+ obj: CreateProfilingGroupRequest
446
+ ) => any;
447
+ export declare const ProfilingStatusFilterSensitiveLog: (
448
+ obj: ProfilingStatus
449
+ ) => any;
450
+ export declare const ProfilingGroupDescriptionFilterSensitiveLog: (
451
+ obj: ProfilingGroupDescription
452
+ ) => any;
453
+ export declare const CreateProfilingGroupResponseFilterSensitiveLog: (
454
+ obj: CreateProfilingGroupResponse
455
+ ) => any;
456
+ export declare const DeleteProfilingGroupRequestFilterSensitiveLog: (
457
+ obj: DeleteProfilingGroupRequest
458
+ ) => any;
459
+ export declare const DeleteProfilingGroupResponseFilterSensitiveLog: (
460
+ obj: DeleteProfilingGroupResponse
461
+ ) => any;
462
+ export declare const DescribeProfilingGroupRequestFilterSensitiveLog: (
463
+ obj: DescribeProfilingGroupRequest
464
+ ) => any;
465
+ export declare const DescribeProfilingGroupResponseFilterSensitiveLog: (
466
+ obj: DescribeProfilingGroupResponse
467
+ ) => any;
468
+ export declare const GetNotificationConfigurationRequestFilterSensitiveLog: (
469
+ obj: GetNotificationConfigurationRequest
470
+ ) => any;
471
+ export declare const GetNotificationConfigurationResponseFilterSensitiveLog: (
472
+ obj: GetNotificationConfigurationResponse
473
+ ) => any;
474
+ export declare const GetPolicyRequestFilterSensitiveLog: (
475
+ obj: GetPolicyRequest
476
+ ) => any;
477
+ export declare const GetPolicyResponseFilterSensitiveLog: (
478
+ obj: GetPolicyResponse
479
+ ) => any;
480
+ export declare const GetProfileRequestFilterSensitiveLog: (
481
+ obj: GetProfileRequest
482
+ ) => any;
483
+ export declare const GetProfileResponseFilterSensitiveLog: (
484
+ obj: GetProfileResponse
485
+ ) => any;
486
+ export declare const GetRecommendationsRequestFilterSensitiveLog: (
487
+ obj: GetRecommendationsRequest
488
+ ) => any;
489
+ export declare const PatternFilterSensitiveLog: (obj: Pattern) => any;
490
+ export declare const MatchFilterSensitiveLog: (obj: Match) => any;
491
+ export declare const RecommendationFilterSensitiveLog: (
492
+ obj: Recommendation
493
+ ) => any;
494
+ export declare const GetRecommendationsResponseFilterSensitiveLog: (
495
+ obj: GetRecommendationsResponse
496
+ ) => any;
497
+ export declare const ListFindingsReportsRequestFilterSensitiveLog: (
498
+ obj: ListFindingsReportsRequest
499
+ ) => any;
500
+ export declare const ListFindingsReportsResponseFilterSensitiveLog: (
501
+ obj: ListFindingsReportsResponse
502
+ ) => any;
503
+ export declare const ListProfileTimesRequestFilterSensitiveLog: (
504
+ obj: ListProfileTimesRequest
505
+ ) => any;
506
+ export declare const ProfileTimeFilterSensitiveLog: (obj: ProfileTime) => any;
507
+ export declare const ListProfileTimesResponseFilterSensitiveLog: (
508
+ obj: ListProfileTimesResponse
509
+ ) => any;
510
+ export declare const ListProfilingGroupsRequestFilterSensitiveLog: (
511
+ obj: ListProfilingGroupsRequest
512
+ ) => any;
513
+ export declare const ListProfilingGroupsResponseFilterSensitiveLog: (
514
+ obj: ListProfilingGroupsResponse
515
+ ) => any;
516
+ export declare const PostAgentProfileRequestFilterSensitiveLog: (
517
+ obj: PostAgentProfileRequest
518
+ ) => any;
519
+ export declare const PostAgentProfileResponseFilterSensitiveLog: (
520
+ obj: PostAgentProfileResponse
521
+ ) => any;
522
+ export declare const PutPermissionRequestFilterSensitiveLog: (
523
+ obj: PutPermissionRequest
524
+ ) => any;
525
+ export declare const PutPermissionResponseFilterSensitiveLog: (
526
+ obj: PutPermissionResponse
527
+ ) => any;
528
+ export declare const RemoveNotificationChannelRequestFilterSensitiveLog: (
529
+ obj: RemoveNotificationChannelRequest
530
+ ) => any;
531
+ export declare const RemoveNotificationChannelResponseFilterSensitiveLog: (
532
+ obj: RemoveNotificationChannelResponse
533
+ ) => any;
534
+ export declare const RemovePermissionRequestFilterSensitiveLog: (
535
+ obj: RemovePermissionRequest
536
+ ) => any;
537
+ export declare const RemovePermissionResponseFilterSensitiveLog: (
538
+ obj: RemovePermissionResponse
539
+ ) => any;
540
+ export declare const SubmitFeedbackRequestFilterSensitiveLog: (
541
+ obj: SubmitFeedbackRequest
542
+ ) => any;
543
+ export declare const SubmitFeedbackResponseFilterSensitiveLog: (
544
+ obj: SubmitFeedbackResponse
545
+ ) => any;
546
+ export declare const UpdateProfilingGroupRequestFilterSensitiveLog: (
547
+ obj: UpdateProfilingGroupRequest
548
+ ) => any;
549
+ export declare const UpdateProfilingGroupResponseFilterSensitiveLog: (
550
+ obj: UpdateProfilingGroupResponse
551
+ ) => any;
552
+ export declare const TagResourceRequestFilterSensitiveLog: (
553
+ obj: TagResourceRequest
554
+ ) => any;
555
+ export declare const TagResourceResponseFilterSensitiveLog: (
556
+ obj: TagResourceResponse
557
+ ) => any;
558
+ export declare const UntagResourceRequestFilterSensitiveLog: (
559
+ obj: UntagResourceRequest
560
+ ) => any;
561
+ export declare const UntagResourceResponseFilterSensitiveLog: (
562
+ obj: UntagResourceResponse
563
+ ) => any;