@aws-sdk/client-rum 3.169.0 → 3.171.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 +174 -55
  3. package/dist-types/ts3.4/RUMClient.d.ts +163 -83
  4. package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +35 -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 +7 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +281 -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 +65 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  29. package/package.json +34 -34
@@ -1,366 +1,281 @@
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
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+ export declare enum Telemetry {
14
+ ERRORS = "errors",
15
+ HTTP = "http",
16
+ PERFORMANCE = "performance",
17
+ }
18
+ export interface AppMonitorConfiguration {
19
+ IdentityPoolId?: string;
20
+ ExcludedPages?: string[];
21
+ IncludedPages?: string[];
22
+ FavoritePages?: string[];
23
+ SessionSampleRate?: number;
24
+ GuestRoleArn?: string;
25
+ AllowCookies?: boolean;
26
+ Telemetries?: (Telemetry | string)[];
27
+ EnableXRay?: boolean;
28
+ }
29
+ export interface CwLog {
30
+ CwLogEnabled?: boolean;
31
+ CwLogGroup?: string;
32
+ }
33
+ export interface DataStorage {
34
+ CwLog?: CwLog;
35
+ }
36
+ export declare enum StateEnum {
37
+ ACTIVE = "ACTIVE",
38
+ CREATED = "CREATED",
39
+ DELETING = "DELETING",
40
+ }
41
+ export interface AppMonitor {
42
+ Name?: string;
43
+ Domain?: string;
44
+ Id?: string;
45
+ Created?: string;
46
+ LastModified?: string;
47
+ Tags?: Record<string, string>;
48
+ State?: StateEnum | string;
49
+ AppMonitorConfiguration?: AppMonitorConfiguration;
50
+ DataStorage?: DataStorage;
51
+ }
52
+ export interface AppMonitorDetails {
53
+ name?: string;
54
+ id?: string;
55
+ version?: string;
56
+ }
57
+ export declare class ConflictException extends __BaseException {
58
+ readonly name: "ConflictException";
59
+ readonly $fault: "client";
60
+ resourceName: string | undefined;
61
+ resourceType?: string;
62
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
63
+ }
64
+ export interface CreateAppMonitorRequest {
65
+ Name: string | undefined;
66
+ Domain: string | undefined;
67
+ Tags?: Record<string, string>;
68
+ AppMonitorConfiguration?: AppMonitorConfiguration;
69
+ CwLogEnabled?: boolean;
70
+ }
71
+ export interface CreateAppMonitorResponse {
72
+ Id?: string;
73
+ }
74
+ export declare class InternalServerException extends __BaseException {
75
+ readonly name: "InternalServerException";
76
+ readonly $fault: "server";
77
+ $retryable: {};
78
+ retryAfterSeconds?: number;
79
+ constructor(
80
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
81
+ );
82
+ }
83
+ export declare class ServiceQuotaExceededException extends __BaseException {
84
+ readonly name: "ServiceQuotaExceededException";
85
+ readonly $fault: "client";
86
+ constructor(
87
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
88
+ );
89
+ }
90
+ export declare class ThrottlingException extends __BaseException {
91
+ readonly name: "ThrottlingException";
92
+ readonly $fault: "client";
93
+ $retryable: {
94
+ throttling: boolean;
95
+ };
96
+ serviceCode?: string;
97
+ quotaCode?: string;
98
+ retryAfterSeconds?: number;
99
+ constructor(
100
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
101
+ );
102
+ }
103
+ export declare class ValidationException extends __BaseException {
104
+ readonly name: "ValidationException";
105
+ readonly $fault: "client";
106
+ constructor(
107
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
108
+ );
109
+ }
110
+ export interface DeleteAppMonitorRequest {
111
+ Name: string | undefined;
112
+ }
113
+ export interface DeleteAppMonitorResponse {}
114
+ export declare class ResourceNotFoundException extends __BaseException {
115
+ readonly name: "ResourceNotFoundException";
116
+ readonly $fault: "client";
117
+ resourceName: string | undefined;
118
+ resourceType?: string;
119
+ constructor(
120
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
121
+ );
122
+ }
123
+ export interface GetAppMonitorRequest {
124
+ Name: string | undefined;
125
+ }
126
+ export interface GetAppMonitorResponse {
127
+ AppMonitor?: AppMonitor;
128
+ }
129
+ export interface QueryFilter {
130
+ Name?: string;
131
+ Values?: string[];
132
+ }
133
+ export interface TimeRange {
134
+ After: number | undefined;
135
+ Before?: number;
136
+ }
137
+ export interface GetAppMonitorDataRequest {
138
+ Name: string | undefined;
139
+ TimeRange: TimeRange | undefined;
140
+ Filters?: QueryFilter[];
141
+ MaxResults?: number;
142
+ NextToken?: string;
143
+ }
144
+ export interface GetAppMonitorDataResponse {
145
+ Events?: string[];
146
+ NextToken?: string;
147
+ }
148
+ export interface ListAppMonitorsRequest {
149
+ MaxResults?: number;
150
+ NextToken?: string;
151
+ }
152
+ export interface AppMonitorSummary {
153
+ Name?: string;
154
+ Id?: string;
155
+ Created?: string;
156
+ LastModified?: string;
157
+ State?: StateEnum | string;
158
+ }
159
+ export interface ListAppMonitorsResponse {
160
+ NextToken?: string;
161
+ AppMonitorSummaries?: AppMonitorSummary[];
162
+ }
163
+ export interface UpdateAppMonitorRequest {
164
+ Name: string | undefined;
165
+ Domain?: string;
166
+ AppMonitorConfiguration?: AppMonitorConfiguration;
167
+ CwLogEnabled?: boolean;
168
+ }
169
+ export interface UpdateAppMonitorResponse {}
170
+ export interface ListTagsForResourceRequest {
171
+ ResourceArn: string | undefined;
172
+ }
173
+ export interface ListTagsForResourceResponse {
174
+ ResourceArn: string | undefined;
175
+ Tags: Record<string, string> | undefined;
176
+ }
177
+ export interface RumEvent {
178
+ id: string | undefined;
179
+ timestamp: Date | undefined;
180
+ type: string | undefined;
181
+ metadata?: __LazyJsonString | string;
182
+ details: __LazyJsonString | string | undefined;
183
+ }
184
+ export interface UserDetails {
185
+ userId?: string;
186
+ sessionId?: string;
187
+ }
188
+ export interface PutRumEventsRequest {
189
+ Id: string | undefined;
190
+ BatchId: string | undefined;
191
+ AppMonitorDetails: AppMonitorDetails | undefined;
192
+ UserDetails: UserDetails | undefined;
193
+ RumEvents: RumEvent[] | undefined;
194
+ }
195
+ export interface PutRumEventsResponse {}
196
+ export interface TagResourceRequest {
197
+ ResourceArn: string | undefined;
198
+ Tags: Record<string, string> | undefined;
199
+ }
200
+ export interface TagResourceResponse {}
201
+ export interface UntagResourceRequest {
202
+ ResourceArn: string | undefined;
203
+ TagKeys: string[] | undefined;
204
+ }
205
+ export interface UntagResourceResponse {}
206
+ export declare const AppMonitorConfigurationFilterSensitiveLog: (
207
+ obj: AppMonitorConfiguration
208
+ ) => any;
209
+ export declare const CwLogFilterSensitiveLog: (obj: CwLog) => any;
210
+ export declare const DataStorageFilterSensitiveLog: (obj: DataStorage) => any;
211
+ export declare const AppMonitorFilterSensitiveLog: (obj: AppMonitor) => any;
212
+ export declare const AppMonitorDetailsFilterSensitiveLog: (
213
+ obj: AppMonitorDetails
214
+ ) => any;
215
+ export declare const CreateAppMonitorRequestFilterSensitiveLog: (
216
+ obj: CreateAppMonitorRequest
217
+ ) => any;
218
+ export declare const CreateAppMonitorResponseFilterSensitiveLog: (
219
+ obj: CreateAppMonitorResponse
220
+ ) => any;
221
+ export declare const DeleteAppMonitorRequestFilterSensitiveLog: (
222
+ obj: DeleteAppMonitorRequest
223
+ ) => any;
224
+ export declare const DeleteAppMonitorResponseFilterSensitiveLog: (
225
+ obj: DeleteAppMonitorResponse
226
+ ) => any;
227
+ export declare const GetAppMonitorRequestFilterSensitiveLog: (
228
+ obj: GetAppMonitorRequest
229
+ ) => any;
230
+ export declare const GetAppMonitorResponseFilterSensitiveLog: (
231
+ obj: GetAppMonitorResponse
232
+ ) => any;
233
+ export declare const QueryFilterFilterSensitiveLog: (obj: QueryFilter) => any;
234
+ export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
235
+ export declare const GetAppMonitorDataRequestFilterSensitiveLog: (
236
+ obj: GetAppMonitorDataRequest
237
+ ) => any;
238
+ export declare const GetAppMonitorDataResponseFilterSensitiveLog: (
239
+ obj: GetAppMonitorDataResponse
240
+ ) => any;
241
+ export declare const ListAppMonitorsRequestFilterSensitiveLog: (
242
+ obj: ListAppMonitorsRequest
243
+ ) => any;
244
+ export declare const AppMonitorSummaryFilterSensitiveLog: (
245
+ obj: AppMonitorSummary
246
+ ) => any;
247
+ export declare const ListAppMonitorsResponseFilterSensitiveLog: (
248
+ obj: ListAppMonitorsResponse
249
+ ) => any;
250
+ export declare const UpdateAppMonitorRequestFilterSensitiveLog: (
251
+ obj: UpdateAppMonitorRequest
252
+ ) => any;
253
+ export declare const UpdateAppMonitorResponseFilterSensitiveLog: (
254
+ obj: UpdateAppMonitorResponse
255
+ ) => any;
256
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
257
+ obj: ListTagsForResourceRequest
258
+ ) => any;
259
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
260
+ obj: ListTagsForResourceResponse
261
+ ) => any;
262
+ export declare const RumEventFilterSensitiveLog: (obj: RumEvent) => any;
263
+ export declare const UserDetailsFilterSensitiveLog: (obj: UserDetails) => any;
264
+ export declare const PutRumEventsRequestFilterSensitiveLog: (
265
+ obj: PutRumEventsRequest
266
+ ) => any;
267
+ export declare const PutRumEventsResponseFilterSensitiveLog: (
268
+ obj: PutRumEventsResponse
269
+ ) => any;
270
+ export declare const TagResourceRequestFilterSensitiveLog: (
271
+ obj: TagResourceRequest
272
+ ) => any;
273
+ export declare const TagResourceResponseFilterSensitiveLog: (
274
+ obj: TagResourceResponse
275
+ ) => any;
276
+ export declare const UntagResourceRequestFilterSensitiveLog: (
277
+ obj: UntagResourceRequest
278
+ ) => any;
279
+ export declare const UntagResourceResponseFilterSensitiveLog: (
280
+ obj: UntagResourceResponse
281
+ ) => any;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput } from "../commands/GetAppMonitorDataCommand";
3
- import { RUMPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetAppMonitorData(config: RUMPaginationConfiguration, input: GetAppMonitorDataCommandInput, ...additionalArguments: any): Paginator<GetAppMonitorDataCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetAppMonitorDataCommandInput,
4
+ GetAppMonitorDataCommandOutput,
5
+ } from "../commands/GetAppMonitorDataCommand";
6
+ import { RUMPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetAppMonitorData(
8
+ config: RUMPaginationConfiguration,
9
+ input: GetAppMonitorDataCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetAppMonitorDataCommandOutput>;