@aws-sdk/client-rum 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/RUM.d.ts +184 -55
  3. package/dist-types/ts3.4/RUMClient.d.ts +188 -83
  4. package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -10
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  16. package/dist-types/ts3.4/index.d.ts +6 -6
  17. package/dist-types/ts3.4/models/RUMServiceException.d.ts +8 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +396 -366
  20. package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  22. package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +11 -4
  23. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  24. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  29. package/package.json +34 -34
@@ -1,366 +1,396 @@
1
- import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { RUMServiceException as __BaseException } from "./RUMServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum Telemetry {
11
-
12
- ERRORS = "errors",
13
-
14
- HTTP = "http",
15
-
16
- PERFORMANCE = "performance"
17
- }
18
-
19
- export interface AppMonitorConfiguration {
20
-
21
- IdentityPoolId?: string;
22
-
23
- ExcludedPages?: string[];
24
-
25
- IncludedPages?: string[];
26
-
27
- FavoritePages?: string[];
28
-
29
- SessionSampleRate?: number;
30
-
31
- GuestRoleArn?: string;
32
-
33
- AllowCookies?: boolean;
34
-
35
- Telemetries?: (Telemetry | string)[];
36
-
37
- EnableXRay?: boolean;
38
- }
39
-
40
- export interface CwLog {
41
-
42
- CwLogEnabled?: boolean;
43
-
44
- CwLogGroup?: string;
45
- }
46
-
47
- export interface DataStorage {
48
-
49
- CwLog?: CwLog;
50
- }
51
- export declare enum StateEnum {
52
- ACTIVE = "ACTIVE",
53
- CREATED = "CREATED",
54
- DELETING = "DELETING"
55
- }
56
-
57
- export interface AppMonitor {
58
-
59
- Name?: string;
60
-
61
- Domain?: string;
62
-
63
- Id?: string;
64
-
65
- Created?: string;
66
-
67
- LastModified?: string;
68
-
69
- Tags?: Record<string, string>;
70
-
71
- State?: StateEnum | string;
72
-
73
- AppMonitorConfiguration?: AppMonitorConfiguration;
74
-
75
- DataStorage?: DataStorage;
76
- }
77
-
78
- export interface AppMonitorDetails {
79
-
80
- name?: string;
81
-
82
- id?: string;
83
-
84
- version?: string;
85
- }
86
-
87
- export declare class ConflictException extends __BaseException {
88
- readonly name: "ConflictException";
89
- readonly $fault: "client";
90
-
91
- resourceName: string | undefined;
92
-
93
- resourceType?: string;
94
-
95
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
96
- }
97
- export interface CreateAppMonitorRequest {
98
-
99
- Name: string | undefined;
100
-
101
- Domain: string | undefined;
102
-
103
- Tags?: Record<string, string>;
104
-
105
- AppMonitorConfiguration?: AppMonitorConfiguration;
106
-
107
- CwLogEnabled?: boolean;
108
- }
109
- export interface CreateAppMonitorResponse {
110
-
111
- Id?: string;
112
- }
113
-
114
- export declare class InternalServerException extends __BaseException {
115
- readonly name: "InternalServerException";
116
- readonly $fault: "server";
117
- $retryable: {};
118
-
119
- retryAfterSeconds?: number;
120
-
121
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
122
- }
123
-
124
- export declare class ServiceQuotaExceededException extends __BaseException {
125
- readonly name: "ServiceQuotaExceededException";
126
- readonly $fault: "client";
127
-
128
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
129
- }
130
-
131
- export declare class ThrottlingException extends __BaseException {
132
- readonly name: "ThrottlingException";
133
- readonly $fault: "client";
134
- $retryable: {
135
- throttling: boolean;
136
- };
137
-
138
- serviceCode?: string;
139
-
140
- quotaCode?: string;
141
-
142
- retryAfterSeconds?: number;
143
-
144
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
145
- }
146
-
147
- export declare class ValidationException extends __BaseException {
148
- readonly name: "ValidationException";
149
- readonly $fault: "client";
150
-
151
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
152
- }
153
- export interface DeleteAppMonitorRequest {
154
-
155
- Name: string | undefined;
156
- }
157
- export interface DeleteAppMonitorResponse {
158
- }
159
-
160
- export declare class ResourceNotFoundException extends __BaseException {
161
- readonly name: "ResourceNotFoundException";
162
- readonly $fault: "client";
163
-
164
- resourceName: string | undefined;
165
-
166
- resourceType?: string;
167
-
168
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
169
- }
170
- export interface GetAppMonitorRequest {
171
-
172
- Name: string | undefined;
173
- }
174
- export interface GetAppMonitorResponse {
175
-
176
- AppMonitor?: AppMonitor;
177
- }
178
-
179
- export interface QueryFilter {
180
-
181
- Name?: string;
182
-
183
- Values?: string[];
184
- }
185
-
186
- export interface TimeRange {
187
-
188
- After: number | undefined;
189
-
190
- Before?: number;
191
- }
192
- export interface GetAppMonitorDataRequest {
193
-
194
- Name: string | undefined;
195
-
196
- TimeRange: TimeRange | undefined;
197
-
198
- Filters?: QueryFilter[];
199
-
200
- MaxResults?: number;
201
-
202
- NextToken?: string;
203
- }
204
- export interface GetAppMonitorDataResponse {
205
-
206
- Events?: string[];
207
-
208
- NextToken?: string;
209
- }
210
- export interface ListAppMonitorsRequest {
211
-
212
- MaxResults?: number;
213
-
214
- NextToken?: string;
215
- }
216
-
217
- export interface AppMonitorSummary {
218
-
219
- Name?: string;
220
-
221
- Id?: string;
222
-
223
- Created?: string;
224
-
225
- LastModified?: string;
226
-
227
- State?: StateEnum | string;
228
- }
229
- export interface ListAppMonitorsResponse {
230
-
231
- NextToken?: string;
232
-
233
- AppMonitorSummaries?: AppMonitorSummary[];
234
- }
235
- export interface UpdateAppMonitorRequest {
236
-
237
- Name: string | undefined;
238
-
239
- Domain?: string;
240
-
241
- AppMonitorConfiguration?: AppMonitorConfiguration;
242
-
243
- CwLogEnabled?: boolean;
244
- }
245
- export interface UpdateAppMonitorResponse {
246
- }
247
- export interface ListTagsForResourceRequest {
248
-
249
- ResourceArn: string | undefined;
250
- }
251
- export interface ListTagsForResourceResponse {
252
-
253
- ResourceArn: string | undefined;
254
-
255
- Tags: Record<string, string> | undefined;
256
- }
257
-
258
- export interface RumEvent {
259
-
260
- id: string | undefined;
261
-
262
- timestamp: Date | undefined;
263
-
264
- type: string | undefined;
265
-
266
- metadata?: __LazyJsonString | string;
267
-
268
- details: __LazyJsonString | string | undefined;
269
- }
270
-
271
- export interface UserDetails {
272
-
273
- userId?: string;
274
-
275
- sessionId?: string;
276
- }
277
- export interface PutRumEventsRequest {
278
-
279
- Id: string | undefined;
280
-
281
- BatchId: string | undefined;
282
-
283
- AppMonitorDetails: AppMonitorDetails | undefined;
284
-
285
- UserDetails: UserDetails | undefined;
286
-
287
- RumEvents: RumEvent[] | undefined;
288
- }
289
- export interface PutRumEventsResponse {
290
- }
291
- export interface TagResourceRequest {
292
-
293
- ResourceArn: string | undefined;
294
-
295
- Tags: Record<string, string> | undefined;
296
- }
297
- export interface TagResourceResponse {
298
- }
299
- export interface UntagResourceRequest {
300
-
301
- ResourceArn: string | undefined;
302
-
303
- TagKeys: string[] | undefined;
304
- }
305
- export interface UntagResourceResponse {
306
- }
307
-
308
- export declare const AppMonitorConfigurationFilterSensitiveLog: (obj: AppMonitorConfiguration) => any;
309
-
310
- export declare const CwLogFilterSensitiveLog: (obj: CwLog) => any;
311
-
312
- export declare const DataStorageFilterSensitiveLog: (obj: DataStorage) => any;
313
-
314
- export declare const AppMonitorFilterSensitiveLog: (obj: AppMonitor) => any;
315
-
316
- export declare const AppMonitorDetailsFilterSensitiveLog: (obj: AppMonitorDetails) => any;
317
-
318
- export declare const CreateAppMonitorRequestFilterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
319
-
320
- export declare const CreateAppMonitorResponseFilterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
321
-
322
- export declare const DeleteAppMonitorRequestFilterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
323
-
324
- export declare const DeleteAppMonitorResponseFilterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
325
-
326
- export declare const GetAppMonitorRequestFilterSensitiveLog: (obj: GetAppMonitorRequest) => any;
327
-
328
- export declare const GetAppMonitorResponseFilterSensitiveLog: (obj: GetAppMonitorResponse) => any;
329
-
330
- export declare const QueryFilterFilterSensitiveLog: (obj: QueryFilter) => any;
331
-
332
- export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
333
-
334
- export declare const GetAppMonitorDataRequestFilterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
335
-
336
- export declare const GetAppMonitorDataResponseFilterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
337
-
338
- export declare const ListAppMonitorsRequestFilterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
339
-
340
- export declare const AppMonitorSummaryFilterSensitiveLog: (obj: AppMonitorSummary) => any;
341
-
342
- export declare const ListAppMonitorsResponseFilterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
343
-
344
- export declare const UpdateAppMonitorRequestFilterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
345
-
346
- export declare const UpdateAppMonitorResponseFilterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
347
-
348
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
349
-
350
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
351
-
352
- export declare const RumEventFilterSensitiveLog: (obj: RumEvent) => any;
353
-
354
- export declare const UserDetailsFilterSensitiveLog: (obj: UserDetails) => any;
355
-
356
- export declare const PutRumEventsRequestFilterSensitiveLog: (obj: PutRumEventsRequest) => any;
357
-
358
- export declare const PutRumEventsResponseFilterSensitiveLog: (obj: PutRumEventsResponse) => any;
359
-
360
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
361
-
362
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
363
-
364
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
365
-
366
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import {
2
+ ExceptionOptionType as __ExceptionOptionType,
3
+ LazyJsonString as __LazyJsonString,
4
+ } from "@aws-sdk/smithy-client";
5
+ import { RUMServiceException as __BaseException } from "./RUMServiceException";
6
+
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+
11
+ constructor(
12
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
13
+ );
14
+ }
15
+ export declare enum Telemetry {
16
+ ERRORS = "errors",
17
+
18
+ HTTP = "http",
19
+
20
+ PERFORMANCE = "performance",
21
+ }
22
+
23
+ export interface AppMonitorConfiguration {
24
+ IdentityPoolId?: string;
25
+
26
+ ExcludedPages?: string[];
27
+
28
+ IncludedPages?: string[];
29
+
30
+ FavoritePages?: string[];
31
+
32
+ SessionSampleRate?: number;
33
+
34
+ GuestRoleArn?: string;
35
+
36
+ AllowCookies?: boolean;
37
+
38
+ Telemetries?: (Telemetry | string)[];
39
+
40
+ EnableXRay?: boolean;
41
+ }
42
+
43
+ export interface CwLog {
44
+ CwLogEnabled?: boolean;
45
+
46
+ CwLogGroup?: string;
47
+ }
48
+
49
+ export interface DataStorage {
50
+ CwLog?: CwLog;
51
+ }
52
+ export declare enum StateEnum {
53
+ ACTIVE = "ACTIVE",
54
+ CREATED = "CREATED",
55
+ DELETING = "DELETING",
56
+ }
57
+
58
+ export interface AppMonitor {
59
+ Name?: string;
60
+
61
+ Domain?: string;
62
+
63
+ Id?: string;
64
+
65
+ Created?: string;
66
+
67
+ LastModified?: string;
68
+
69
+ Tags?: Record<string, string>;
70
+
71
+ State?: StateEnum | string;
72
+
73
+ AppMonitorConfiguration?: AppMonitorConfiguration;
74
+
75
+ DataStorage?: DataStorage;
76
+ }
77
+
78
+ export interface AppMonitorDetails {
79
+ name?: string;
80
+
81
+ id?: string;
82
+
83
+ version?: string;
84
+ }
85
+
86
+ export declare class ConflictException extends __BaseException {
87
+ readonly name: "ConflictException";
88
+ readonly $fault: "client";
89
+
90
+ resourceName: string | undefined;
91
+
92
+ resourceType?: string;
93
+
94
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
95
+ }
96
+ export interface CreateAppMonitorRequest {
97
+ Name: string | undefined;
98
+
99
+ Domain: string | undefined;
100
+
101
+ Tags?: Record<string, string>;
102
+
103
+ AppMonitorConfiguration?: AppMonitorConfiguration;
104
+
105
+ CwLogEnabled?: boolean;
106
+ }
107
+ export interface CreateAppMonitorResponse {
108
+ Id?: string;
109
+ }
110
+
111
+ export declare class InternalServerException extends __BaseException {
112
+ readonly name: "InternalServerException";
113
+ readonly $fault: "server";
114
+ $retryable: {};
115
+
116
+ retryAfterSeconds?: number;
117
+
118
+ constructor(
119
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
120
+ );
121
+ }
122
+
123
+ export declare class ServiceQuotaExceededException extends __BaseException {
124
+ readonly name: "ServiceQuotaExceededException";
125
+ readonly $fault: "client";
126
+
127
+ constructor(
128
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
129
+ );
130
+ }
131
+
132
+ export declare class ThrottlingException extends __BaseException {
133
+ readonly name: "ThrottlingException";
134
+ readonly $fault: "client";
135
+ $retryable: {
136
+ throttling: boolean;
137
+ };
138
+
139
+ serviceCode?: string;
140
+
141
+ quotaCode?: string;
142
+
143
+ retryAfterSeconds?: number;
144
+
145
+ constructor(
146
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
147
+ );
148
+ }
149
+
150
+ export declare class ValidationException extends __BaseException {
151
+ readonly name: "ValidationException";
152
+ readonly $fault: "client";
153
+
154
+ constructor(
155
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
156
+ );
157
+ }
158
+ export interface DeleteAppMonitorRequest {
159
+ Name: string | undefined;
160
+ }
161
+ export interface DeleteAppMonitorResponse {}
162
+
163
+ export declare class ResourceNotFoundException extends __BaseException {
164
+ readonly name: "ResourceNotFoundException";
165
+ readonly $fault: "client";
166
+
167
+ resourceName: string | undefined;
168
+
169
+ resourceType?: string;
170
+
171
+ constructor(
172
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
173
+ );
174
+ }
175
+ export interface GetAppMonitorRequest {
176
+ Name: string | undefined;
177
+ }
178
+ export interface GetAppMonitorResponse {
179
+ AppMonitor?: AppMonitor;
180
+ }
181
+
182
+ export interface QueryFilter {
183
+ Name?: string;
184
+
185
+ Values?: string[];
186
+ }
187
+
188
+ export interface TimeRange {
189
+ After: number | undefined;
190
+
191
+ Before?: number;
192
+ }
193
+ export interface GetAppMonitorDataRequest {
194
+ Name: string | undefined;
195
+
196
+ TimeRange: TimeRange | undefined;
197
+
198
+ Filters?: QueryFilter[];
199
+
200
+ MaxResults?: number;
201
+
202
+ NextToken?: string;
203
+ }
204
+ export interface GetAppMonitorDataResponse {
205
+ Events?: string[];
206
+
207
+ NextToken?: string;
208
+ }
209
+ export interface ListAppMonitorsRequest {
210
+ MaxResults?: number;
211
+
212
+ NextToken?: string;
213
+ }
214
+
215
+ export interface AppMonitorSummary {
216
+ Name?: string;
217
+
218
+ Id?: string;
219
+
220
+ Created?: string;
221
+
222
+ LastModified?: string;
223
+
224
+ State?: StateEnum | string;
225
+ }
226
+ export interface ListAppMonitorsResponse {
227
+ NextToken?: string;
228
+
229
+ AppMonitorSummaries?: AppMonitorSummary[];
230
+ }
231
+ export interface UpdateAppMonitorRequest {
232
+ Name: string | undefined;
233
+
234
+ Domain?: string;
235
+
236
+ AppMonitorConfiguration?: AppMonitorConfiguration;
237
+
238
+ CwLogEnabled?: boolean;
239
+ }
240
+ export interface UpdateAppMonitorResponse {}
241
+ export interface ListTagsForResourceRequest {
242
+ ResourceArn: string | undefined;
243
+ }
244
+ export interface ListTagsForResourceResponse {
245
+ ResourceArn: string | undefined;
246
+
247
+ Tags: Record<string, string> | undefined;
248
+ }
249
+
250
+ export interface RumEvent {
251
+ id: string | undefined;
252
+
253
+ timestamp: Date | undefined;
254
+
255
+ type: string | undefined;
256
+
257
+ metadata?: __LazyJsonString | string;
258
+
259
+ details: __LazyJsonString | string | undefined;
260
+ }
261
+
262
+ export interface UserDetails {
263
+ userId?: string;
264
+
265
+ sessionId?: string;
266
+ }
267
+ export interface PutRumEventsRequest {
268
+ Id: string | undefined;
269
+
270
+ BatchId: string | undefined;
271
+
272
+ AppMonitorDetails: AppMonitorDetails | undefined;
273
+
274
+ UserDetails: UserDetails | undefined;
275
+
276
+ RumEvents: RumEvent[] | undefined;
277
+ }
278
+ export interface PutRumEventsResponse {}
279
+ export interface TagResourceRequest {
280
+ ResourceArn: string | undefined;
281
+
282
+ Tags: Record<string, string> | undefined;
283
+ }
284
+ export interface TagResourceResponse {}
285
+ export interface UntagResourceRequest {
286
+ ResourceArn: string | undefined;
287
+
288
+ TagKeys: string[] | undefined;
289
+ }
290
+ export interface UntagResourceResponse {}
291
+
292
+ export declare const AppMonitorConfigurationFilterSensitiveLog: (
293
+ obj: AppMonitorConfiguration
294
+ ) => any;
295
+
296
+ export declare const CwLogFilterSensitiveLog: (obj: CwLog) => any;
297
+
298
+ export declare const DataStorageFilterSensitiveLog: (obj: DataStorage) => any;
299
+
300
+ export declare const AppMonitorFilterSensitiveLog: (obj: AppMonitor) => any;
301
+
302
+ export declare const AppMonitorDetailsFilterSensitiveLog: (
303
+ obj: AppMonitorDetails
304
+ ) => any;
305
+
306
+ export declare const CreateAppMonitorRequestFilterSensitiveLog: (
307
+ obj: CreateAppMonitorRequest
308
+ ) => any;
309
+
310
+ export declare const CreateAppMonitorResponseFilterSensitiveLog: (
311
+ obj: CreateAppMonitorResponse
312
+ ) => any;
313
+
314
+ export declare const DeleteAppMonitorRequestFilterSensitiveLog: (
315
+ obj: DeleteAppMonitorRequest
316
+ ) => any;
317
+
318
+ export declare const DeleteAppMonitorResponseFilterSensitiveLog: (
319
+ obj: DeleteAppMonitorResponse
320
+ ) => any;
321
+
322
+ export declare const GetAppMonitorRequestFilterSensitiveLog: (
323
+ obj: GetAppMonitorRequest
324
+ ) => any;
325
+
326
+ export declare const GetAppMonitorResponseFilterSensitiveLog: (
327
+ obj: GetAppMonitorResponse
328
+ ) => any;
329
+
330
+ export declare const QueryFilterFilterSensitiveLog: (obj: QueryFilter) => any;
331
+
332
+ export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
333
+
334
+ export declare const GetAppMonitorDataRequestFilterSensitiveLog: (
335
+ obj: GetAppMonitorDataRequest
336
+ ) => any;
337
+
338
+ export declare const GetAppMonitorDataResponseFilterSensitiveLog: (
339
+ obj: GetAppMonitorDataResponse
340
+ ) => any;
341
+
342
+ export declare const ListAppMonitorsRequestFilterSensitiveLog: (
343
+ obj: ListAppMonitorsRequest
344
+ ) => any;
345
+
346
+ export declare const AppMonitorSummaryFilterSensitiveLog: (
347
+ obj: AppMonitorSummary
348
+ ) => any;
349
+
350
+ export declare const ListAppMonitorsResponseFilterSensitiveLog: (
351
+ obj: ListAppMonitorsResponse
352
+ ) => any;
353
+
354
+ export declare const UpdateAppMonitorRequestFilterSensitiveLog: (
355
+ obj: UpdateAppMonitorRequest
356
+ ) => any;
357
+
358
+ export declare const UpdateAppMonitorResponseFilterSensitiveLog: (
359
+ obj: UpdateAppMonitorResponse
360
+ ) => any;
361
+
362
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
363
+ obj: ListTagsForResourceRequest
364
+ ) => any;
365
+
366
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
367
+ obj: ListTagsForResourceResponse
368
+ ) => any;
369
+
370
+ export declare const RumEventFilterSensitiveLog: (obj: RumEvent) => any;
371
+
372
+ export declare const UserDetailsFilterSensitiveLog: (obj: UserDetails) => any;
373
+
374
+ export declare const PutRumEventsRequestFilterSensitiveLog: (
375
+ obj: PutRumEventsRequest
376
+ ) => any;
377
+
378
+ export declare const PutRumEventsResponseFilterSensitiveLog: (
379
+ obj: PutRumEventsResponse
380
+ ) => any;
381
+
382
+ export declare const TagResourceRequestFilterSensitiveLog: (
383
+ obj: TagResourceRequest
384
+ ) => any;
385
+
386
+ export declare const TagResourceResponseFilterSensitiveLog: (
387
+ obj: TagResourceResponse
388
+ ) => any;
389
+
390
+ export declare const UntagResourceRequestFilterSensitiveLog: (
391
+ obj: UntagResourceRequest
392
+ ) => any;
393
+
394
+ export declare const UntagResourceResponseFilterSensitiveLog: (
395
+ obj: UntagResourceResponse
396
+ ) => any;