@aws-sdk/client-rum 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/RUM.d.ts +174 -55
  3. package/dist-types/ts3.4/RUMClient.d.ts +163 -83
  4. package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -10
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  16. package/dist-types/ts3.4/index.d.ts +6 -6
  17. package/dist-types/ts3.4/models/RUMServiceException.d.ts +7 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +281 -366
  20. package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +11 -4
  21. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  22. package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +11 -4
  23. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  24. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  29. package/package.json +34 -34
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-rum
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-rum
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-rum
@@ -1,55 +1,174 @@
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
+ export declare class RUM extends RUMClient {
44
+ createAppMonitor(
45
+ args: CreateAppMonitorCommandInput,
46
+ options?: __HttpHandlerOptions
47
+ ): Promise<CreateAppMonitorCommandOutput>;
48
+ createAppMonitor(
49
+ args: CreateAppMonitorCommandInput,
50
+ cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
51
+ ): void;
52
+ createAppMonitor(
53
+ args: CreateAppMonitorCommandInput,
54
+ options: __HttpHandlerOptions,
55
+ cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
56
+ ): void;
57
+ deleteAppMonitor(
58
+ args: DeleteAppMonitorCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<DeleteAppMonitorCommandOutput>;
61
+ deleteAppMonitor(
62
+ args: DeleteAppMonitorCommandInput,
63
+ cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
64
+ ): void;
65
+ deleteAppMonitor(
66
+ args: DeleteAppMonitorCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
69
+ ): void;
70
+ getAppMonitor(
71
+ args: GetAppMonitorCommandInput,
72
+ options?: __HttpHandlerOptions
73
+ ): Promise<GetAppMonitorCommandOutput>;
74
+ getAppMonitor(
75
+ args: GetAppMonitorCommandInput,
76
+ cb: (err: any, data?: GetAppMonitorCommandOutput) => void
77
+ ): void;
78
+ getAppMonitor(
79
+ args: GetAppMonitorCommandInput,
80
+ options: __HttpHandlerOptions,
81
+ cb: (err: any, data?: GetAppMonitorCommandOutput) => void
82
+ ): void;
83
+ getAppMonitorData(
84
+ args: GetAppMonitorDataCommandInput,
85
+ options?: __HttpHandlerOptions
86
+ ): Promise<GetAppMonitorDataCommandOutput>;
87
+ getAppMonitorData(
88
+ args: GetAppMonitorDataCommandInput,
89
+ cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
90
+ ): void;
91
+ getAppMonitorData(
92
+ args: GetAppMonitorDataCommandInput,
93
+ options: __HttpHandlerOptions,
94
+ cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
95
+ ): void;
96
+ listAppMonitors(
97
+ args: ListAppMonitorsCommandInput,
98
+ options?: __HttpHandlerOptions
99
+ ): Promise<ListAppMonitorsCommandOutput>;
100
+ listAppMonitors(
101
+ args: ListAppMonitorsCommandInput,
102
+ cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
103
+ ): void;
104
+ listAppMonitors(
105
+ args: ListAppMonitorsCommandInput,
106
+ options: __HttpHandlerOptions,
107
+ cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
108
+ ): void;
109
+ listTagsForResource(
110
+ args: ListTagsForResourceCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<ListTagsForResourceCommandOutput>;
113
+ listTagsForResource(
114
+ args: ListTagsForResourceCommandInput,
115
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
116
+ ): void;
117
+ listTagsForResource(
118
+ args: ListTagsForResourceCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
121
+ ): void;
122
+ putRumEvents(
123
+ args: PutRumEventsCommandInput,
124
+ options?: __HttpHandlerOptions
125
+ ): Promise<PutRumEventsCommandOutput>;
126
+ putRumEvents(
127
+ args: PutRumEventsCommandInput,
128
+ cb: (err: any, data?: PutRumEventsCommandOutput) => void
129
+ ): void;
130
+ putRumEvents(
131
+ args: PutRumEventsCommandInput,
132
+ options: __HttpHandlerOptions,
133
+ cb: (err: any, data?: PutRumEventsCommandOutput) => void
134
+ ): void;
135
+ tagResource(
136
+ args: TagResourceCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<TagResourceCommandOutput>;
139
+ tagResource(
140
+ args: TagResourceCommandInput,
141
+ cb: (err: any, data?: TagResourceCommandOutput) => void
142
+ ): void;
143
+ tagResource(
144
+ args: TagResourceCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: TagResourceCommandOutput) => void
147
+ ): void;
148
+ untagResource(
149
+ args: UntagResourceCommandInput,
150
+ options?: __HttpHandlerOptions
151
+ ): Promise<UntagResourceCommandOutput>;
152
+ untagResource(
153
+ args: UntagResourceCommandInput,
154
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
155
+ ): void;
156
+ untagResource(
157
+ args: UntagResourceCommandInput,
158
+ options: __HttpHandlerOptions,
159
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
160
+ ): void;
161
+ updateAppMonitor(
162
+ args: UpdateAppMonitorCommandInput,
163
+ options?: __HttpHandlerOptions
164
+ ): Promise<UpdateAppMonitorCommandOutput>;
165
+ updateAppMonitor(
166
+ args: UpdateAppMonitorCommandInput,
167
+ cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
168
+ ): void;
169
+ updateAppMonitor(
170
+ args: UpdateAppMonitorCommandInput,
171
+ options: __HttpHandlerOptions,
172
+ cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
173
+ ): void;
174
+ }
@@ -1,83 +1,163 @@
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
+ sha256?: __HashConstructor;
111
+ urlParser?: __UrlParser;
112
+ bodyLengthChecker?: __BodyLengthCalculator;
113
+ streamCollector?: __StreamCollector;
114
+ base64Decoder?: __Decoder;
115
+ base64Encoder?: __Encoder;
116
+ utf8Decoder?: __Decoder;
117
+ utf8Encoder?: __Encoder;
118
+ runtime?: string;
119
+ disableHostPrefix?: boolean;
120
+ maxAttempts?: number | __Provider<number>;
121
+ retryMode?: string | __Provider<string>;
122
+ logger?: __Logger;
123
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
124
+ useFipsEndpoint?: boolean | __Provider<boolean>;
125
+ serviceId?: string;
126
+ region?: string | __Provider<string>;
127
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
128
+ regionInfoProvider?: RegionInfoProvider;
129
+ defaultUserAgentProvider?: Provider<__UserAgent>;
130
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
131
+ }
132
+ declare type RUMClientConfigType = Partial<
133
+ __SmithyConfiguration<__HttpHandlerOptions>
134
+ > &
135
+ ClientDefaults &
136
+ RegionInputConfig &
137
+ EndpointsInputConfig &
138
+ RetryInputConfig &
139
+ HostHeaderInputConfig &
140
+ AwsAuthInputConfig &
141
+ UserAgentInputConfig;
142
+ export interface RUMClientConfig extends RUMClientConfigType {}
143
+ declare type RUMClientResolvedConfigType =
144
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
145
+ Required<ClientDefaults> &
146
+ RegionResolvedConfig &
147
+ EndpointsResolvedConfig &
148
+ RetryResolvedConfig &
149
+ HostHeaderResolvedConfig &
150
+ AwsAuthResolvedConfig &
151
+ UserAgentResolvedConfig;
152
+ export interface RUMClientResolvedConfig extends RUMClientResolvedConfigType {}
153
+ export declare class RUMClient extends __Client<
154
+ __HttpHandlerOptions,
155
+ ServiceInputTypes,
156
+ ServiceOutputTypes,
157
+ RUMClientResolvedConfig
158
+ > {
159
+ readonly config: RUMClientResolvedConfig;
160
+ constructor(configuration: RUMClientConfig);
161
+ destroy(): void;
162
+ }
163
+ export {};
@@ -1,17 +1,35 @@
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
+ export declare class CreateAppMonitorCommand extends $Command<
22
+ CreateAppMonitorCommandInput,
23
+ CreateAppMonitorCommandOutput,
24
+ RUMClientResolvedConfig
25
+ > {
26
+ readonly input: CreateAppMonitorCommandInput;
27
+ constructor(input: CreateAppMonitorCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: RUMClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<CreateAppMonitorCommandInput, CreateAppMonitorCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DeleteAppMonitorCommand extends $Command<
22
+ DeleteAppMonitorCommandInput,
23
+ DeleteAppMonitorCommandOutput,
24
+ RUMClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteAppMonitorCommandInput;
27
+ constructor(input: DeleteAppMonitorCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: RUMClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteAppMonitorCommandInput, DeleteAppMonitorCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }