@aws-sdk/client-rum 3.130.0 → 3.141.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/README.md +1 -1
- package/dist-cjs/commands/CreateAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/GetAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/GetAppMonitorDataCommand.js +2 -2
- package/dist-cjs/commands/ListAppMonitorsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutRumEventsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppMonitorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +121 -181
- package/dist-es/commands/CreateAppMonitorCommand.js +3 -3
- package/dist-es/commands/DeleteAppMonitorCommand.js +3 -3
- package/dist-es/commands/GetAppMonitorCommand.js +3 -3
- package/dist-es/commands/GetAppMonitorDataCommand.js +3 -3
- package/dist-es/commands/ListAppMonitorsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutRumEventsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateAppMonitorCommand.js +3 -3
- package/dist-es/models/models_0.js +30 -120
- package/dist-types/models/models_0.d.ts +120 -180
- package/dist-types/ts3.4/models/models_0.d.ts +60 -120
- package/package.json +7 -7
|
@@ -98,12 +98,6 @@ export interface AppMonitorConfiguration {
|
|
|
98
98
|
*/
|
|
99
99
|
EnableXRay?: boolean;
|
|
100
100
|
}
|
|
101
|
-
export declare namespace AppMonitorConfiguration {
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
const filterSensitiveLog: (obj: AppMonitorConfiguration) => any;
|
|
106
|
-
}
|
|
107
101
|
/**
|
|
108
102
|
* <p>A structure that contains the information about whether the app monitor stores copies of the data
|
|
109
103
|
* that RUM collects in CloudWatch Logs. If it does, this structure also contains the name of the log group.</p>
|
|
@@ -119,12 +113,6 @@ export interface CwLog {
|
|
|
119
113
|
*/
|
|
120
114
|
CwLogGroup?: string;
|
|
121
115
|
}
|
|
122
|
-
export declare namespace CwLog {
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
const filterSensitiveLog: (obj: CwLog) => any;
|
|
127
|
-
}
|
|
128
116
|
/**
|
|
129
117
|
* <p>A structure that contains information about whether this app monitor stores a copy of
|
|
130
118
|
* the telemetry data that RUM collects using CloudWatch Logs.</p>
|
|
@@ -136,12 +124,6 @@ export interface DataStorage {
|
|
|
136
124
|
*/
|
|
137
125
|
CwLog?: CwLog;
|
|
138
126
|
}
|
|
139
|
-
export declare namespace DataStorage {
|
|
140
|
-
/**
|
|
141
|
-
* @internal
|
|
142
|
-
*/
|
|
143
|
-
const filterSensitiveLog: (obj: DataStorage) => any;
|
|
144
|
-
}
|
|
145
127
|
export declare enum StateEnum {
|
|
146
128
|
ACTIVE = "ACTIVE",
|
|
147
129
|
CREATED = "CREATED",
|
|
@@ -191,12 +173,6 @@ export interface AppMonitor {
|
|
|
191
173
|
*/
|
|
192
174
|
DataStorage?: DataStorage;
|
|
193
175
|
}
|
|
194
|
-
export declare namespace AppMonitor {
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
const filterSensitiveLog: (obj: AppMonitor) => any;
|
|
199
|
-
}
|
|
200
176
|
/**
|
|
201
177
|
* <p>A structure that contains information about the RUM app monitor.</p>
|
|
202
178
|
*/
|
|
@@ -214,12 +190,6 @@ export interface AppMonitorDetails {
|
|
|
214
190
|
*/
|
|
215
191
|
version?: string;
|
|
216
192
|
}
|
|
217
|
-
export declare namespace AppMonitorDetails {
|
|
218
|
-
/**
|
|
219
|
-
* @internal
|
|
220
|
-
*/
|
|
221
|
-
const filterSensitiveLog: (obj: AppMonitorDetails) => any;
|
|
222
|
-
}
|
|
223
193
|
/**
|
|
224
194
|
* <p>This operation attempted to create a resource that already exists.</p>
|
|
225
195
|
*/
|
|
@@ -278,24 +248,12 @@ export interface CreateAppMonitorRequest {
|
|
|
278
248
|
*/
|
|
279
249
|
CwLogEnabled?: boolean;
|
|
280
250
|
}
|
|
281
|
-
export declare namespace CreateAppMonitorRequest {
|
|
282
|
-
/**
|
|
283
|
-
* @internal
|
|
284
|
-
*/
|
|
285
|
-
const filterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
|
|
286
|
-
}
|
|
287
251
|
export interface CreateAppMonitorResponse {
|
|
288
252
|
/**
|
|
289
253
|
* <p>The unique ID of the new app monitor.</p>
|
|
290
254
|
*/
|
|
291
255
|
Id?: string;
|
|
292
256
|
}
|
|
293
|
-
export declare namespace CreateAppMonitorResponse {
|
|
294
|
-
/**
|
|
295
|
-
* @internal
|
|
296
|
-
*/
|
|
297
|
-
const filterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
|
|
298
|
-
}
|
|
299
257
|
/**
|
|
300
258
|
* <p>Internal service exception.</p>
|
|
301
259
|
*/
|
|
@@ -366,20 +324,8 @@ export interface DeleteAppMonitorRequest {
|
|
|
366
324
|
*/
|
|
367
325
|
Name: string | undefined;
|
|
368
326
|
}
|
|
369
|
-
export declare namespace DeleteAppMonitorRequest {
|
|
370
|
-
/**
|
|
371
|
-
* @internal
|
|
372
|
-
*/
|
|
373
|
-
const filterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
|
|
374
|
-
}
|
|
375
327
|
export interface DeleteAppMonitorResponse {
|
|
376
328
|
}
|
|
377
|
-
export declare namespace DeleteAppMonitorResponse {
|
|
378
|
-
/**
|
|
379
|
-
* @internal
|
|
380
|
-
*/
|
|
381
|
-
const filterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
|
|
382
|
-
}
|
|
383
329
|
/**
|
|
384
330
|
* <p>Resource not found.</p>
|
|
385
331
|
*/
|
|
@@ -405,24 +351,12 @@ export interface GetAppMonitorRequest {
|
|
|
405
351
|
*/
|
|
406
352
|
Name: string | undefined;
|
|
407
353
|
}
|
|
408
|
-
export declare namespace GetAppMonitorRequest {
|
|
409
|
-
/**
|
|
410
|
-
* @internal
|
|
411
|
-
*/
|
|
412
|
-
const filterSensitiveLog: (obj: GetAppMonitorRequest) => any;
|
|
413
|
-
}
|
|
414
354
|
export interface GetAppMonitorResponse {
|
|
415
355
|
/**
|
|
416
356
|
* <p>A structure containing all the configuration information for the app monitor.</p>
|
|
417
357
|
*/
|
|
418
358
|
AppMonitor?: AppMonitor;
|
|
419
359
|
}
|
|
420
|
-
export declare namespace GetAppMonitorResponse {
|
|
421
|
-
/**
|
|
422
|
-
* @internal
|
|
423
|
-
*/
|
|
424
|
-
const filterSensitiveLog: (obj: GetAppMonitorResponse) => any;
|
|
425
|
-
}
|
|
426
360
|
/**
|
|
427
361
|
* <p>A structure that defines a key and values that you can use to filter the results. The
|
|
428
362
|
* only performance events that are returned are those that have values matching the ones that
|
|
@@ -451,12 +385,6 @@ export interface QueryFilter {
|
|
|
451
385
|
*/
|
|
452
386
|
Values?: string[];
|
|
453
387
|
}
|
|
454
|
-
export declare namespace QueryFilter {
|
|
455
|
-
/**
|
|
456
|
-
* @internal
|
|
457
|
-
*/
|
|
458
|
-
const filterSensitiveLog: (obj: QueryFilter) => any;
|
|
459
|
-
}
|
|
460
388
|
/**
|
|
461
389
|
* <p>A structure that defines the time range that you want to retrieve results from.</p>
|
|
462
390
|
*/
|
|
@@ -471,12 +399,6 @@ export interface TimeRange {
|
|
|
471
399
|
*/
|
|
472
400
|
Before?: number;
|
|
473
401
|
}
|
|
474
|
-
export declare namespace TimeRange {
|
|
475
|
-
/**
|
|
476
|
-
* @internal
|
|
477
|
-
*/
|
|
478
|
-
const filterSensitiveLog: (obj: TimeRange) => any;
|
|
479
|
-
}
|
|
480
402
|
export interface GetAppMonitorDataRequest {
|
|
481
403
|
/**
|
|
482
404
|
* <p>The name of the app monitor that collected the data that you want to retrieve.</p>
|
|
@@ -500,12 +422,6 @@ export interface GetAppMonitorDataRequest {
|
|
|
500
422
|
*/
|
|
501
423
|
NextToken?: string;
|
|
502
424
|
}
|
|
503
|
-
export declare namespace GetAppMonitorDataRequest {
|
|
504
|
-
/**
|
|
505
|
-
* @internal
|
|
506
|
-
*/
|
|
507
|
-
const filterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
|
|
508
|
-
}
|
|
509
425
|
export interface GetAppMonitorDataResponse {
|
|
510
426
|
/**
|
|
511
427
|
* <p>The events that RUM collected that match your request.</p>
|
|
@@ -517,12 +433,6 @@ export interface GetAppMonitorDataResponse {
|
|
|
517
433
|
*/
|
|
518
434
|
NextToken?: string;
|
|
519
435
|
}
|
|
520
|
-
export declare namespace GetAppMonitorDataResponse {
|
|
521
|
-
/**
|
|
522
|
-
* @internal
|
|
523
|
-
*/
|
|
524
|
-
const filterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
|
|
525
|
-
}
|
|
526
436
|
export interface ListAppMonitorsRequest {
|
|
527
437
|
/**
|
|
528
438
|
* <p>The maximum number of results to return in one operation. </p>
|
|
@@ -533,12 +443,6 @@ export interface ListAppMonitorsRequest {
|
|
|
533
443
|
*/
|
|
534
444
|
NextToken?: string;
|
|
535
445
|
}
|
|
536
|
-
export declare namespace ListAppMonitorsRequest {
|
|
537
|
-
/**
|
|
538
|
-
* @internal
|
|
539
|
-
*/
|
|
540
|
-
const filterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
|
|
541
|
-
}
|
|
542
446
|
/**
|
|
543
447
|
* <p>A structure that includes some data about app monitors and their settings.</p>
|
|
544
448
|
*/
|
|
@@ -564,12 +468,6 @@ export interface AppMonitorSummary {
|
|
|
564
468
|
*/
|
|
565
469
|
State?: StateEnum | string;
|
|
566
470
|
}
|
|
567
|
-
export declare namespace AppMonitorSummary {
|
|
568
|
-
/**
|
|
569
|
-
* @internal
|
|
570
|
-
*/
|
|
571
|
-
const filterSensitiveLog: (obj: AppMonitorSummary) => any;
|
|
572
|
-
}
|
|
573
471
|
export interface ListAppMonitorsResponse {
|
|
574
472
|
/**
|
|
575
473
|
* <p>A token that you can use in a subsequent operation to retrieve the next set of
|
|
@@ -581,12 +479,6 @@ export interface ListAppMonitorsResponse {
|
|
|
581
479
|
*/
|
|
582
480
|
AppMonitorSummaries?: AppMonitorSummary[];
|
|
583
481
|
}
|
|
584
|
-
export declare namespace ListAppMonitorsResponse {
|
|
585
|
-
/**
|
|
586
|
-
* @internal
|
|
587
|
-
*/
|
|
588
|
-
const filterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
|
|
589
|
-
}
|
|
590
482
|
export interface UpdateAppMonitorRequest {
|
|
591
483
|
/**
|
|
592
484
|
* <p>The name of the app monitor to update.</p>
|
|
@@ -613,32 +505,14 @@ export interface UpdateAppMonitorRequest {
|
|
|
613
505
|
*/
|
|
614
506
|
CwLogEnabled?: boolean;
|
|
615
507
|
}
|
|
616
|
-
export declare namespace UpdateAppMonitorRequest {
|
|
617
|
-
/**
|
|
618
|
-
* @internal
|
|
619
|
-
*/
|
|
620
|
-
const filterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
|
|
621
|
-
}
|
|
622
508
|
export interface UpdateAppMonitorResponse {
|
|
623
509
|
}
|
|
624
|
-
export declare namespace UpdateAppMonitorResponse {
|
|
625
|
-
/**
|
|
626
|
-
* @internal
|
|
627
|
-
*/
|
|
628
|
-
const filterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
|
|
629
|
-
}
|
|
630
510
|
export interface ListTagsForResourceRequest {
|
|
631
511
|
/**
|
|
632
512
|
* <p>The ARN of the resource that you want to see the tags of.</p>
|
|
633
513
|
*/
|
|
634
514
|
ResourceArn: string | undefined;
|
|
635
515
|
}
|
|
636
|
-
export declare namespace ListTagsForResourceRequest {
|
|
637
|
-
/**
|
|
638
|
-
* @internal
|
|
639
|
-
*/
|
|
640
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
641
|
-
}
|
|
642
516
|
export interface ListTagsForResourceResponse {
|
|
643
517
|
/**
|
|
644
518
|
* <p>The ARN of the resource that you are viewing.</p>
|
|
@@ -649,12 +523,6 @@ export interface ListTagsForResourceResponse {
|
|
|
649
523
|
*/
|
|
650
524
|
Tags: Record<string, string> | undefined;
|
|
651
525
|
}
|
|
652
|
-
export declare namespace ListTagsForResourceResponse {
|
|
653
|
-
/**
|
|
654
|
-
* @internal
|
|
655
|
-
*/
|
|
656
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
657
|
-
}
|
|
658
526
|
/**
|
|
659
527
|
* <p>A structure that contains the information for one performance event that RUM collects from a user session with your
|
|
660
528
|
* application.</p>
|
|
@@ -683,12 +551,6 @@ export interface RumEvent {
|
|
|
683
551
|
*/
|
|
684
552
|
details: __LazyJsonString | string | undefined;
|
|
685
553
|
}
|
|
686
|
-
export declare namespace RumEvent {
|
|
687
|
-
/**
|
|
688
|
-
* @internal
|
|
689
|
-
*/
|
|
690
|
-
const filterSensitiveLog: (obj: RumEvent) => any;
|
|
691
|
-
}
|
|
692
554
|
/**
|
|
693
555
|
* <p>A structure that contains information about the user session that this batch of events was collected from.</p>
|
|
694
556
|
*/
|
|
@@ -703,12 +565,6 @@ export interface UserDetails {
|
|
|
703
565
|
*/
|
|
704
566
|
sessionId?: string;
|
|
705
567
|
}
|
|
706
|
-
export declare namespace UserDetails {
|
|
707
|
-
/**
|
|
708
|
-
* @internal
|
|
709
|
-
*/
|
|
710
|
-
const filterSensitiveLog: (obj: UserDetails) => any;
|
|
711
|
-
}
|
|
712
568
|
export interface PutRumEventsRequest {
|
|
713
569
|
/**
|
|
714
570
|
* <p>The ID of the app monitor that is sending this data.</p>
|
|
@@ -731,20 +587,8 @@ export interface PutRumEventsRequest {
|
|
|
731
587
|
*/
|
|
732
588
|
RumEvents: RumEvent[] | undefined;
|
|
733
589
|
}
|
|
734
|
-
export declare namespace PutRumEventsRequest {
|
|
735
|
-
/**
|
|
736
|
-
* @internal
|
|
737
|
-
*/
|
|
738
|
-
const filterSensitiveLog: (obj: PutRumEventsRequest) => any;
|
|
739
|
-
}
|
|
740
590
|
export interface PutRumEventsResponse {
|
|
741
591
|
}
|
|
742
|
-
export declare namespace PutRumEventsResponse {
|
|
743
|
-
/**
|
|
744
|
-
* @internal
|
|
745
|
-
*/
|
|
746
|
-
const filterSensitiveLog: (obj: PutRumEventsResponse) => any;
|
|
747
|
-
}
|
|
748
592
|
export interface TagResourceRequest {
|
|
749
593
|
/**
|
|
750
594
|
* <p>The ARN of the CloudWatch RUM resource that you're adding tags to.</p>
|
|
@@ -755,20 +599,8 @@ export interface TagResourceRequest {
|
|
|
755
599
|
*/
|
|
756
600
|
Tags: Record<string, string> | undefined;
|
|
757
601
|
}
|
|
758
|
-
export declare namespace TagResourceRequest {
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
763
|
-
}
|
|
764
602
|
export interface TagResourceResponse {
|
|
765
603
|
}
|
|
766
|
-
export declare namespace TagResourceResponse {
|
|
767
|
-
/**
|
|
768
|
-
* @internal
|
|
769
|
-
*/
|
|
770
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
771
|
-
}
|
|
772
604
|
export interface UntagResourceRequest {
|
|
773
605
|
/**
|
|
774
606
|
* <p>The ARN of the CloudWatch RUM resource that you're removing tags from.</p>
|
|
@@ -779,17 +611,125 @@ export interface UntagResourceRequest {
|
|
|
779
611
|
*/
|
|
780
612
|
TagKeys: string[] | undefined;
|
|
781
613
|
}
|
|
782
|
-
export declare namespace UntagResourceRequest {
|
|
783
|
-
/**
|
|
784
|
-
* @internal
|
|
785
|
-
*/
|
|
786
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
787
|
-
}
|
|
788
614
|
export interface UntagResourceResponse {
|
|
789
615
|
}
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
616
|
+
/**
|
|
617
|
+
* @internal
|
|
618
|
+
*/
|
|
619
|
+
export declare const AppMonitorConfigurationFilterSensitiveLog: (obj: AppMonitorConfiguration) => any;
|
|
620
|
+
/**
|
|
621
|
+
* @internal
|
|
622
|
+
*/
|
|
623
|
+
export declare const CwLogFilterSensitiveLog: (obj: CwLog) => any;
|
|
624
|
+
/**
|
|
625
|
+
* @internal
|
|
626
|
+
*/
|
|
627
|
+
export declare const DataStorageFilterSensitiveLog: (obj: DataStorage) => any;
|
|
628
|
+
/**
|
|
629
|
+
* @internal
|
|
630
|
+
*/
|
|
631
|
+
export declare const AppMonitorFilterSensitiveLog: (obj: AppMonitor) => any;
|
|
632
|
+
/**
|
|
633
|
+
* @internal
|
|
634
|
+
*/
|
|
635
|
+
export declare const AppMonitorDetailsFilterSensitiveLog: (obj: AppMonitorDetails) => any;
|
|
636
|
+
/**
|
|
637
|
+
* @internal
|
|
638
|
+
*/
|
|
639
|
+
export declare const CreateAppMonitorRequestFilterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
|
|
640
|
+
/**
|
|
641
|
+
* @internal
|
|
642
|
+
*/
|
|
643
|
+
export declare const CreateAppMonitorResponseFilterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
|
|
644
|
+
/**
|
|
645
|
+
* @internal
|
|
646
|
+
*/
|
|
647
|
+
export declare const DeleteAppMonitorRequestFilterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
|
|
648
|
+
/**
|
|
649
|
+
* @internal
|
|
650
|
+
*/
|
|
651
|
+
export declare const DeleteAppMonitorResponseFilterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
|
|
652
|
+
/**
|
|
653
|
+
* @internal
|
|
654
|
+
*/
|
|
655
|
+
export declare const GetAppMonitorRequestFilterSensitiveLog: (obj: GetAppMonitorRequest) => any;
|
|
656
|
+
/**
|
|
657
|
+
* @internal
|
|
658
|
+
*/
|
|
659
|
+
export declare const GetAppMonitorResponseFilterSensitiveLog: (obj: GetAppMonitorResponse) => any;
|
|
660
|
+
/**
|
|
661
|
+
* @internal
|
|
662
|
+
*/
|
|
663
|
+
export declare const QueryFilterFilterSensitiveLog: (obj: QueryFilter) => any;
|
|
664
|
+
/**
|
|
665
|
+
* @internal
|
|
666
|
+
*/
|
|
667
|
+
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
668
|
+
/**
|
|
669
|
+
* @internal
|
|
670
|
+
*/
|
|
671
|
+
export declare const GetAppMonitorDataRequestFilterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
|
|
672
|
+
/**
|
|
673
|
+
* @internal
|
|
674
|
+
*/
|
|
675
|
+
export declare const GetAppMonitorDataResponseFilterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
|
|
676
|
+
/**
|
|
677
|
+
* @internal
|
|
678
|
+
*/
|
|
679
|
+
export declare const ListAppMonitorsRequestFilterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
|
|
680
|
+
/**
|
|
681
|
+
* @internal
|
|
682
|
+
*/
|
|
683
|
+
export declare const AppMonitorSummaryFilterSensitiveLog: (obj: AppMonitorSummary) => any;
|
|
684
|
+
/**
|
|
685
|
+
* @internal
|
|
686
|
+
*/
|
|
687
|
+
export declare const ListAppMonitorsResponseFilterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
|
|
688
|
+
/**
|
|
689
|
+
* @internal
|
|
690
|
+
*/
|
|
691
|
+
export declare const UpdateAppMonitorRequestFilterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
|
|
692
|
+
/**
|
|
693
|
+
* @internal
|
|
694
|
+
*/
|
|
695
|
+
export declare const UpdateAppMonitorResponseFilterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
|
|
696
|
+
/**
|
|
697
|
+
* @internal
|
|
698
|
+
*/
|
|
699
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
700
|
+
/**
|
|
701
|
+
* @internal
|
|
702
|
+
*/
|
|
703
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
704
|
+
/**
|
|
705
|
+
* @internal
|
|
706
|
+
*/
|
|
707
|
+
export declare const RumEventFilterSensitiveLog: (obj: RumEvent) => any;
|
|
708
|
+
/**
|
|
709
|
+
* @internal
|
|
710
|
+
*/
|
|
711
|
+
export declare const UserDetailsFilterSensitiveLog: (obj: UserDetails) => any;
|
|
712
|
+
/**
|
|
713
|
+
* @internal
|
|
714
|
+
*/
|
|
715
|
+
export declare const PutRumEventsRequestFilterSensitiveLog: (obj: PutRumEventsRequest) => any;
|
|
716
|
+
/**
|
|
717
|
+
* @internal
|
|
718
|
+
*/
|
|
719
|
+
export declare const PutRumEventsResponseFilterSensitiveLog: (obj: PutRumEventsResponse) => any;
|
|
720
|
+
/**
|
|
721
|
+
* @internal
|
|
722
|
+
*/
|
|
723
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
724
|
+
/**
|
|
725
|
+
* @internal
|
|
726
|
+
*/
|
|
727
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
728
|
+
/**
|
|
729
|
+
* @internal
|
|
730
|
+
*/
|
|
731
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
732
|
+
/**
|
|
733
|
+
* @internal
|
|
734
|
+
*/
|
|
735
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|