@aws-sdk/client-codeguruprofiler 3.128.0 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist-cjs/commands/AddNotificationChannelsCommand.js +2 -2
- package/dist-cjs/commands/BatchGetFrameMetricDataCommand.js +2 -2
- package/dist-cjs/commands/ConfigureAgentCommand.js +2 -2
- package/dist-cjs/commands/CreateProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeProfilingGroupCommand.js +2 -2
- package/dist-cjs/commands/GetFindingsReportAccountSummaryCommand.js +2 -2
- package/dist-cjs/commands/GetNotificationConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetPolicyCommand.js +2 -2
- package/dist-cjs/commands/GetProfileCommand.js +2 -2
- package/dist-cjs/commands/GetRecommendationsCommand.js +2 -2
- package/dist-cjs/commands/ListFindingsReportsCommand.js +2 -2
- package/dist-cjs/commands/ListProfileTimesCommand.js +2 -2
- package/dist-cjs/commands/ListProfilingGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PostAgentProfileCommand.js +2 -2
- package/dist-cjs/commands/PutPermissionCommand.js +2 -2
- package/dist-cjs/commands/RemoveNotificationChannelCommand.js +2 -2
- package/dist-cjs/commands/RemovePermissionCommand.js +2 -2
- package/dist-cjs/commands/SubmitFeedbackCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateProfilingGroupCommand.js +2 -2
- package/dist-cjs/models/models_0.js +262 -392
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/AddNotificationChannelsCommand.js +3 -3
- package/dist-es/commands/BatchGetFrameMetricDataCommand.js +3 -3
- package/dist-es/commands/ConfigureAgentCommand.js +3 -3
- package/dist-es/commands/CreateProfilingGroupCommand.js +3 -3
- package/dist-es/commands/DeleteProfilingGroupCommand.js +3 -3
- package/dist-es/commands/DescribeProfilingGroupCommand.js +3 -3
- package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +3 -3
- package/dist-es/commands/GetNotificationConfigurationCommand.js +3 -3
- package/dist-es/commands/GetPolicyCommand.js +3 -3
- package/dist-es/commands/GetProfileCommand.js +3 -3
- package/dist-es/commands/GetRecommendationsCommand.js +3 -3
- package/dist-es/commands/ListFindingsReportsCommand.js +3 -3
- package/dist-es/commands/ListProfileTimesCommand.js +3 -3
- package/dist-es/commands/ListProfilingGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PostAgentProfileCommand.js +3 -3
- package/dist-es/commands/PutPermissionCommand.js +3 -3
- package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -3
- package/dist-es/commands/RemovePermissionCommand.js +3 -3
- package/dist-es/commands/SubmitFeedbackCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateProfilingGroupCommand.js +3 -3
- package/dist-es/models/models_0.js +65 -260
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +260 -390
- package/dist-types/ts3.4/models/models_0.d.ts +130 -260
- package/package.json +9 -9
|
@@ -29,12 +29,6 @@ export interface Channel {
|
|
|
29
29
|
*/
|
|
30
30
|
eventPublishers: (EventPublisher | string)[] | undefined;
|
|
31
31
|
}
|
|
32
|
-
export declare namespace Channel {
|
|
33
|
-
/**
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
|
-
const filterSensitiveLog: (obj: Channel) => any;
|
|
37
|
-
}
|
|
38
32
|
/**
|
|
39
33
|
* <p>The structure representing the AddNotificationChannelsRequest.</p>
|
|
40
34
|
*/
|
|
@@ -48,12 +42,6 @@ export interface AddNotificationChannelsRequest {
|
|
|
48
42
|
*/
|
|
49
43
|
channels: Channel[] | undefined;
|
|
50
44
|
}
|
|
51
|
-
export declare namespace AddNotificationChannelsRequest {
|
|
52
|
-
/**
|
|
53
|
-
* @internal
|
|
54
|
-
*/
|
|
55
|
-
const filterSensitiveLog: (obj: AddNotificationChannelsRequest) => any;
|
|
56
|
-
}
|
|
57
45
|
/**
|
|
58
46
|
* <p>The configuration for notifications stored for each profiling group. This includes up to
|
|
59
47
|
* to two channels and a list of event publishers associated with each channel.</p>
|
|
@@ -65,12 +53,6 @@ export interface NotificationConfiguration {
|
|
|
65
53
|
*/
|
|
66
54
|
channels?: Channel[];
|
|
67
55
|
}
|
|
68
|
-
export declare namespace NotificationConfiguration {
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
|
-
const filterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
73
|
-
}
|
|
74
56
|
/**
|
|
75
57
|
* <p>The structure representing the AddNotificationChannelsResponse.</p>
|
|
76
58
|
*/
|
|
@@ -80,12 +62,6 @@ export interface AddNotificationChannelsResponse {
|
|
|
80
62
|
*/
|
|
81
63
|
notificationConfiguration?: NotificationConfiguration;
|
|
82
64
|
}
|
|
83
|
-
export declare namespace AddNotificationChannelsResponse {
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
const filterSensitiveLog: (obj: AddNotificationChannelsResponse) => any;
|
|
88
|
-
}
|
|
89
65
|
/**
|
|
90
66
|
* <p>The requested operation would cause a conflict with the current state
|
|
91
67
|
* of a service resource associated with the request. Resolve the conflict
|
|
@@ -253,12 +229,6 @@ export interface AgentConfiguration {
|
|
|
253
229
|
*/
|
|
254
230
|
agentParameters?: Record<string, string>;
|
|
255
231
|
}
|
|
256
|
-
export declare namespace AgentConfiguration {
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
const filterSensitiveLog: (obj: AgentConfiguration) => any;
|
|
261
|
-
}
|
|
262
232
|
/**
|
|
263
233
|
* <p>
|
|
264
234
|
* Specifies whether profiling is enabled or disabled for a profiling group. It
|
|
@@ -277,12 +247,6 @@ export interface AgentOrchestrationConfig {
|
|
|
277
247
|
*/
|
|
278
248
|
profilingEnabled: boolean | undefined;
|
|
279
249
|
}
|
|
280
|
-
export declare namespace AgentOrchestrationConfig {
|
|
281
|
-
/**
|
|
282
|
-
* @internal
|
|
283
|
-
*/
|
|
284
|
-
const filterSensitiveLog: (obj: AgentOrchestrationConfig) => any;
|
|
285
|
-
}
|
|
286
250
|
export declare enum AggregationPeriod {
|
|
287
251
|
/**
|
|
288
252
|
* Period of one day.
|
|
@@ -345,12 +309,6 @@ export interface AggregatedProfileTime {
|
|
|
345
309
|
*/
|
|
346
310
|
period?: AggregationPeriod | string;
|
|
347
311
|
}
|
|
348
|
-
export declare namespace AggregatedProfileTime {
|
|
349
|
-
/**
|
|
350
|
-
* @internal
|
|
351
|
-
*/
|
|
352
|
-
const filterSensitiveLog: (obj: AggregatedProfileTime) => any;
|
|
353
|
-
}
|
|
354
312
|
export declare enum FeedbackType {
|
|
355
313
|
/**
|
|
356
314
|
* Profiler recommendation flagged as not useful.
|
|
@@ -372,12 +330,6 @@ export interface UserFeedback {
|
|
|
372
330
|
*/
|
|
373
331
|
type: FeedbackType | string | undefined;
|
|
374
332
|
}
|
|
375
|
-
export declare namespace UserFeedback {
|
|
376
|
-
/**
|
|
377
|
-
* @internal
|
|
378
|
-
*/
|
|
379
|
-
const filterSensitiveLog: (obj: UserFeedback) => any;
|
|
380
|
-
}
|
|
381
333
|
/**
|
|
382
334
|
* <p>The specific duration in which the metric is flagged as anomalous.</p>
|
|
383
335
|
*/
|
|
@@ -411,12 +363,6 @@ export interface AnomalyInstance {
|
|
|
411
363
|
*/
|
|
412
364
|
userFeedback?: UserFeedback;
|
|
413
365
|
}
|
|
414
|
-
export declare namespace AnomalyInstance {
|
|
415
|
-
/**
|
|
416
|
-
* @internal
|
|
417
|
-
*/
|
|
418
|
-
const filterSensitiveLog: (obj: AnomalyInstance) => any;
|
|
419
|
-
}
|
|
420
366
|
export declare enum MetricType {
|
|
421
367
|
/**
|
|
422
368
|
* Metric value aggregated for all instances of a frame name in a profile relative to the root frame.
|
|
@@ -454,12 +400,6 @@ export interface Metric {
|
|
|
454
400
|
*/
|
|
455
401
|
threadStates: string[] | undefined;
|
|
456
402
|
}
|
|
457
|
-
export declare namespace Metric {
|
|
458
|
-
/**
|
|
459
|
-
* @internal
|
|
460
|
-
*/
|
|
461
|
-
const filterSensitiveLog: (obj: Metric) => any;
|
|
462
|
-
}
|
|
463
403
|
/**
|
|
464
404
|
* <p>
|
|
465
405
|
* Details about an anomaly in a specific metric of application profile. The anomaly is detected using
|
|
@@ -486,12 +426,6 @@ export interface Anomaly {
|
|
|
486
426
|
*/
|
|
487
427
|
instances: AnomalyInstance[] | undefined;
|
|
488
428
|
}
|
|
489
|
-
export declare namespace Anomaly {
|
|
490
|
-
/**
|
|
491
|
-
* @internal
|
|
492
|
-
*/
|
|
493
|
-
const filterSensitiveLog: (obj: Anomaly) => any;
|
|
494
|
-
}
|
|
495
429
|
/**
|
|
496
430
|
* <p>
|
|
497
431
|
* The frame name, metric type, and thread states. These are used
|
|
@@ -514,12 +448,6 @@ export interface FrameMetric {
|
|
|
514
448
|
*/
|
|
515
449
|
threadStates: string[] | undefined;
|
|
516
450
|
}
|
|
517
|
-
export declare namespace FrameMetric {
|
|
518
|
-
/**
|
|
519
|
-
* @internal
|
|
520
|
-
*/
|
|
521
|
-
const filterSensitiveLog: (obj: FrameMetric) => any;
|
|
522
|
-
}
|
|
523
451
|
/**
|
|
524
452
|
* <p>The structure representing the BatchGetFrameMetricDataRequest.</p>
|
|
525
453
|
*/
|
|
@@ -590,12 +518,6 @@ export interface BatchGetFrameMetricDataRequest {
|
|
|
590
518
|
*/
|
|
591
519
|
frameMetrics?: FrameMetric[];
|
|
592
520
|
}
|
|
593
|
-
export declare namespace BatchGetFrameMetricDataRequest {
|
|
594
|
-
/**
|
|
595
|
-
* @internal
|
|
596
|
-
*/
|
|
597
|
-
const filterSensitiveLog: (obj: BatchGetFrameMetricDataRequest) => any;
|
|
598
|
-
}
|
|
599
521
|
/**
|
|
600
522
|
* <p>
|
|
601
523
|
* A data type that contains a <code>Timestamp</code> object. This is specified
|
|
@@ -613,12 +535,6 @@ export interface TimestampStructure {
|
|
|
613
535
|
*/
|
|
614
536
|
value: Date | undefined;
|
|
615
537
|
}
|
|
616
|
-
export declare namespace TimestampStructure {
|
|
617
|
-
/**
|
|
618
|
-
* @internal
|
|
619
|
-
*/
|
|
620
|
-
const filterSensitiveLog: (obj: TimestampStructure) => any;
|
|
621
|
-
}
|
|
622
538
|
/**
|
|
623
539
|
* <p>
|
|
624
540
|
* Information about a frame metric and its values.
|
|
@@ -638,12 +554,6 @@ export interface FrameMetricDatum {
|
|
|
638
554
|
*/
|
|
639
555
|
values: number[] | undefined;
|
|
640
556
|
}
|
|
641
|
-
export declare namespace FrameMetricDatum {
|
|
642
|
-
/**
|
|
643
|
-
* @internal
|
|
644
|
-
*/
|
|
645
|
-
const filterSensitiveLog: (obj: FrameMetricDatum) => any;
|
|
646
|
-
}
|
|
647
557
|
/**
|
|
648
558
|
* <p>The structure representing the BatchGetFrameMetricDataResponse.</p>
|
|
649
559
|
*/
|
|
@@ -709,12 +619,6 @@ export interface BatchGetFrameMetricDataResponse {
|
|
|
709
619
|
*/
|
|
710
620
|
frameMetricData: FrameMetricDatum[] | undefined;
|
|
711
621
|
}
|
|
712
|
-
export declare namespace BatchGetFrameMetricDataResponse {
|
|
713
|
-
/**
|
|
714
|
-
* @internal
|
|
715
|
-
*/
|
|
716
|
-
const filterSensitiveLog: (obj: BatchGetFrameMetricDataResponse) => any;
|
|
717
|
-
}
|
|
718
622
|
/**
|
|
719
623
|
* <p>The structure representing the GetFindingsReportAccountSummaryRequest.</p>
|
|
720
624
|
*/
|
|
@@ -745,12 +649,6 @@ export interface GetFindingsReportAccountSummaryRequest {
|
|
|
745
649
|
*/
|
|
746
650
|
dailyReportsOnly?: boolean;
|
|
747
651
|
}
|
|
748
|
-
export declare namespace GetFindingsReportAccountSummaryRequest {
|
|
749
|
-
/**
|
|
750
|
-
* @internal
|
|
751
|
-
*/
|
|
752
|
-
const filterSensitiveLog: (obj: GetFindingsReportAccountSummaryRequest) => any;
|
|
753
|
-
}
|
|
754
652
|
/**
|
|
755
653
|
* <p>
|
|
756
654
|
* Information about potential recommendations that might be created from the
|
|
@@ -787,12 +685,6 @@ export interface FindingsReportSummary {
|
|
|
787
685
|
*/
|
|
788
686
|
totalNumberOfFindings?: number;
|
|
789
687
|
}
|
|
790
|
-
export declare namespace FindingsReportSummary {
|
|
791
|
-
/**
|
|
792
|
-
* @internal
|
|
793
|
-
*/
|
|
794
|
-
const filterSensitiveLog: (obj: FindingsReportSummary) => any;
|
|
795
|
-
}
|
|
796
688
|
/**
|
|
797
689
|
* <p>The structure representing the GetFindingsReportAccountSummaryResponse.</p>
|
|
798
690
|
*/
|
|
@@ -813,12 +705,6 @@ export interface GetFindingsReportAccountSummaryResponse {
|
|
|
813
705
|
*/
|
|
814
706
|
nextToken?: string;
|
|
815
707
|
}
|
|
816
|
-
export declare namespace GetFindingsReportAccountSummaryResponse {
|
|
817
|
-
/**
|
|
818
|
-
* @internal
|
|
819
|
-
*/
|
|
820
|
-
const filterSensitiveLog: (obj: GetFindingsReportAccountSummaryResponse) => any;
|
|
821
|
-
}
|
|
822
708
|
export interface ListTagsForResourceRequest {
|
|
823
709
|
/**
|
|
824
710
|
* <p>
|
|
@@ -827,12 +713,6 @@ export interface ListTagsForResourceRequest {
|
|
|
827
713
|
*/
|
|
828
714
|
resourceArn: string | undefined;
|
|
829
715
|
}
|
|
830
|
-
export declare namespace ListTagsForResourceRequest {
|
|
831
|
-
/**
|
|
832
|
-
* @internal
|
|
833
|
-
*/
|
|
834
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
835
|
-
}
|
|
836
716
|
export interface ListTagsForResourceResponse {
|
|
837
717
|
/**
|
|
838
718
|
* <p>
|
|
@@ -842,12 +722,6 @@ export interface ListTagsForResourceResponse {
|
|
|
842
722
|
*/
|
|
843
723
|
tags?: Record<string, string>;
|
|
844
724
|
}
|
|
845
|
-
export declare namespace ListTagsForResourceResponse {
|
|
846
|
-
/**
|
|
847
|
-
* @internal
|
|
848
|
-
*/
|
|
849
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
850
|
-
}
|
|
851
725
|
export declare enum MetadataField {
|
|
852
726
|
/**
|
|
853
727
|
* Unique identifier for the agent instance.
|
|
@@ -955,12 +829,6 @@ export interface ConfigureAgentRequest {
|
|
|
955
829
|
*/
|
|
956
830
|
metadata?: Record<string, string>;
|
|
957
831
|
}
|
|
958
|
-
export declare namespace ConfigureAgentRequest {
|
|
959
|
-
/**
|
|
960
|
-
* @internal
|
|
961
|
-
*/
|
|
962
|
-
const filterSensitiveLog: (obj: ConfigureAgentRequest) => any;
|
|
963
|
-
}
|
|
964
832
|
/**
|
|
965
833
|
* <p>The structure representing the configureAgentResponse.</p>
|
|
966
834
|
*/
|
|
@@ -975,12 +843,6 @@ export interface ConfigureAgentResponse {
|
|
|
975
843
|
*/
|
|
976
844
|
configuration: AgentConfiguration | undefined;
|
|
977
845
|
}
|
|
978
|
-
export declare namespace ConfigureAgentResponse {
|
|
979
|
-
/**
|
|
980
|
-
* @internal
|
|
981
|
-
*/
|
|
982
|
-
const filterSensitiveLog: (obj: ConfigureAgentResponse) => any;
|
|
983
|
-
}
|
|
984
846
|
export declare enum ComputePlatform {
|
|
985
847
|
/**
|
|
986
848
|
* Compute platform meant to used for AWS Lambda.
|
|
@@ -1026,12 +888,6 @@ export interface CreateProfilingGroupRequest {
|
|
|
1026
888
|
*/
|
|
1027
889
|
tags?: Record<string, string>;
|
|
1028
890
|
}
|
|
1029
|
-
export declare namespace CreateProfilingGroupRequest {
|
|
1030
|
-
/**
|
|
1031
|
-
* @internal
|
|
1032
|
-
*/
|
|
1033
|
-
const filterSensitiveLog: (obj: CreateProfilingGroupRequest) => any;
|
|
1034
|
-
}
|
|
1035
891
|
/**
|
|
1036
892
|
* <p>
|
|
1037
893
|
* Profiling status includes information about the last time a profile agent pinged back,
|
|
@@ -1062,12 +918,6 @@ export interface ProfilingStatus {
|
|
|
1062
918
|
*/
|
|
1063
919
|
latestAgentOrchestratedAt?: Date;
|
|
1064
920
|
}
|
|
1065
|
-
export declare namespace ProfilingStatus {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
const filterSensitiveLog: (obj: ProfilingStatus) => any;
|
|
1070
|
-
}
|
|
1071
921
|
/**
|
|
1072
922
|
* <p>
|
|
1073
923
|
* Contains information about a profiling group.
|
|
@@ -1133,12 +983,6 @@ export interface ProfilingGroupDescription {
|
|
|
1133
983
|
*/
|
|
1134
984
|
tags?: Record<string, string>;
|
|
1135
985
|
}
|
|
1136
|
-
export declare namespace ProfilingGroupDescription {
|
|
1137
|
-
/**
|
|
1138
|
-
* @internal
|
|
1139
|
-
*/
|
|
1140
|
-
const filterSensitiveLog: (obj: ProfilingGroupDescription) => any;
|
|
1141
|
-
}
|
|
1142
986
|
/**
|
|
1143
987
|
* <p>The structure representing the createProfilingGroupResponse.</p>
|
|
1144
988
|
*/
|
|
@@ -1151,12 +995,6 @@ export interface CreateProfilingGroupResponse {
|
|
|
1151
995
|
*/
|
|
1152
996
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
1153
997
|
}
|
|
1154
|
-
export declare namespace CreateProfilingGroupResponse {
|
|
1155
|
-
/**
|
|
1156
|
-
* @internal
|
|
1157
|
-
*/
|
|
1158
|
-
const filterSensitiveLog: (obj: CreateProfilingGroupResponse) => any;
|
|
1159
|
-
}
|
|
1160
998
|
/**
|
|
1161
999
|
* <p>The structure representing the deleteProfilingGroupRequest.</p>
|
|
1162
1000
|
*/
|
|
@@ -1166,23 +1004,11 @@ export interface DeleteProfilingGroupRequest {
|
|
|
1166
1004
|
*/
|
|
1167
1005
|
profilingGroupName: string | undefined;
|
|
1168
1006
|
}
|
|
1169
|
-
export declare namespace DeleteProfilingGroupRequest {
|
|
1170
|
-
/**
|
|
1171
|
-
* @internal
|
|
1172
|
-
*/
|
|
1173
|
-
const filterSensitiveLog: (obj: DeleteProfilingGroupRequest) => any;
|
|
1174
|
-
}
|
|
1175
1007
|
/**
|
|
1176
1008
|
* <p>The structure representing the deleteProfilingGroupResponse.</p>
|
|
1177
1009
|
*/
|
|
1178
1010
|
export interface DeleteProfilingGroupResponse {
|
|
1179
1011
|
}
|
|
1180
|
-
export declare namespace DeleteProfilingGroupResponse {
|
|
1181
|
-
/**
|
|
1182
|
-
* @internal
|
|
1183
|
-
*/
|
|
1184
|
-
const filterSensitiveLog: (obj: DeleteProfilingGroupResponse) => any;
|
|
1185
|
-
}
|
|
1186
1012
|
/**
|
|
1187
1013
|
* <p>The structure representing the describeProfilingGroupRequest.</p>
|
|
1188
1014
|
*/
|
|
@@ -1194,12 +1020,6 @@ export interface DescribeProfilingGroupRequest {
|
|
|
1194
1020
|
*/
|
|
1195
1021
|
profilingGroupName: string | undefined;
|
|
1196
1022
|
}
|
|
1197
|
-
export declare namespace DescribeProfilingGroupRequest {
|
|
1198
|
-
/**
|
|
1199
|
-
* @internal
|
|
1200
|
-
*/
|
|
1201
|
-
const filterSensitiveLog: (obj: DescribeProfilingGroupRequest) => any;
|
|
1202
|
-
}
|
|
1203
1023
|
/**
|
|
1204
1024
|
* <p>The structure representing the describeProfilingGroupResponse.</p>
|
|
1205
1025
|
*/
|
|
@@ -1214,12 +1034,6 @@ export interface DescribeProfilingGroupResponse {
|
|
|
1214
1034
|
*/
|
|
1215
1035
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
1216
1036
|
}
|
|
1217
|
-
export declare namespace DescribeProfilingGroupResponse {
|
|
1218
|
-
/**
|
|
1219
|
-
* @internal
|
|
1220
|
-
*/
|
|
1221
|
-
const filterSensitiveLog: (obj: DescribeProfilingGroupResponse) => any;
|
|
1222
|
-
}
|
|
1223
1037
|
/**
|
|
1224
1038
|
* <p>The structure representing the GetNotificationConfigurationRequest.</p>
|
|
1225
1039
|
*/
|
|
@@ -1229,12 +1043,6 @@ export interface GetNotificationConfigurationRequest {
|
|
|
1229
1043
|
*/
|
|
1230
1044
|
profilingGroupName: string | undefined;
|
|
1231
1045
|
}
|
|
1232
|
-
export declare namespace GetNotificationConfigurationRequest {
|
|
1233
|
-
/**
|
|
1234
|
-
* @internal
|
|
1235
|
-
*/
|
|
1236
|
-
const filterSensitiveLog: (obj: GetNotificationConfigurationRequest) => any;
|
|
1237
|
-
}
|
|
1238
1046
|
/**
|
|
1239
1047
|
* <p>The structure representing the GetNotificationConfigurationResponse.</p>
|
|
1240
1048
|
*/
|
|
@@ -1244,12 +1052,6 @@ export interface GetNotificationConfigurationResponse {
|
|
|
1244
1052
|
*/
|
|
1245
1053
|
notificationConfiguration: NotificationConfiguration | undefined;
|
|
1246
1054
|
}
|
|
1247
|
-
export declare namespace GetNotificationConfigurationResponse {
|
|
1248
|
-
/**
|
|
1249
|
-
* @internal
|
|
1250
|
-
*/
|
|
1251
|
-
const filterSensitiveLog: (obj: GetNotificationConfigurationResponse) => any;
|
|
1252
|
-
}
|
|
1253
1055
|
/**
|
|
1254
1056
|
* <p>
|
|
1255
1057
|
* The structure representing the <code>getPolicyRequest</code>.
|
|
@@ -1261,12 +1063,6 @@ export interface GetPolicyRequest {
|
|
|
1261
1063
|
*/
|
|
1262
1064
|
profilingGroupName: string | undefined;
|
|
1263
1065
|
}
|
|
1264
|
-
export declare namespace GetPolicyRequest {
|
|
1265
|
-
/**
|
|
1266
|
-
* @internal
|
|
1267
|
-
*/
|
|
1268
|
-
const filterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
1269
|
-
}
|
|
1270
1066
|
/**
|
|
1271
1067
|
* <p>The structure representing the <code>getPolicyResponse</code>.</p>
|
|
1272
1068
|
*/
|
|
@@ -1280,12 +1076,6 @@ export interface GetPolicyResponse {
|
|
|
1280
1076
|
*/
|
|
1281
1077
|
revisionId: string | undefined;
|
|
1282
1078
|
}
|
|
1283
|
-
export declare namespace GetPolicyResponse {
|
|
1284
|
-
/**
|
|
1285
|
-
* @internal
|
|
1286
|
-
*/
|
|
1287
|
-
const filterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
1288
|
-
}
|
|
1289
1079
|
/**
|
|
1290
1080
|
* <p>The structure representing the getProfileRequest.</p>
|
|
1291
1081
|
*/
|
|
@@ -1364,12 +1154,6 @@ export interface GetProfileRequest {
|
|
|
1364
1154
|
*/
|
|
1365
1155
|
accept?: string;
|
|
1366
1156
|
}
|
|
1367
|
-
export declare namespace GetProfileRequest {
|
|
1368
|
-
/**
|
|
1369
|
-
* @internal
|
|
1370
|
-
*/
|
|
1371
|
-
const filterSensitiveLog: (obj: GetProfileRequest) => any;
|
|
1372
|
-
}
|
|
1373
1157
|
/**
|
|
1374
1158
|
* <p>The structure representing the getProfileResponse.</p>
|
|
1375
1159
|
*/
|
|
@@ -1389,12 +1173,6 @@ export interface GetProfileResponse {
|
|
|
1389
1173
|
*/
|
|
1390
1174
|
contentEncoding?: string;
|
|
1391
1175
|
}
|
|
1392
|
-
export declare namespace GetProfileResponse {
|
|
1393
|
-
/**
|
|
1394
|
-
* @internal
|
|
1395
|
-
*/
|
|
1396
|
-
const filterSensitiveLog: (obj: GetProfileResponse) => any;
|
|
1397
|
-
}
|
|
1398
1176
|
/**
|
|
1399
1177
|
* <p>The structure representing the GetRecommendationsRequest.</p>
|
|
1400
1178
|
*/
|
|
@@ -1488,12 +1266,6 @@ export interface GetRecommendationsRequest {
|
|
|
1488
1266
|
*/
|
|
1489
1267
|
locale?: string;
|
|
1490
1268
|
}
|
|
1491
|
-
export declare namespace GetRecommendationsRequest {
|
|
1492
|
-
/**
|
|
1493
|
-
* @internal
|
|
1494
|
-
*/
|
|
1495
|
-
const filterSensitiveLog: (obj: GetRecommendationsRequest) => any;
|
|
1496
|
-
}
|
|
1497
1269
|
/**
|
|
1498
1270
|
* <p>
|
|
1499
1271
|
* A set of rules used to make a recommendation during an analysis.
|
|
@@ -1539,12 +1311,6 @@ export interface Pattern {
|
|
|
1539
1311
|
*/
|
|
1540
1312
|
countersToAggregate?: string[];
|
|
1541
1313
|
}
|
|
1542
|
-
export declare namespace Pattern {
|
|
1543
|
-
/**
|
|
1544
|
-
* @internal
|
|
1545
|
-
*/
|
|
1546
|
-
const filterSensitiveLog: (obj: Pattern) => any;
|
|
1547
|
-
}
|
|
1548
1314
|
/**
|
|
1549
1315
|
* <p>The part of a profile that contains a recommendation found during analysis.</p>
|
|
1550
1316
|
*/
|
|
@@ -1562,12 +1328,6 @@ export interface Match {
|
|
|
1562
1328
|
*/
|
|
1563
1329
|
thresholdBreachValue?: number;
|
|
1564
1330
|
}
|
|
1565
|
-
export declare namespace Match {
|
|
1566
|
-
/**
|
|
1567
|
-
* @internal
|
|
1568
|
-
*/
|
|
1569
|
-
const filterSensitiveLog: (obj: Match) => any;
|
|
1570
|
-
}
|
|
1571
1331
|
/**
|
|
1572
1332
|
* <p>A potential improvement that was found from analyzing the profiling data.</p>
|
|
1573
1333
|
*/
|
|
@@ -1603,12 +1363,6 @@ export interface Recommendation {
|
|
|
1603
1363
|
*/
|
|
1604
1364
|
endTime: Date | undefined;
|
|
1605
1365
|
}
|
|
1606
|
-
export declare namespace Recommendation {
|
|
1607
|
-
/**
|
|
1608
|
-
* @internal
|
|
1609
|
-
*/
|
|
1610
|
-
const filterSensitiveLog: (obj: Recommendation) => any;
|
|
1611
|
-
}
|
|
1612
1366
|
/**
|
|
1613
1367
|
* <p>The structure representing the GetRecommendationsResponse.</p>
|
|
1614
1368
|
*/
|
|
@@ -1644,12 +1398,6 @@ export interface GetRecommendationsResponse {
|
|
|
1644
1398
|
*/
|
|
1645
1399
|
anomalies: Anomaly[] | undefined;
|
|
1646
1400
|
}
|
|
1647
|
-
export declare namespace GetRecommendationsResponse {
|
|
1648
|
-
/**
|
|
1649
|
-
* @internal
|
|
1650
|
-
*/
|
|
1651
|
-
const filterSensitiveLog: (obj: GetRecommendationsResponse) => any;
|
|
1652
|
-
}
|
|
1653
1401
|
/**
|
|
1654
1402
|
* <p>The structure representing the ListFindingsReportsRequest.</p>
|
|
1655
1403
|
*/
|
|
@@ -1703,12 +1451,6 @@ export interface ListFindingsReportsRequest {
|
|
|
1703
1451
|
*/
|
|
1704
1452
|
dailyReportsOnly?: boolean;
|
|
1705
1453
|
}
|
|
1706
|
-
export declare namespace ListFindingsReportsRequest {
|
|
1707
|
-
/**
|
|
1708
|
-
* @internal
|
|
1709
|
-
*/
|
|
1710
|
-
const filterSensitiveLog: (obj: ListFindingsReportsRequest) => any;
|
|
1711
|
-
}
|
|
1712
1454
|
/**
|
|
1713
1455
|
* <p>The structure representing the ListFindingsReportsResponse.</p>
|
|
1714
1456
|
*/
|
|
@@ -1725,12 +1467,6 @@ export interface ListFindingsReportsResponse {
|
|
|
1725
1467
|
*/
|
|
1726
1468
|
nextToken?: string;
|
|
1727
1469
|
}
|
|
1728
|
-
export declare namespace ListFindingsReportsResponse {
|
|
1729
|
-
/**
|
|
1730
|
-
* @internal
|
|
1731
|
-
*/
|
|
1732
|
-
const filterSensitiveLog: (obj: ListFindingsReportsResponse) => any;
|
|
1733
|
-
}
|
|
1734
1470
|
export declare enum OrderBy {
|
|
1735
1471
|
/**
|
|
1736
1472
|
* Order by timestamp in ascending order.
|
|
@@ -1810,12 +1546,6 @@ export interface ListProfileTimesRequest {
|
|
|
1810
1546
|
*/
|
|
1811
1547
|
nextToken?: string;
|
|
1812
1548
|
}
|
|
1813
|
-
export declare namespace ListProfileTimesRequest {
|
|
1814
|
-
/**
|
|
1815
|
-
* @internal
|
|
1816
|
-
*/
|
|
1817
|
-
const filterSensitiveLog: (obj: ListProfileTimesRequest) => any;
|
|
1818
|
-
}
|
|
1819
1549
|
/**
|
|
1820
1550
|
* <p>
|
|
1821
1551
|
* Contains the start time of a profile.
|
|
@@ -1829,12 +1559,6 @@ export interface ProfileTime {
|
|
|
1829
1559
|
*/
|
|
1830
1560
|
start?: Date;
|
|
1831
1561
|
}
|
|
1832
|
-
export declare namespace ProfileTime {
|
|
1833
|
-
/**
|
|
1834
|
-
* @internal
|
|
1835
|
-
*/
|
|
1836
|
-
const filterSensitiveLog: (obj: ProfileTime) => any;
|
|
1837
|
-
}
|
|
1838
1562
|
/**
|
|
1839
1563
|
* <p>The structure representing the listProfileTimesResponse.</p>
|
|
1840
1564
|
*/
|
|
@@ -1853,12 +1577,6 @@ export interface ListProfileTimesResponse {
|
|
|
1853
1577
|
*/
|
|
1854
1578
|
nextToken?: string;
|
|
1855
1579
|
}
|
|
1856
|
-
export declare namespace ListProfileTimesResponse {
|
|
1857
|
-
/**
|
|
1858
|
-
* @internal
|
|
1859
|
-
*/
|
|
1860
|
-
const filterSensitiveLog: (obj: ListProfileTimesResponse) => any;
|
|
1861
|
-
}
|
|
1862
1580
|
/**
|
|
1863
1581
|
* <p>The structure representing the listProfilingGroupsRequest.</p>
|
|
1864
1582
|
*/
|
|
@@ -1896,12 +1614,6 @@ export interface ListProfilingGroupsRequest {
|
|
|
1896
1614
|
*/
|
|
1897
1615
|
includeDescription?: boolean;
|
|
1898
1616
|
}
|
|
1899
|
-
export declare namespace ListProfilingGroupsRequest {
|
|
1900
|
-
/**
|
|
1901
|
-
* @internal
|
|
1902
|
-
*/
|
|
1903
|
-
const filterSensitiveLog: (obj: ListProfilingGroupsRequest) => any;
|
|
1904
|
-
}
|
|
1905
1617
|
/**
|
|
1906
1618
|
* <p>The structure representing the listProfilingGroupsResponse.</p>
|
|
1907
1619
|
*/
|
|
@@ -1939,12 +1651,6 @@ export interface ListProfilingGroupsResponse {
|
|
|
1939
1651
|
*/
|
|
1940
1652
|
nextToken?: string;
|
|
1941
1653
|
}
|
|
1942
|
-
export declare namespace ListProfilingGroupsResponse {
|
|
1943
|
-
/**
|
|
1944
|
-
* @internal
|
|
1945
|
-
*/
|
|
1946
|
-
const filterSensitiveLog: (obj: ListProfilingGroupsResponse) => any;
|
|
1947
|
-
}
|
|
1948
1654
|
/**
|
|
1949
1655
|
* <p>The structure representing the postAgentProfileRequest.</p>
|
|
1950
1656
|
*/
|
|
@@ -1991,23 +1697,11 @@ export interface PostAgentProfileRequest {
|
|
|
1991
1697
|
*/
|
|
1992
1698
|
contentType: string | undefined;
|
|
1993
1699
|
}
|
|
1994
|
-
export declare namespace PostAgentProfileRequest {
|
|
1995
|
-
/**
|
|
1996
|
-
* @internal
|
|
1997
|
-
*/
|
|
1998
|
-
const filterSensitiveLog: (obj: PostAgentProfileRequest) => any;
|
|
1999
|
-
}
|
|
2000
1700
|
/**
|
|
2001
1701
|
* <p>The structure representing the postAgentProfileResponse.</p>
|
|
2002
1702
|
*/
|
|
2003
1703
|
export interface PostAgentProfileResponse {
|
|
2004
1704
|
}
|
|
2005
|
-
export declare namespace PostAgentProfileResponse {
|
|
2006
|
-
/**
|
|
2007
|
-
* @internal
|
|
2008
|
-
*/
|
|
2009
|
-
const filterSensitiveLog: (obj: PostAgentProfileResponse) => any;
|
|
2010
|
-
}
|
|
2011
1705
|
/**
|
|
2012
1706
|
* <p>The structure representing the <code>putPermissionRequest</code>.</p>
|
|
2013
1707
|
*/
|
|
@@ -2042,12 +1736,6 @@ export interface PutPermissionRequest {
|
|
|
2042
1736
|
*/
|
|
2043
1737
|
revisionId?: string;
|
|
2044
1738
|
}
|
|
2045
|
-
export declare namespace PutPermissionRequest {
|
|
2046
|
-
/**
|
|
2047
|
-
* @internal
|
|
2048
|
-
*/
|
|
2049
|
-
const filterSensitiveLog: (obj: PutPermissionRequest) => any;
|
|
2050
|
-
}
|
|
2051
1739
|
/**
|
|
2052
1740
|
* <p>The structure representing the <code>putPermissionResponse</code>.</p>
|
|
2053
1741
|
*/
|
|
@@ -2066,12 +1754,6 @@ export interface PutPermissionResponse {
|
|
|
2066
1754
|
*/
|
|
2067
1755
|
revisionId: string | undefined;
|
|
2068
1756
|
}
|
|
2069
|
-
export declare namespace PutPermissionResponse {
|
|
2070
|
-
/**
|
|
2071
|
-
* @internal
|
|
2072
|
-
*/
|
|
2073
|
-
const filterSensitiveLog: (obj: PutPermissionResponse) => any;
|
|
2074
|
-
}
|
|
2075
1757
|
/**
|
|
2076
1758
|
* <p>The structure representing the RemoveNotificationChannelRequest.</p>
|
|
2077
1759
|
*/
|
|
@@ -2085,12 +1767,6 @@ export interface RemoveNotificationChannelRequest {
|
|
|
2085
1767
|
*/
|
|
2086
1768
|
channelId: string | undefined;
|
|
2087
1769
|
}
|
|
2088
|
-
export declare namespace RemoveNotificationChannelRequest {
|
|
2089
|
-
/**
|
|
2090
|
-
* @internal
|
|
2091
|
-
*/
|
|
2092
|
-
const filterSensitiveLog: (obj: RemoveNotificationChannelRequest) => any;
|
|
2093
|
-
}
|
|
2094
1770
|
/**
|
|
2095
1771
|
* <p>The structure representing the RemoveNotificationChannelResponse.</p>
|
|
2096
1772
|
*/
|
|
@@ -2100,12 +1776,6 @@ export interface RemoveNotificationChannelResponse {
|
|
|
2100
1776
|
*/
|
|
2101
1777
|
notificationConfiguration?: NotificationConfiguration;
|
|
2102
1778
|
}
|
|
2103
|
-
export declare namespace RemoveNotificationChannelResponse {
|
|
2104
|
-
/**
|
|
2105
|
-
* @internal
|
|
2106
|
-
*/
|
|
2107
|
-
const filterSensitiveLog: (obj: RemoveNotificationChannelResponse) => any;
|
|
2108
|
-
}
|
|
2109
1779
|
/**
|
|
2110
1780
|
* <p>
|
|
2111
1781
|
*
|
|
@@ -2132,12 +1802,6 @@ export interface RemovePermissionRequest {
|
|
|
2132
1802
|
*/
|
|
2133
1803
|
revisionId: string | undefined;
|
|
2134
1804
|
}
|
|
2135
|
-
export declare namespace RemovePermissionRequest {
|
|
2136
|
-
/**
|
|
2137
|
-
* @internal
|
|
2138
|
-
*/
|
|
2139
|
-
const filterSensitiveLog: (obj: RemovePermissionRequest) => any;
|
|
2140
|
-
}
|
|
2141
1805
|
/**
|
|
2142
1806
|
* <p>The structure representing the <code>removePermissionResponse</code>.</p>
|
|
2143
1807
|
*/
|
|
@@ -2156,12 +1820,6 @@ export interface RemovePermissionResponse {
|
|
|
2156
1820
|
*/
|
|
2157
1821
|
revisionId: string | undefined;
|
|
2158
1822
|
}
|
|
2159
|
-
export declare namespace RemovePermissionResponse {
|
|
2160
|
-
/**
|
|
2161
|
-
* @internal
|
|
2162
|
-
*/
|
|
2163
|
-
const filterSensitiveLog: (obj: RemovePermissionResponse) => any;
|
|
2164
|
-
}
|
|
2165
1823
|
/**
|
|
2166
1824
|
* <p>The structure representing the SubmitFeedbackRequest.</p>
|
|
2167
1825
|
*/
|
|
@@ -2189,23 +1847,11 @@ export interface SubmitFeedbackRequest {
|
|
|
2189
1847
|
*/
|
|
2190
1848
|
comment?: string;
|
|
2191
1849
|
}
|
|
2192
|
-
export declare namespace SubmitFeedbackRequest {
|
|
2193
|
-
/**
|
|
2194
|
-
* @internal
|
|
2195
|
-
*/
|
|
2196
|
-
const filterSensitiveLog: (obj: SubmitFeedbackRequest) => any;
|
|
2197
|
-
}
|
|
2198
1850
|
/**
|
|
2199
1851
|
* <p>The structure representing the SubmitFeedbackResponse.</p>
|
|
2200
1852
|
*/
|
|
2201
1853
|
export interface SubmitFeedbackResponse {
|
|
2202
1854
|
}
|
|
2203
|
-
export declare namespace SubmitFeedbackResponse {
|
|
2204
|
-
/**
|
|
2205
|
-
* @internal
|
|
2206
|
-
*/
|
|
2207
|
-
const filterSensitiveLog: (obj: SubmitFeedbackResponse) => any;
|
|
2208
|
-
}
|
|
2209
1855
|
/**
|
|
2210
1856
|
* <p>The structure representing the updateProfilingGroupRequest.</p>
|
|
2211
1857
|
*/
|
|
@@ -2221,12 +1867,6 @@ export interface UpdateProfilingGroupRequest {
|
|
|
2221
1867
|
*/
|
|
2222
1868
|
agentOrchestrationConfig: AgentOrchestrationConfig | undefined;
|
|
2223
1869
|
}
|
|
2224
|
-
export declare namespace UpdateProfilingGroupRequest {
|
|
2225
|
-
/**
|
|
2226
|
-
* @internal
|
|
2227
|
-
*/
|
|
2228
|
-
const filterSensitiveLog: (obj: UpdateProfilingGroupRequest) => any;
|
|
2229
|
-
}
|
|
2230
1870
|
/**
|
|
2231
1871
|
* <p>The structure representing the updateProfilingGroupResponse.</p>
|
|
2232
1872
|
*/
|
|
@@ -2241,12 +1881,6 @@ export interface UpdateProfilingGroupResponse {
|
|
|
2241
1881
|
*/
|
|
2242
1882
|
profilingGroup: ProfilingGroupDescription | undefined;
|
|
2243
1883
|
}
|
|
2244
|
-
export declare namespace UpdateProfilingGroupResponse {
|
|
2245
|
-
/**
|
|
2246
|
-
* @internal
|
|
2247
|
-
*/
|
|
2248
|
-
const filterSensitiveLog: (obj: UpdateProfilingGroupResponse) => any;
|
|
2249
|
-
}
|
|
2250
1884
|
export interface TagResourceRequest {
|
|
2251
1885
|
/**
|
|
2252
1886
|
* <p>
|
|
@@ -2261,20 +1895,8 @@ export interface TagResourceRequest {
|
|
|
2261
1895
|
*/
|
|
2262
1896
|
tags: Record<string, string> | undefined;
|
|
2263
1897
|
}
|
|
2264
|
-
export declare namespace TagResourceRequest {
|
|
2265
|
-
/**
|
|
2266
|
-
* @internal
|
|
2267
|
-
*/
|
|
2268
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2269
|
-
}
|
|
2270
1898
|
export interface TagResourceResponse {
|
|
2271
1899
|
}
|
|
2272
|
-
export declare namespace TagResourceResponse {
|
|
2273
|
-
/**
|
|
2274
|
-
* @internal
|
|
2275
|
-
*/
|
|
2276
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2277
|
-
}
|
|
2278
1900
|
export interface UntagResourceRequest {
|
|
2279
1901
|
/**
|
|
2280
1902
|
* <p>
|
|
@@ -2290,17 +1912,265 @@ export interface UntagResourceRequest {
|
|
|
2290
1912
|
*/
|
|
2291
1913
|
tagKeys: string[] | undefined;
|
|
2292
1914
|
}
|
|
2293
|
-
export declare namespace UntagResourceRequest {
|
|
2294
|
-
/**
|
|
2295
|
-
* @internal
|
|
2296
|
-
*/
|
|
2297
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2298
|
-
}
|
|
2299
1915
|
export interface UntagResourceResponse {
|
|
2300
1916
|
}
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
1917
|
+
/**
|
|
1918
|
+
* @internal
|
|
1919
|
+
*/
|
|
1920
|
+
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
1921
|
+
/**
|
|
1922
|
+
* @internal
|
|
1923
|
+
*/
|
|
1924
|
+
export declare const AddNotificationChannelsRequestFilterSensitiveLog: (obj: AddNotificationChannelsRequest) => any;
|
|
1925
|
+
/**
|
|
1926
|
+
* @internal
|
|
1927
|
+
*/
|
|
1928
|
+
export declare const NotificationConfigurationFilterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
1929
|
+
/**
|
|
1930
|
+
* @internal
|
|
1931
|
+
*/
|
|
1932
|
+
export declare const AddNotificationChannelsResponseFilterSensitiveLog: (obj: AddNotificationChannelsResponse) => any;
|
|
1933
|
+
/**
|
|
1934
|
+
* @internal
|
|
1935
|
+
*/
|
|
1936
|
+
export declare const AgentConfigurationFilterSensitiveLog: (obj: AgentConfiguration) => any;
|
|
1937
|
+
/**
|
|
1938
|
+
* @internal
|
|
1939
|
+
*/
|
|
1940
|
+
export declare const AgentOrchestrationConfigFilterSensitiveLog: (obj: AgentOrchestrationConfig) => any;
|
|
1941
|
+
/**
|
|
1942
|
+
* @internal
|
|
1943
|
+
*/
|
|
1944
|
+
export declare const AggregatedProfileTimeFilterSensitiveLog: (obj: AggregatedProfileTime) => any;
|
|
1945
|
+
/**
|
|
1946
|
+
* @internal
|
|
1947
|
+
*/
|
|
1948
|
+
export declare const UserFeedbackFilterSensitiveLog: (obj: UserFeedback) => any;
|
|
1949
|
+
/**
|
|
1950
|
+
* @internal
|
|
1951
|
+
*/
|
|
1952
|
+
export declare const AnomalyInstanceFilterSensitiveLog: (obj: AnomalyInstance) => any;
|
|
1953
|
+
/**
|
|
1954
|
+
* @internal
|
|
1955
|
+
*/
|
|
1956
|
+
export declare const MetricFilterSensitiveLog: (obj: Metric) => any;
|
|
1957
|
+
/**
|
|
1958
|
+
* @internal
|
|
1959
|
+
*/
|
|
1960
|
+
export declare const AnomalyFilterSensitiveLog: (obj: Anomaly) => any;
|
|
1961
|
+
/**
|
|
1962
|
+
* @internal
|
|
1963
|
+
*/
|
|
1964
|
+
export declare const FrameMetricFilterSensitiveLog: (obj: FrameMetric) => any;
|
|
1965
|
+
/**
|
|
1966
|
+
* @internal
|
|
1967
|
+
*/
|
|
1968
|
+
export declare const BatchGetFrameMetricDataRequestFilterSensitiveLog: (obj: BatchGetFrameMetricDataRequest) => any;
|
|
1969
|
+
/**
|
|
1970
|
+
* @internal
|
|
1971
|
+
*/
|
|
1972
|
+
export declare const TimestampStructureFilterSensitiveLog: (obj: TimestampStructure) => any;
|
|
1973
|
+
/**
|
|
1974
|
+
* @internal
|
|
1975
|
+
*/
|
|
1976
|
+
export declare const FrameMetricDatumFilterSensitiveLog: (obj: FrameMetricDatum) => any;
|
|
1977
|
+
/**
|
|
1978
|
+
* @internal
|
|
1979
|
+
*/
|
|
1980
|
+
export declare const BatchGetFrameMetricDataResponseFilterSensitiveLog: (obj: BatchGetFrameMetricDataResponse) => any;
|
|
1981
|
+
/**
|
|
1982
|
+
* @internal
|
|
1983
|
+
*/
|
|
1984
|
+
export declare const GetFindingsReportAccountSummaryRequestFilterSensitiveLog: (obj: GetFindingsReportAccountSummaryRequest) => any;
|
|
1985
|
+
/**
|
|
1986
|
+
* @internal
|
|
1987
|
+
*/
|
|
1988
|
+
export declare const FindingsReportSummaryFilterSensitiveLog: (obj: FindingsReportSummary) => any;
|
|
1989
|
+
/**
|
|
1990
|
+
* @internal
|
|
1991
|
+
*/
|
|
1992
|
+
export declare const GetFindingsReportAccountSummaryResponseFilterSensitiveLog: (obj: GetFindingsReportAccountSummaryResponse) => any;
|
|
1993
|
+
/**
|
|
1994
|
+
* @internal
|
|
1995
|
+
*/
|
|
1996
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1997
|
+
/**
|
|
1998
|
+
* @internal
|
|
1999
|
+
*/
|
|
2000
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2001
|
+
/**
|
|
2002
|
+
* @internal
|
|
2003
|
+
*/
|
|
2004
|
+
export declare const ConfigureAgentRequestFilterSensitiveLog: (obj: ConfigureAgentRequest) => any;
|
|
2005
|
+
/**
|
|
2006
|
+
* @internal
|
|
2007
|
+
*/
|
|
2008
|
+
export declare const ConfigureAgentResponseFilterSensitiveLog: (obj: ConfigureAgentResponse) => any;
|
|
2009
|
+
/**
|
|
2010
|
+
* @internal
|
|
2011
|
+
*/
|
|
2012
|
+
export declare const CreateProfilingGroupRequestFilterSensitiveLog: (obj: CreateProfilingGroupRequest) => any;
|
|
2013
|
+
/**
|
|
2014
|
+
* @internal
|
|
2015
|
+
*/
|
|
2016
|
+
export declare const ProfilingStatusFilterSensitiveLog: (obj: ProfilingStatus) => any;
|
|
2017
|
+
/**
|
|
2018
|
+
* @internal
|
|
2019
|
+
*/
|
|
2020
|
+
export declare const ProfilingGroupDescriptionFilterSensitiveLog: (obj: ProfilingGroupDescription) => any;
|
|
2021
|
+
/**
|
|
2022
|
+
* @internal
|
|
2023
|
+
*/
|
|
2024
|
+
export declare const CreateProfilingGroupResponseFilterSensitiveLog: (obj: CreateProfilingGroupResponse) => any;
|
|
2025
|
+
/**
|
|
2026
|
+
* @internal
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const DeleteProfilingGroupRequestFilterSensitiveLog: (obj: DeleteProfilingGroupRequest) => any;
|
|
2029
|
+
/**
|
|
2030
|
+
* @internal
|
|
2031
|
+
*/
|
|
2032
|
+
export declare const DeleteProfilingGroupResponseFilterSensitiveLog: (obj: DeleteProfilingGroupResponse) => any;
|
|
2033
|
+
/**
|
|
2034
|
+
* @internal
|
|
2035
|
+
*/
|
|
2036
|
+
export declare const DescribeProfilingGroupRequestFilterSensitiveLog: (obj: DescribeProfilingGroupRequest) => any;
|
|
2037
|
+
/**
|
|
2038
|
+
* @internal
|
|
2039
|
+
*/
|
|
2040
|
+
export declare const DescribeProfilingGroupResponseFilterSensitiveLog: (obj: DescribeProfilingGroupResponse) => any;
|
|
2041
|
+
/**
|
|
2042
|
+
* @internal
|
|
2043
|
+
*/
|
|
2044
|
+
export declare const GetNotificationConfigurationRequestFilterSensitiveLog: (obj: GetNotificationConfigurationRequest) => any;
|
|
2045
|
+
/**
|
|
2046
|
+
* @internal
|
|
2047
|
+
*/
|
|
2048
|
+
export declare const GetNotificationConfigurationResponseFilterSensitiveLog: (obj: GetNotificationConfigurationResponse) => any;
|
|
2049
|
+
/**
|
|
2050
|
+
* @internal
|
|
2051
|
+
*/
|
|
2052
|
+
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
2053
|
+
/**
|
|
2054
|
+
* @internal
|
|
2055
|
+
*/
|
|
2056
|
+
export declare const GetPolicyResponseFilterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
2057
|
+
/**
|
|
2058
|
+
* @internal
|
|
2059
|
+
*/
|
|
2060
|
+
export declare const GetProfileRequestFilterSensitiveLog: (obj: GetProfileRequest) => any;
|
|
2061
|
+
/**
|
|
2062
|
+
* @internal
|
|
2063
|
+
*/
|
|
2064
|
+
export declare const GetProfileResponseFilterSensitiveLog: (obj: GetProfileResponse) => any;
|
|
2065
|
+
/**
|
|
2066
|
+
* @internal
|
|
2067
|
+
*/
|
|
2068
|
+
export declare const GetRecommendationsRequestFilterSensitiveLog: (obj: GetRecommendationsRequest) => any;
|
|
2069
|
+
/**
|
|
2070
|
+
* @internal
|
|
2071
|
+
*/
|
|
2072
|
+
export declare const PatternFilterSensitiveLog: (obj: Pattern) => any;
|
|
2073
|
+
/**
|
|
2074
|
+
* @internal
|
|
2075
|
+
*/
|
|
2076
|
+
export declare const MatchFilterSensitiveLog: (obj: Match) => any;
|
|
2077
|
+
/**
|
|
2078
|
+
* @internal
|
|
2079
|
+
*/
|
|
2080
|
+
export declare const RecommendationFilterSensitiveLog: (obj: Recommendation) => any;
|
|
2081
|
+
/**
|
|
2082
|
+
* @internal
|
|
2083
|
+
*/
|
|
2084
|
+
export declare const GetRecommendationsResponseFilterSensitiveLog: (obj: GetRecommendationsResponse) => any;
|
|
2085
|
+
/**
|
|
2086
|
+
* @internal
|
|
2087
|
+
*/
|
|
2088
|
+
export declare const ListFindingsReportsRequestFilterSensitiveLog: (obj: ListFindingsReportsRequest) => any;
|
|
2089
|
+
/**
|
|
2090
|
+
* @internal
|
|
2091
|
+
*/
|
|
2092
|
+
export declare const ListFindingsReportsResponseFilterSensitiveLog: (obj: ListFindingsReportsResponse) => any;
|
|
2093
|
+
/**
|
|
2094
|
+
* @internal
|
|
2095
|
+
*/
|
|
2096
|
+
export declare const ListProfileTimesRequestFilterSensitiveLog: (obj: ListProfileTimesRequest) => any;
|
|
2097
|
+
/**
|
|
2098
|
+
* @internal
|
|
2099
|
+
*/
|
|
2100
|
+
export declare const ProfileTimeFilterSensitiveLog: (obj: ProfileTime) => any;
|
|
2101
|
+
/**
|
|
2102
|
+
* @internal
|
|
2103
|
+
*/
|
|
2104
|
+
export declare const ListProfileTimesResponseFilterSensitiveLog: (obj: ListProfileTimesResponse) => any;
|
|
2105
|
+
/**
|
|
2106
|
+
* @internal
|
|
2107
|
+
*/
|
|
2108
|
+
export declare const ListProfilingGroupsRequestFilterSensitiveLog: (obj: ListProfilingGroupsRequest) => any;
|
|
2109
|
+
/**
|
|
2110
|
+
* @internal
|
|
2111
|
+
*/
|
|
2112
|
+
export declare const ListProfilingGroupsResponseFilterSensitiveLog: (obj: ListProfilingGroupsResponse) => any;
|
|
2113
|
+
/**
|
|
2114
|
+
* @internal
|
|
2115
|
+
*/
|
|
2116
|
+
export declare const PostAgentProfileRequestFilterSensitiveLog: (obj: PostAgentProfileRequest) => any;
|
|
2117
|
+
/**
|
|
2118
|
+
* @internal
|
|
2119
|
+
*/
|
|
2120
|
+
export declare const PostAgentProfileResponseFilterSensitiveLog: (obj: PostAgentProfileResponse) => any;
|
|
2121
|
+
/**
|
|
2122
|
+
* @internal
|
|
2123
|
+
*/
|
|
2124
|
+
export declare const PutPermissionRequestFilterSensitiveLog: (obj: PutPermissionRequest) => any;
|
|
2125
|
+
/**
|
|
2126
|
+
* @internal
|
|
2127
|
+
*/
|
|
2128
|
+
export declare const PutPermissionResponseFilterSensitiveLog: (obj: PutPermissionResponse) => any;
|
|
2129
|
+
/**
|
|
2130
|
+
* @internal
|
|
2131
|
+
*/
|
|
2132
|
+
export declare const RemoveNotificationChannelRequestFilterSensitiveLog: (obj: RemoveNotificationChannelRequest) => any;
|
|
2133
|
+
/**
|
|
2134
|
+
* @internal
|
|
2135
|
+
*/
|
|
2136
|
+
export declare const RemoveNotificationChannelResponseFilterSensitiveLog: (obj: RemoveNotificationChannelResponse) => any;
|
|
2137
|
+
/**
|
|
2138
|
+
* @internal
|
|
2139
|
+
*/
|
|
2140
|
+
export declare const RemovePermissionRequestFilterSensitiveLog: (obj: RemovePermissionRequest) => any;
|
|
2141
|
+
/**
|
|
2142
|
+
* @internal
|
|
2143
|
+
*/
|
|
2144
|
+
export declare const RemovePermissionResponseFilterSensitiveLog: (obj: RemovePermissionResponse) => any;
|
|
2145
|
+
/**
|
|
2146
|
+
* @internal
|
|
2147
|
+
*/
|
|
2148
|
+
export declare const SubmitFeedbackRequestFilterSensitiveLog: (obj: SubmitFeedbackRequest) => any;
|
|
2149
|
+
/**
|
|
2150
|
+
* @internal
|
|
2151
|
+
*/
|
|
2152
|
+
export declare const SubmitFeedbackResponseFilterSensitiveLog: (obj: SubmitFeedbackResponse) => any;
|
|
2153
|
+
/**
|
|
2154
|
+
* @internal
|
|
2155
|
+
*/
|
|
2156
|
+
export declare const UpdateProfilingGroupRequestFilterSensitiveLog: (obj: UpdateProfilingGroupRequest) => any;
|
|
2157
|
+
/**
|
|
2158
|
+
* @internal
|
|
2159
|
+
*/
|
|
2160
|
+
export declare const UpdateProfilingGroupResponseFilterSensitiveLog: (obj: UpdateProfilingGroupResponse) => any;
|
|
2161
|
+
/**
|
|
2162
|
+
* @internal
|
|
2163
|
+
*/
|
|
2164
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2165
|
+
/**
|
|
2166
|
+
* @internal
|
|
2167
|
+
*/
|
|
2168
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2169
|
+
/**
|
|
2170
|
+
* @internal
|
|
2171
|
+
*/
|
|
2172
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2173
|
+
/**
|
|
2174
|
+
* @internal
|
|
2175
|
+
*/
|
|
2176
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|