@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
@@ -3,3 +3,4 @@ export * from "./RUMClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { RUMServiceException } from "./models/RUMServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from RUM service.
4
+ */
5
+ export declare class RUMServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,12 +1,15 @@
1
- import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
+ import { RUMServiceException as __BaseException } from "./RUMServiceException";
3
3
  /**
4
4
  * <p>You don't have sufficient permissions to perform this action.</p>
5
5
  */
6
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
7
- name: "AccessDeniedException";
8
- $fault: "client";
9
- message: string | undefined;
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
13
  }
11
14
  export declare enum Telemetry {
12
15
  /**
@@ -222,10 +225,9 @@ export declare namespace AppMonitorDetails {
222
225
  /**
223
226
  * <p>This operation attempted to create a resource that already exists.</p>
224
227
  */
225
- export interface ConflictException extends __SmithyException, $MetadataBearer {
226
- name: "ConflictException";
227
- $fault: "client";
228
- message: string | undefined;
228
+ export declare class ConflictException extends __BaseException {
229
+ readonly name: "ConflictException";
230
+ readonly $fault: "client";
229
231
  /**
230
232
  * <p>The name of the resource that is associated with the error.</p>
231
233
  */
@@ -234,6 +236,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
234
236
  * <p>The type of the resource that is associated with the error.</p>
235
237
  */
236
238
  resourceType?: string;
239
+ /**
240
+ * @internal
241
+ */
242
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
237
243
  }
238
244
  export interface CreateAppMonitorRequest {
239
245
  /**
@@ -297,34 +303,39 @@ export declare namespace CreateAppMonitorResponse {
297
303
  /**
298
304
  * <p>Internal service exception.</p>
299
305
  */
300
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
301
- name: "InternalServerException";
302
- $fault: "server";
306
+ export declare class InternalServerException extends __BaseException {
307
+ readonly name: "InternalServerException";
308
+ readonly $fault: "server";
303
309
  $retryable: {};
304
- message: string | undefined;
305
310
  /**
306
311
  * <p>The value of a parameter in the request caused an error.</p>
307
312
  */
308
313
  retryAfterSeconds?: number;
314
+ /**
315
+ * @internal
316
+ */
317
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
309
318
  }
310
319
  /**
311
320
  * <p>This request exceeds a service quota.</p>
312
321
  */
313
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
314
- name: "ServiceQuotaExceededException";
315
- $fault: "client";
316
- message: string | undefined;
322
+ export declare class ServiceQuotaExceededException extends __BaseException {
323
+ readonly name: "ServiceQuotaExceededException";
324
+ readonly $fault: "client";
325
+ /**
326
+ * @internal
327
+ */
328
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
317
329
  }
318
330
  /**
319
331
  * <p>The request was throttled because of quota limits.</p>
320
332
  */
321
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
322
- name: "ThrottlingException";
323
- $fault: "client";
333
+ export declare class ThrottlingException extends __BaseException {
334
+ readonly name: "ThrottlingException";
335
+ readonly $fault: "client";
324
336
  $retryable: {
325
- throttling: true;
337
+ throttling: boolean;
326
338
  };
327
- message: string | undefined;
328
339
  /**
329
340
  * <p>The ID of the service that is associated with the error.</p>
330
341
  */
@@ -337,14 +348,21 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
337
348
  * <p>The value of a parameter in the request caused an error.</p>
338
349
  */
339
350
  retryAfterSeconds?: number;
351
+ /**
352
+ * @internal
353
+ */
354
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
340
355
  }
341
356
  /**
342
357
  * <p>One of the arguments for the request is not valid.</p>
343
358
  */
344
- export interface ValidationException extends __SmithyException, $MetadataBearer {
345
- name: "ValidationException";
346
- $fault: "client";
347
- message: string | undefined;
359
+ export declare class ValidationException extends __BaseException {
360
+ readonly name: "ValidationException";
361
+ readonly $fault: "client";
362
+ /**
363
+ * @internal
364
+ */
365
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
348
366
  }
349
367
  export interface DeleteAppMonitorRequest {
350
368
  /**
@@ -369,10 +387,9 @@ export declare namespace DeleteAppMonitorResponse {
369
387
  /**
370
388
  * <p>Resource not found.</p>
371
389
  */
372
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
373
- name: "ResourceNotFoundException";
374
- $fault: "client";
375
- message: string | undefined;
390
+ export declare class ResourceNotFoundException extends __BaseException {
391
+ readonly name: "ResourceNotFoundException";
392
+ readonly $fault: "client";
376
393
  /**
377
394
  * <p>The name of the resource that is associated with the error.</p>
378
395
  */
@@ -381,6 +398,10 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
381
398
  * <p>The type of the resource that is associated with the error.</p>
382
399
  */
383
400
  resourceType?: string;
401
+ /**
402
+ * @internal
403
+ */
404
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
384
405
  }
385
406
  export interface GetAppMonitorRequest {
386
407
  /**
@@ -0,0 +1,55 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput } from "./commands/CreateAppMonitorCommand";
3
+ import { DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput } from "./commands/DeleteAppMonitorCommand";
4
+ import { GetAppMonitorCommandInput, GetAppMonitorCommandOutput } from "./commands/GetAppMonitorCommand";
5
+ import { GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput } from "./commands/GetAppMonitorDataCommand";
6
+ import { ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput } from "./commands/ListAppMonitorsCommand";
7
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
8
+ import { PutRumEventsCommandInput, PutRumEventsCommandOutput } from "./commands/PutRumEventsCommand";
9
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
10
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
11
+ import { UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput } from "./commands/UpdateAppMonitorCommand";
12
+ import { RUMClient } from "./RUMClient";
13
+
14
+ export declare class RUM extends RUMClient {
15
+
16
+ createAppMonitor(args: CreateAppMonitorCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppMonitorCommandOutput>;
17
+ createAppMonitor(args: CreateAppMonitorCommandInput, cb: (err: any, data?: CreateAppMonitorCommandOutput) => void): void;
18
+ createAppMonitor(args: CreateAppMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppMonitorCommandOutput) => void): void;
19
+
20
+ deleteAppMonitor(args: DeleteAppMonitorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppMonitorCommandOutput>;
21
+ deleteAppMonitor(args: DeleteAppMonitorCommandInput, cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void): void;
22
+ deleteAppMonitor(args: DeleteAppMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void): void;
23
+
24
+ getAppMonitor(args: GetAppMonitorCommandInput, options?: __HttpHandlerOptions): Promise<GetAppMonitorCommandOutput>;
25
+ getAppMonitor(args: GetAppMonitorCommandInput, cb: (err: any, data?: GetAppMonitorCommandOutput) => void): void;
26
+ getAppMonitor(args: GetAppMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppMonitorCommandOutput) => void): void;
27
+
28
+ getAppMonitorData(args: GetAppMonitorDataCommandInput, options?: __HttpHandlerOptions): Promise<GetAppMonitorDataCommandOutput>;
29
+ getAppMonitorData(args: GetAppMonitorDataCommandInput, cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void): void;
30
+ getAppMonitorData(args: GetAppMonitorDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void): void;
31
+
32
+ listAppMonitors(args: ListAppMonitorsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppMonitorsCommandOutput>;
33
+ listAppMonitors(args: ListAppMonitorsCommandInput, cb: (err: any, data?: ListAppMonitorsCommandOutput) => void): void;
34
+ listAppMonitors(args: ListAppMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppMonitorsCommandOutput) => void): void;
35
+
36
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
37
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
38
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
39
+
40
+ putRumEvents(args: PutRumEventsCommandInput, options?: __HttpHandlerOptions): Promise<PutRumEventsCommandOutput>;
41
+ putRumEvents(args: PutRumEventsCommandInput, cb: (err: any, data?: PutRumEventsCommandOutput) => void): void;
42
+ putRumEvents(args: PutRumEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRumEventsCommandOutput) => void): void;
43
+
44
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
45
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
46
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
47
+
48
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
49
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
50
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
51
+
52
+ updateAppMonitor(args: UpdateAppMonitorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppMonitorCommandOutput>;
53
+ updateAppMonitor(args: UpdateAppMonitorCommandInput, cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void): void;
54
+ updateAppMonitor(args: UpdateAppMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void): void;
55
+ }
@@ -0,0 +1,83 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput } from "./commands/CreateAppMonitorCommand";
10
+ import { DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput } from "./commands/DeleteAppMonitorCommand";
11
+ import { GetAppMonitorCommandInput, GetAppMonitorCommandOutput } from "./commands/GetAppMonitorCommand";
12
+ import { GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput } from "./commands/GetAppMonitorDataCommand";
13
+ import { ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput } from "./commands/ListAppMonitorsCommand";
14
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
15
+ import { PutRumEventsCommandInput, PutRumEventsCommandOutput } from "./commands/PutRumEventsCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
18
+ import { UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput } from "./commands/UpdateAppMonitorCommand";
19
+ export declare type ServiceInputTypes = CreateAppMonitorCommandInput | DeleteAppMonitorCommandInput | GetAppMonitorCommandInput | GetAppMonitorDataCommandInput | ListAppMonitorsCommandInput | ListTagsForResourceCommandInput | PutRumEventsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppMonitorCommandInput;
20
+ export declare type ServiceOutputTypes = CreateAppMonitorCommandOutput | DeleteAppMonitorCommandOutput | GetAppMonitorCommandOutput | GetAppMonitorDataCommandOutput | ListAppMonitorsCommandOutput | ListTagsForResourceCommandOutput | PutRumEventsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppMonitorCommandOutput;
21
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
22
+
23
+ requestHandler?: __HttpHandler;
24
+
25
+ sha256?: __HashConstructor;
26
+
27
+ urlParser?: __UrlParser;
28
+
29
+ bodyLengthChecker?: (body: any) => number | undefined;
30
+
31
+ streamCollector?: __StreamCollector;
32
+
33
+ base64Decoder?: __Decoder;
34
+
35
+ base64Encoder?: __Encoder;
36
+
37
+ utf8Decoder?: __Decoder;
38
+
39
+ utf8Encoder?: __Encoder;
40
+
41
+ runtime?: string;
42
+
43
+ disableHostPrefix?: boolean;
44
+
45
+ maxAttempts?: number | __Provider<number>;
46
+
47
+ retryMode?: string | __Provider<string>;
48
+
49
+ logger?: __Logger;
50
+
51
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
52
+
53
+ useFipsEndpoint?: boolean | __Provider<boolean>;
54
+
55
+ serviceId?: string;
56
+
57
+ region?: string | __Provider<string>;
58
+
59
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
60
+
61
+ regionInfoProvider?: RegionInfoProvider;
62
+
63
+ defaultUserAgentProvider?: Provider<__UserAgent>;
64
+
65
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
66
+ }
67
+ declare type RUMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
68
+
69
+ export interface RUMClientConfig extends RUMClientConfigType {
70
+ }
71
+ declare type RUMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
72
+
73
+ export interface RUMClientResolvedConfig extends RUMClientResolvedConfigType {
74
+ }
75
+
76
+ export declare class RUMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RUMClientResolvedConfig> {
77
+
78
+ readonly config: RUMClientResolvedConfig;
79
+ constructor(configuration: RUMClientConfig);
80
+
81
+ destroy(): void;
82
+ }
83
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateAppMonitorRequest, CreateAppMonitorResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface CreateAppMonitorCommandInput extends CreateAppMonitorRequest {
6
+ }
7
+ export interface CreateAppMonitorCommandOutput extends CreateAppMonitorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateAppMonitorCommand extends $Command<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: CreateAppMonitorCommandInput;
12
+ constructor(input: CreateAppMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteAppMonitorRequest, DeleteAppMonitorResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface DeleteAppMonitorCommandInput extends DeleteAppMonitorRequest {
6
+ }
7
+ export interface DeleteAppMonitorCommandOutput extends DeleteAppMonitorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteAppMonitorCommand extends $Command<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: DeleteAppMonitorCommandInput;
12
+ constructor(input: DeleteAppMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface GetAppMonitorCommandInput extends GetAppMonitorRequest {
6
+ }
7
+ export interface GetAppMonitorCommandOutput extends GetAppMonitorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetAppMonitorCommand extends $Command<GetAppMonitorCommandInput, GetAppMonitorCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: GetAppMonitorCommandInput;
12
+ constructor(input: GetAppMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppMonitorCommandInput, GetAppMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetAppMonitorDataRequest, GetAppMonitorDataResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface GetAppMonitorDataCommandInput extends GetAppMonitorDataRequest {
6
+ }
7
+ export interface GetAppMonitorDataCommandOutput extends GetAppMonitorDataResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetAppMonitorDataCommand extends $Command<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: GetAppMonitorDataCommandInput;
12
+ constructor(input: GetAppMonitorDataCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListAppMonitorsRequest, ListAppMonitorsResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface ListAppMonitorsCommandInput extends ListAppMonitorsRequest {
6
+ }
7
+ export interface ListAppMonitorsCommandOutput extends ListAppMonitorsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListAppMonitorsCommand extends $Command<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: ListAppMonitorsCommandInput;
12
+ constructor(input: ListAppMonitorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface PutRumEventsCommandInput extends PutRumEventsRequest {
6
+ }
7
+ export interface PutRumEventsCommandOutput extends PutRumEventsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutRumEventsCommand extends $Command<PutRumEventsCommandInput, PutRumEventsCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: PutRumEventsCommandInput;
12
+ constructor(input: PutRumEventsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRumEventsCommandInput, PutRumEventsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateAppMonitorRequest, UpdateAppMonitorResponse } from "../models/models_0";
4
+ import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient";
5
+ export interface UpdateAppMonitorCommandInput extends UpdateAppMonitorRequest {
6
+ }
7
+ export interface UpdateAppMonitorCommandOutput extends UpdateAppMonitorResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateAppMonitorCommand extends $Command<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput, RUMClientResolvedConfig> {
11
+ readonly input: UpdateAppMonitorCommandInput;
12
+ constructor(input: UpdateAppMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RUMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,10 @@
1
+ export * from "./CreateAppMonitorCommand";
2
+ export * from "./DeleteAppMonitorCommand";
3
+ export * from "./GetAppMonitorCommand";
4
+ export * from "./GetAppMonitorDataCommand";
5
+ export * from "./ListAppMonitorsCommand";
6
+ export * from "./ListTagsForResourceCommand";
7
+ export * from "./PutRumEventsCommand";
8
+ export * from "./TagResourceCommand";
9
+ export * from "./UntagResourceCommand";
10
+ export * from "./UpdateAppMonitorCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./RUM";
2
+ export * from "./RUMClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { RUMServiceException } from "./models/RUMServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class RUMServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";