@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.
Files changed (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/RUM.d.ts +184 -55
  3. package/dist-types/ts3.4/RUMClient.d.ts +188 -83
  4. package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -10
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  16. package/dist-types/ts3.4/index.d.ts +6 -6
  17. package/dist-types/ts3.4/models/RUMServiceException.d.ts +8 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +396 -366
  20. package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  22. package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +11 -4
  23. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  24. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  29. package/package.json +34 -34
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetAppMonitorRequest,
10
+ GetAppMonitorResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface GetAppMonitorCommandInput extends GetAppMonitorRequest {}
18
+ export interface GetAppMonitorCommandOutput
19
+ extends GetAppMonitorResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetAppMonitorCommand extends $Command<
23
+ GetAppMonitorCommandInput,
24
+ GetAppMonitorCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: GetAppMonitorCommandInput;
28
+ constructor(input: GetAppMonitorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetAppMonitorCommandInput, GetAppMonitorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetAppMonitorDataRequest,
10
+ GetAppMonitorDataResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface GetAppMonitorDataCommandInput
18
+ extends GetAppMonitorDataRequest {}
19
+ export interface GetAppMonitorDataCommandOutput
20
+ extends GetAppMonitorDataResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAppMonitorDataCommand extends $Command<
24
+ GetAppMonitorDataCommandInput,
25
+ GetAppMonitorDataCommandOutput,
26
+ RUMClientResolvedConfig
27
+ > {
28
+ readonly input: GetAppMonitorDataCommandInput;
29
+ constructor(input: GetAppMonitorDataCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RUMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAppMonitorDataCommandInput, GetAppMonitorDataCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListAppMonitorsRequest,
10
+ ListAppMonitorsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface ListAppMonitorsCommandInput extends ListAppMonitorsRequest {}
18
+ export interface ListAppMonitorsCommandOutput
19
+ extends ListAppMonitorsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListAppMonitorsCommand extends $Command<
23
+ ListAppMonitorsCommandInput,
24
+ ListAppMonitorsCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: ListAppMonitorsCommandInput;
28
+ constructor(input: ListAppMonitorsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListAppMonitorsCommandInput, ListAppMonitorsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ RUMClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RUMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0";
9
+ import {
10
+ RUMClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RUMClient";
14
+ export interface PutRumEventsCommandInput extends PutRumEventsRequest {}
15
+ export interface PutRumEventsCommandOutput
16
+ extends PutRumEventsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class PutRumEventsCommand extends $Command<
20
+ PutRumEventsCommandInput,
21
+ PutRumEventsCommandOutput,
22
+ RUMClientResolvedConfig
23
+ > {
24
+ readonly input: PutRumEventsCommandInput;
25
+ constructor(input: PutRumEventsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RUMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<PutRumEventsCommandInput, PutRumEventsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ RUMClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RUMClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ RUMClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RUMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateAppMonitorRequest,
10
+ UpdateAppMonitorResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface UpdateAppMonitorCommandInput extends UpdateAppMonitorRequest {}
18
+ export interface UpdateAppMonitorCommandOutput
19
+ extends UpdateAppMonitorResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateAppMonitorCommand extends $Command<
23
+ UpdateAppMonitorCommandInput,
24
+ UpdateAppMonitorCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateAppMonitorCommandInput;
28
+ constructor(input: UpdateAppMonitorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateAppMonitorCommandInput, UpdateAppMonitorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,10 +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";
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";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +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";
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";
@@ -1,6 +1,8 @@
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
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class RUMServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";