@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/RUM.d.ts +184 -55
- package/dist-types/ts3.4/RUMClient.d.ts +188 -83
- package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +10 -10
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RUMServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +396 -366
- package/dist-types/ts3.4/pagination/GetAppMonitorDataPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAppMonitorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|