@aws-sdk/client-rum 3.168.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 +16 -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
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-rum
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-rum
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-rum
@@ -1,55 +1,184 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateAppMonitorCommandInput,
4
+ CreateAppMonitorCommandOutput,
5
+ } from "./commands/CreateAppMonitorCommand";
6
+ import {
7
+ DeleteAppMonitorCommandInput,
8
+ DeleteAppMonitorCommandOutput,
9
+ } from "./commands/DeleteAppMonitorCommand";
10
+ import {
11
+ GetAppMonitorCommandInput,
12
+ GetAppMonitorCommandOutput,
13
+ } from "./commands/GetAppMonitorCommand";
14
+ import {
15
+ GetAppMonitorDataCommandInput,
16
+ GetAppMonitorDataCommandOutput,
17
+ } from "./commands/GetAppMonitorDataCommand";
18
+ import {
19
+ ListAppMonitorsCommandInput,
20
+ ListAppMonitorsCommandOutput,
21
+ } from "./commands/ListAppMonitorsCommand";
22
+ import {
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ } from "./commands/ListTagsForResourceCommand";
26
+ import {
27
+ PutRumEventsCommandInput,
28
+ PutRumEventsCommandOutput,
29
+ } from "./commands/PutRumEventsCommand";
30
+ import {
31
+ TagResourceCommandInput,
32
+ TagResourceCommandOutput,
33
+ } from "./commands/TagResourceCommand";
34
+ import {
35
+ UntagResourceCommandInput,
36
+ UntagResourceCommandOutput,
37
+ } from "./commands/UntagResourceCommand";
38
+ import {
39
+ UpdateAppMonitorCommandInput,
40
+ UpdateAppMonitorCommandOutput,
41
+ } from "./commands/UpdateAppMonitorCommand";
42
+ import { RUMClient } from "./RUMClient";
43
+
44
+ export declare class RUM extends RUMClient {
45
+ createAppMonitor(
46
+ args: CreateAppMonitorCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<CreateAppMonitorCommandOutput>;
49
+ createAppMonitor(
50
+ args: CreateAppMonitorCommandInput,
51
+ cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
52
+ ): void;
53
+ createAppMonitor(
54
+ args: CreateAppMonitorCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
57
+ ): void;
58
+
59
+ deleteAppMonitor(
60
+ args: DeleteAppMonitorCommandInput,
61
+ options?: __HttpHandlerOptions
62
+ ): Promise<DeleteAppMonitorCommandOutput>;
63
+ deleteAppMonitor(
64
+ args: DeleteAppMonitorCommandInput,
65
+ cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
66
+ ): void;
67
+ deleteAppMonitor(
68
+ args: DeleteAppMonitorCommandInput,
69
+ options: __HttpHandlerOptions,
70
+ cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
71
+ ): void;
72
+
73
+ getAppMonitor(
74
+ args: GetAppMonitorCommandInput,
75
+ options?: __HttpHandlerOptions
76
+ ): Promise<GetAppMonitorCommandOutput>;
77
+ getAppMonitor(
78
+ args: GetAppMonitorCommandInput,
79
+ cb: (err: any, data?: GetAppMonitorCommandOutput) => void
80
+ ): void;
81
+ getAppMonitor(
82
+ args: GetAppMonitorCommandInput,
83
+ options: __HttpHandlerOptions,
84
+ cb: (err: any, data?: GetAppMonitorCommandOutput) => void
85
+ ): void;
86
+
87
+ getAppMonitorData(
88
+ args: GetAppMonitorDataCommandInput,
89
+ options?: __HttpHandlerOptions
90
+ ): Promise<GetAppMonitorDataCommandOutput>;
91
+ getAppMonitorData(
92
+ args: GetAppMonitorDataCommandInput,
93
+ cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
94
+ ): void;
95
+ getAppMonitorData(
96
+ args: GetAppMonitorDataCommandInput,
97
+ options: __HttpHandlerOptions,
98
+ cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
99
+ ): void;
100
+
101
+ listAppMonitors(
102
+ args: ListAppMonitorsCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<ListAppMonitorsCommandOutput>;
105
+ listAppMonitors(
106
+ args: ListAppMonitorsCommandInput,
107
+ cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
108
+ ): void;
109
+ listAppMonitors(
110
+ args: ListAppMonitorsCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
113
+ ): void;
114
+
115
+ listTagsForResource(
116
+ args: ListTagsForResourceCommandInput,
117
+ options?: __HttpHandlerOptions
118
+ ): Promise<ListTagsForResourceCommandOutput>;
119
+ listTagsForResource(
120
+ args: ListTagsForResourceCommandInput,
121
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
122
+ ): void;
123
+ listTagsForResource(
124
+ args: ListTagsForResourceCommandInput,
125
+ options: __HttpHandlerOptions,
126
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
127
+ ): void;
128
+
129
+ putRumEvents(
130
+ args: PutRumEventsCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<PutRumEventsCommandOutput>;
133
+ putRumEvents(
134
+ args: PutRumEventsCommandInput,
135
+ cb: (err: any, data?: PutRumEventsCommandOutput) => void
136
+ ): void;
137
+ putRumEvents(
138
+ args: PutRumEventsCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: PutRumEventsCommandOutput) => void
141
+ ): void;
142
+
143
+ tagResource(
144
+ args: TagResourceCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<TagResourceCommandOutput>;
147
+ tagResource(
148
+ args: TagResourceCommandInput,
149
+ cb: (err: any, data?: TagResourceCommandOutput) => void
150
+ ): void;
151
+ tagResource(
152
+ args: TagResourceCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: TagResourceCommandOutput) => void
155
+ ): void;
156
+
157
+ untagResource(
158
+ args: UntagResourceCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<UntagResourceCommandOutput>;
161
+ untagResource(
162
+ args: UntagResourceCommandInput,
163
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
164
+ ): void;
165
+ untagResource(
166
+ args: UntagResourceCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
169
+ ): void;
170
+
171
+ updateAppMonitor(
172
+ args: UpdateAppMonitorCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<UpdateAppMonitorCommandOutput>;
175
+ updateAppMonitor(
176
+ args: UpdateAppMonitorCommandInput,
177
+ cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
178
+ ): void;
179
+ updateAppMonitor(
180
+ args: UpdateAppMonitorCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
183
+ ): void;
184
+ }
@@ -1,83 +1,188 @@
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 { BodyLengthCalculator as __BodyLengthCalculator, 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?: __BodyLengthCalculator;
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 {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateAppMonitorCommandInput,
47
+ CreateAppMonitorCommandOutput,
48
+ } from "./commands/CreateAppMonitorCommand";
49
+ import {
50
+ DeleteAppMonitorCommandInput,
51
+ DeleteAppMonitorCommandOutput,
52
+ } from "./commands/DeleteAppMonitorCommand";
53
+ import {
54
+ GetAppMonitorCommandInput,
55
+ GetAppMonitorCommandOutput,
56
+ } from "./commands/GetAppMonitorCommand";
57
+ import {
58
+ GetAppMonitorDataCommandInput,
59
+ GetAppMonitorDataCommandOutput,
60
+ } from "./commands/GetAppMonitorDataCommand";
61
+ import {
62
+ ListAppMonitorsCommandInput,
63
+ ListAppMonitorsCommandOutput,
64
+ } from "./commands/ListAppMonitorsCommand";
65
+ import {
66
+ ListTagsForResourceCommandInput,
67
+ ListTagsForResourceCommandOutput,
68
+ } from "./commands/ListTagsForResourceCommand";
69
+ import {
70
+ PutRumEventsCommandInput,
71
+ PutRumEventsCommandOutput,
72
+ } from "./commands/PutRumEventsCommand";
73
+ import {
74
+ TagResourceCommandInput,
75
+ TagResourceCommandOutput,
76
+ } from "./commands/TagResourceCommand";
77
+ import {
78
+ UntagResourceCommandInput,
79
+ UntagResourceCommandOutput,
80
+ } from "./commands/UntagResourceCommand";
81
+ import {
82
+ UpdateAppMonitorCommandInput,
83
+ UpdateAppMonitorCommandOutput,
84
+ } from "./commands/UpdateAppMonitorCommand";
85
+ export declare type ServiceInputTypes =
86
+ | CreateAppMonitorCommandInput
87
+ | DeleteAppMonitorCommandInput
88
+ | GetAppMonitorCommandInput
89
+ | GetAppMonitorDataCommandInput
90
+ | ListAppMonitorsCommandInput
91
+ | ListTagsForResourceCommandInput
92
+ | PutRumEventsCommandInput
93
+ | TagResourceCommandInput
94
+ | UntagResourceCommandInput
95
+ | UpdateAppMonitorCommandInput;
96
+ export declare type ServiceOutputTypes =
97
+ | CreateAppMonitorCommandOutput
98
+ | DeleteAppMonitorCommandOutput
99
+ | GetAppMonitorCommandOutput
100
+ | GetAppMonitorDataCommandOutput
101
+ | ListAppMonitorsCommandOutput
102
+ | ListTagsForResourceCommandOutput
103
+ | PutRumEventsCommandOutput
104
+ | TagResourceCommandOutput
105
+ | UntagResourceCommandOutput
106
+ | UpdateAppMonitorCommandOutput;
107
+ export interface ClientDefaults
108
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
109
+ requestHandler?: __HttpHandler;
110
+
111
+ sha256?: __HashConstructor;
112
+
113
+ urlParser?: __UrlParser;
114
+
115
+ bodyLengthChecker?: __BodyLengthCalculator;
116
+
117
+ streamCollector?: __StreamCollector;
118
+
119
+ base64Decoder?: __Decoder;
120
+
121
+ base64Encoder?: __Encoder;
122
+
123
+ utf8Decoder?: __Decoder;
124
+
125
+ utf8Encoder?: __Encoder;
126
+
127
+ runtime?: string;
128
+
129
+ disableHostPrefix?: boolean;
130
+
131
+ maxAttempts?: number | __Provider<number>;
132
+
133
+ retryMode?: string | __Provider<string>;
134
+
135
+ logger?: __Logger;
136
+
137
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
138
+
139
+ useFipsEndpoint?: boolean | __Provider<boolean>;
140
+
141
+ serviceId?: string;
142
+
143
+ region?: string | __Provider<string>;
144
+
145
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
146
+
147
+ regionInfoProvider?: RegionInfoProvider;
148
+
149
+ defaultUserAgentProvider?: Provider<__UserAgent>;
150
+
151
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
152
+ }
153
+ declare type RUMClientConfigType = Partial<
154
+ __SmithyConfiguration<__HttpHandlerOptions>
155
+ > &
156
+ ClientDefaults &
157
+ RegionInputConfig &
158
+ EndpointsInputConfig &
159
+ RetryInputConfig &
160
+ HostHeaderInputConfig &
161
+ AwsAuthInputConfig &
162
+ UserAgentInputConfig;
163
+
164
+ export interface RUMClientConfig extends RUMClientConfigType {}
165
+ declare type RUMClientResolvedConfigType =
166
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
167
+ Required<ClientDefaults> &
168
+ RegionResolvedConfig &
169
+ EndpointsResolvedConfig &
170
+ RetryResolvedConfig &
171
+ HostHeaderResolvedConfig &
172
+ AwsAuthResolvedConfig &
173
+ UserAgentResolvedConfig;
174
+
175
+ export interface RUMClientResolvedConfig extends RUMClientResolvedConfigType {}
176
+
177
+ export declare class RUMClient extends __Client<
178
+ __HttpHandlerOptions,
179
+ ServiceInputTypes,
180
+ ServiceOutputTypes,
181
+ RUMClientResolvedConfig
182
+ > {
183
+ readonly config: RUMClientResolvedConfig;
184
+ constructor(configuration: RUMClientConfig);
185
+
186
+ destroy(): void;
187
+ }
188
+ export {};
@@ -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 { 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
- }
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
+ CreateAppMonitorRequest,
10
+ CreateAppMonitorResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface CreateAppMonitorCommandInput extends CreateAppMonitorRequest {}
18
+ export interface CreateAppMonitorCommandOutput
19
+ extends CreateAppMonitorResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateAppMonitorCommand extends $Command<
23
+ CreateAppMonitorCommandInput,
24
+ CreateAppMonitorCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: CreateAppMonitorCommandInput;
28
+ constructor(input: CreateAppMonitorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput>;
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 { 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
- }
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
+ DeleteAppMonitorRequest,
10
+ DeleteAppMonitorResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RUMClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RUMClient";
17
+ export interface DeleteAppMonitorCommandInput extends DeleteAppMonitorRequest {}
18
+ export interface DeleteAppMonitorCommandOutput
19
+ extends DeleteAppMonitorResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteAppMonitorCommand extends $Command<
23
+ DeleteAppMonitorCommandInput,
24
+ DeleteAppMonitorCommandOutput,
25
+ RUMClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteAppMonitorCommandInput;
28
+ constructor(input: DeleteAppMonitorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RUMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }