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