@aws-sdk/client-rum 3.50.0 → 3.53.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 (40) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/RUMServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +105 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +140 -442
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/RUMServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +98 -1
  9. package/dist-es/protocols/Aws_restJson1.js +253 -490
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/RUMServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +52 -31
  13. package/dist-types/ts3.4/RUM.d.ts +55 -0
  14. package/dist-types/ts3.4/RUMClient.d.ts +83 -0
  15. package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  27. package/dist-types/ts3.4/index.d.ts +6 -0
  28. package/dist-types/ts3.4/models/RUMServiceException.d.ts +6 -0
  29. package/dist-types/ts3.4/models/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +434 -0
  31. package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +32 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  40. package/package.json +33 -33
@@ -0,0 +1,434 @@
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
+ export declare namespace AppMonitorConfiguration {
40
+
41
+ const filterSensitiveLog: (obj: AppMonitorConfiguration) => any;
42
+ }
43
+
44
+ export interface CwLog {
45
+
46
+ CwLogEnabled?: boolean;
47
+
48
+ CwLogGroup?: string;
49
+ }
50
+ export declare namespace CwLog {
51
+
52
+ const filterSensitiveLog: (obj: CwLog) => any;
53
+ }
54
+
55
+ export interface DataStorage {
56
+
57
+ CwLog?: CwLog;
58
+ }
59
+ export declare namespace DataStorage {
60
+
61
+ const filterSensitiveLog: (obj: DataStorage) => any;
62
+ }
63
+ export declare enum StateEnum {
64
+ ACTIVE = "ACTIVE",
65
+ CREATED = "CREATED",
66
+ DELETING = "DELETING"
67
+ }
68
+
69
+ export interface AppMonitor {
70
+
71
+ Name?: string;
72
+
73
+ Domain?: string;
74
+
75
+ Id?: string;
76
+
77
+ Created?: string;
78
+
79
+ LastModified?: string;
80
+
81
+ Tags?: {
82
+ [key: string]: string;
83
+ };
84
+
85
+ State?: StateEnum | string;
86
+
87
+ AppMonitorConfiguration?: AppMonitorConfiguration;
88
+
89
+ DataStorage?: DataStorage;
90
+ }
91
+ export declare namespace AppMonitor {
92
+
93
+ const filterSensitiveLog: (obj: AppMonitor) => any;
94
+ }
95
+
96
+ export interface AppMonitorDetails {
97
+
98
+ name?: string;
99
+
100
+ id?: string;
101
+
102
+ version?: string;
103
+ }
104
+ export declare namespace AppMonitorDetails {
105
+
106
+ const filterSensitiveLog: (obj: AppMonitorDetails) => any;
107
+ }
108
+
109
+ export declare class ConflictException extends __BaseException {
110
+ readonly name: "ConflictException";
111
+ readonly $fault: "client";
112
+
113
+ resourceName: string | undefined;
114
+
115
+ resourceType?: string;
116
+
117
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
118
+ }
119
+ export interface CreateAppMonitorRequest {
120
+
121
+ Name: string | undefined;
122
+
123
+ Domain: string | undefined;
124
+
125
+ Tags?: {
126
+ [key: string]: string;
127
+ };
128
+
129
+ AppMonitorConfiguration?: AppMonitorConfiguration;
130
+
131
+ CwLogEnabled?: boolean;
132
+ }
133
+ export declare namespace CreateAppMonitorRequest {
134
+
135
+ const filterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
136
+ }
137
+ export interface CreateAppMonitorResponse {
138
+
139
+ Id?: string;
140
+ }
141
+ export declare namespace CreateAppMonitorResponse {
142
+
143
+ const filterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
144
+ }
145
+
146
+ export declare class InternalServerException extends __BaseException {
147
+ readonly name: "InternalServerException";
148
+ readonly $fault: "server";
149
+ $retryable: {};
150
+
151
+ retryAfterSeconds?: number;
152
+
153
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
154
+ }
155
+
156
+ export declare class ServiceQuotaExceededException extends __BaseException {
157
+ readonly name: "ServiceQuotaExceededException";
158
+ readonly $fault: "client";
159
+
160
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
161
+ }
162
+
163
+ export declare class ThrottlingException extends __BaseException {
164
+ readonly name: "ThrottlingException";
165
+ readonly $fault: "client";
166
+ $retryable: {
167
+ throttling: boolean;
168
+ };
169
+
170
+ serviceCode?: string;
171
+
172
+ quotaCode?: string;
173
+
174
+ retryAfterSeconds?: number;
175
+
176
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
177
+ }
178
+
179
+ export declare class ValidationException extends __BaseException {
180
+ readonly name: "ValidationException";
181
+ readonly $fault: "client";
182
+
183
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
184
+ }
185
+ export interface DeleteAppMonitorRequest {
186
+
187
+ Name: string | undefined;
188
+ }
189
+ export declare namespace DeleteAppMonitorRequest {
190
+
191
+ const filterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
192
+ }
193
+ export interface DeleteAppMonitorResponse {
194
+ }
195
+ export declare namespace DeleteAppMonitorResponse {
196
+
197
+ const filterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
198
+ }
199
+
200
+ export declare class ResourceNotFoundException extends __BaseException {
201
+ readonly name: "ResourceNotFoundException";
202
+ readonly $fault: "client";
203
+
204
+ resourceName: string | undefined;
205
+
206
+ resourceType?: string;
207
+
208
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
209
+ }
210
+ export interface GetAppMonitorRequest {
211
+
212
+ Name: string | undefined;
213
+ }
214
+ export declare namespace GetAppMonitorRequest {
215
+
216
+ const filterSensitiveLog: (obj: GetAppMonitorRequest) => any;
217
+ }
218
+ export interface GetAppMonitorResponse {
219
+
220
+ AppMonitor?: AppMonitor;
221
+ }
222
+ export declare namespace GetAppMonitorResponse {
223
+
224
+ const filterSensitiveLog: (obj: GetAppMonitorResponse) => any;
225
+ }
226
+
227
+ export interface QueryFilter {
228
+
229
+ Name?: string;
230
+
231
+ Values?: string[];
232
+ }
233
+ export declare namespace QueryFilter {
234
+
235
+ const filterSensitiveLog: (obj: QueryFilter) => any;
236
+ }
237
+
238
+ export interface TimeRange {
239
+
240
+ After: number | undefined;
241
+
242
+ Before?: number;
243
+ }
244
+ export declare namespace TimeRange {
245
+
246
+ const filterSensitiveLog: (obj: TimeRange) => any;
247
+ }
248
+ export interface GetAppMonitorDataRequest {
249
+
250
+ Name: string | undefined;
251
+
252
+ TimeRange: TimeRange | undefined;
253
+
254
+ Filters?: QueryFilter[];
255
+
256
+ MaxResults?: number;
257
+
258
+ NextToken?: string;
259
+ }
260
+ export declare namespace GetAppMonitorDataRequest {
261
+
262
+ const filterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
263
+ }
264
+ export interface GetAppMonitorDataResponse {
265
+
266
+ Events?: string[];
267
+
268
+ NextToken?: string;
269
+ }
270
+ export declare namespace GetAppMonitorDataResponse {
271
+
272
+ const filterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
273
+ }
274
+ export interface ListAppMonitorsRequest {
275
+
276
+ MaxResults?: number;
277
+
278
+ NextToken?: string;
279
+ }
280
+ export declare namespace ListAppMonitorsRequest {
281
+
282
+ const filterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
283
+ }
284
+
285
+ export interface AppMonitorSummary {
286
+
287
+ Name?: string;
288
+
289
+ Id?: string;
290
+
291
+ Created?: string;
292
+
293
+ LastModified?: string;
294
+
295
+ State?: StateEnum | string;
296
+ }
297
+ export declare namespace AppMonitorSummary {
298
+
299
+ const filterSensitiveLog: (obj: AppMonitorSummary) => any;
300
+ }
301
+ export interface ListAppMonitorsResponse {
302
+
303
+ NextToken?: string;
304
+
305
+ AppMonitorSummaries?: AppMonitorSummary[];
306
+ }
307
+ export declare namespace ListAppMonitorsResponse {
308
+
309
+ const filterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
310
+ }
311
+ export interface UpdateAppMonitorRequest {
312
+
313
+ Name: string | undefined;
314
+
315
+ Domain?: string;
316
+
317
+ AppMonitorConfiguration?: AppMonitorConfiguration;
318
+
319
+ CwLogEnabled?: boolean;
320
+ }
321
+ export declare namespace UpdateAppMonitorRequest {
322
+
323
+ const filterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
324
+ }
325
+ export interface UpdateAppMonitorResponse {
326
+ }
327
+ export declare namespace UpdateAppMonitorResponse {
328
+
329
+ const filterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
330
+ }
331
+ export interface ListTagsForResourceRequest {
332
+
333
+ ResourceArn: string | undefined;
334
+ }
335
+ export declare namespace ListTagsForResourceRequest {
336
+
337
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
338
+ }
339
+ export interface ListTagsForResourceResponse {
340
+
341
+ ResourceArn: string | undefined;
342
+
343
+ Tags: {
344
+ [key: string]: string;
345
+ } | undefined;
346
+ }
347
+ export declare namespace ListTagsForResourceResponse {
348
+
349
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
350
+ }
351
+
352
+ export interface RumEvent {
353
+
354
+ id: string | undefined;
355
+
356
+ timestamp: Date | undefined;
357
+
358
+ type: string | undefined;
359
+
360
+ metadata?: __LazyJsonString | string;
361
+
362
+ details: __LazyJsonString | string | undefined;
363
+ }
364
+ export declare namespace RumEvent {
365
+
366
+ const filterSensitiveLog: (obj: RumEvent) => any;
367
+ }
368
+
369
+ export interface UserDetails {
370
+
371
+ userId?: string;
372
+
373
+ sessionId?: string;
374
+ }
375
+ export declare namespace UserDetails {
376
+
377
+ const filterSensitiveLog: (obj: UserDetails) => any;
378
+ }
379
+ export interface PutRumEventsRequest {
380
+
381
+ Id: string | undefined;
382
+
383
+ BatchId: string | undefined;
384
+
385
+ AppMonitorDetails: AppMonitorDetails | undefined;
386
+
387
+ UserDetails: UserDetails | undefined;
388
+
389
+ RumEvents: RumEvent[] | undefined;
390
+ }
391
+ export declare namespace PutRumEventsRequest {
392
+
393
+ const filterSensitiveLog: (obj: PutRumEventsRequest) => any;
394
+ }
395
+ export interface PutRumEventsResponse {
396
+ }
397
+ export declare namespace PutRumEventsResponse {
398
+
399
+ const filterSensitiveLog: (obj: PutRumEventsResponse) => any;
400
+ }
401
+ export interface TagResourceRequest {
402
+
403
+ ResourceArn: string | undefined;
404
+
405
+ Tags: {
406
+ [key: string]: string;
407
+ } | undefined;
408
+ }
409
+ export declare namespace TagResourceRequest {
410
+
411
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
412
+ }
413
+ export interface TagResourceResponse {
414
+ }
415
+ export declare namespace TagResourceResponse {
416
+
417
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
418
+ }
419
+ export interface UntagResourceRequest {
420
+
421
+ ResourceArn: string | undefined;
422
+
423
+ TagKeys: string[] | undefined;
424
+ }
425
+ export declare namespace UntagResourceRequest {
426
+
427
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
428
+ }
429
+ export interface UntagResourceResponse {
430
+ }
431
+ export declare namespace UntagResourceResponse {
432
+
433
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
434
+ }
@@ -0,0 +1,4 @@
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>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { RUM } from "../RUM";
3
+ import { RUMClient } from "../RUMClient";
4
+ export interface RUMPaginationConfiguration extends PaginationConfiguration {
5
+ client: RUM | RUMClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput } from "../commands/ListAppMonitorsCommand";
3
+ import { RUMPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListAppMonitors(config: RUMPaginationConfiguration, input: ListAppMonitorsCommandInput, ...additionalArguments: any): Paginator<ListAppMonitorsCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./GetAppMonitorDataPaginator";
2
+ export * from "./Interfaces";
3
+ export * from "./ListAppMonitorsPaginator";
@@ -0,0 +1,32 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput } from "../commands/CreateAppMonitorCommand";
4
+ import { DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput } from "../commands/DeleteAppMonitorCommand";
5
+ import { GetAppMonitorCommandInput, GetAppMonitorCommandOutput } from "../commands/GetAppMonitorCommand";
6
+ import { GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput } from "../commands/GetAppMonitorDataCommand";
7
+ import { ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput } from "../commands/ListAppMonitorsCommand";
8
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
9
+ import { PutRumEventsCommandInput, PutRumEventsCommandOutput } from "../commands/PutRumEventsCommand";
10
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
+ import { UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput } from "../commands/UpdateAppMonitorCommand";
13
+ export declare const serializeAws_restJson1CreateAppMonitorCommand: (input: CreateAppMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_restJson1DeleteAppMonitorCommand: (input: DeleteAppMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const serializeAws_restJson1GetAppMonitorCommand: (input: GetAppMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_restJson1GetAppMonitorDataCommand: (input: GetAppMonitorDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_restJson1ListAppMonitorsCommand: (input: ListAppMonitorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1PutRumEventsCommand: (input: PutRumEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1UpdateAppMonitorCommand: (input: UpdateAppMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const deserializeAws_restJson1CreateAppMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppMonitorCommandOutput>;
24
+ export declare const deserializeAws_restJson1DeleteAppMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppMonitorCommandOutput>;
25
+ export declare const deserializeAws_restJson1GetAppMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppMonitorCommandOutput>;
26
+ export declare const deserializeAws_restJson1GetAppMonitorDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppMonitorDataCommandOutput>;
27
+ export declare const deserializeAws_restJson1ListAppMonitorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppMonitorsCommandOutput>;
28
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
29
+ export declare const deserializeAws_restJson1PutRumEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRumEventsCommandOutput>;
30
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
31
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
32
+ export declare const deserializeAws_restJson1UpdateAppMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAppMonitorCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { RUMClientConfig } from "./RUMClient";
3
+
4
+ export declare const getRuntimeConfig: (config: RUMClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { RUMClientConfig } from "./RUMClient";
3
+
4
+ export declare const getRuntimeConfig: (config: RUMClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { RUMClientConfig } from "./RUMClient";
2
+
3
+ export declare const getRuntimeConfig: (config: RUMClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { RUMClientConfig } from "./RUMClient";
3
+
4
+ export declare const getRuntimeConfig: (config: RUMClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };