@aws-sdk/client-rum 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/RUM.d.ts +184 -55
- package/dist-types/ts3.4/RUMClient.d.ts +188 -83
- package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RUMServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +396 -366
- package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,366 +1,396 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
export interface AppMonitorDetails {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
}
|
|
204
|
-
export interface GetAppMonitorDataResponse {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
export declare const
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export declare const
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export declare const
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
export declare const
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
export declare const
|
|
327
|
-
|
|
328
|
-
|
|
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
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
export declare const
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export declare const
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
export declare const
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
export declare const
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export declare const
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
export declare const
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
export declare const
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export declare const
|
|
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;
|