@aws-sdk/client-rum 3.1075.0 → 3.1076.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/dist-cjs/index.js +1078 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/RUMServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -153
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -718
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultRUMHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "rum",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultRUMHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,930 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://rum-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://rum-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://rum.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://rum.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class RUMServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, RUMServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends RUMServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ConflictException extends RUMServiceException {
|
|
152
|
+
name = "ConflictException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
resourceName;
|
|
155
|
+
resourceType;
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ConflictException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
163
|
+
this.resourceName = opts.resourceName;
|
|
164
|
+
this.resourceType = opts.resourceType;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServerException extends RUMServiceException {
|
|
168
|
+
name = "InternalServerException";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
$retryable = {};
|
|
171
|
+
retryAfterSeconds;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InternalServerException",
|
|
175
|
+
$fault: "server",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
179
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends RUMServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
resourceName;
|
|
186
|
+
resourceType;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ResourceNotFoundException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
194
|
+
this.resourceName = opts.resourceName;
|
|
195
|
+
this.resourceType = opts.resourceType;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class ServiceQuotaExceededException extends RUMServiceException {
|
|
199
|
+
name = "ServiceQuotaExceededException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "ServiceQuotaExceededException",
|
|
204
|
+
$fault: "client",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
class ThrottlingException extends RUMServiceException {
|
|
211
|
+
name = "ThrottlingException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
$retryable = {
|
|
214
|
+
throttling: true,
|
|
215
|
+
};
|
|
216
|
+
serviceCode;
|
|
217
|
+
quotaCode;
|
|
218
|
+
retryAfterSeconds;
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "ThrottlingException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
226
|
+
this.serviceCode = opts.serviceCode;
|
|
227
|
+
this.quotaCode = opts.quotaCode;
|
|
228
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
class ValidationException extends RUMServiceException {
|
|
232
|
+
name = "ValidationException";
|
|
233
|
+
$fault = "client";
|
|
234
|
+
constructor(opts) {
|
|
235
|
+
super({
|
|
236
|
+
name: "ValidationException",
|
|
237
|
+
$fault: "client",
|
|
238
|
+
...opts,
|
|
239
|
+
});
|
|
240
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
class InvalidPolicyRevisionIdException extends RUMServiceException {
|
|
244
|
+
name = "InvalidPolicyRevisionIdException";
|
|
245
|
+
$fault = "client";
|
|
246
|
+
constructor(opts) {
|
|
247
|
+
super({
|
|
248
|
+
name: "InvalidPolicyRevisionIdException",
|
|
249
|
+
$fault: "client",
|
|
250
|
+
...opts,
|
|
251
|
+
});
|
|
252
|
+
Object.setPrototypeOf(this, InvalidPolicyRevisionIdException.prototype);
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
class PolicyNotFoundException extends RUMServiceException {
|
|
256
|
+
name = "PolicyNotFoundException";
|
|
257
|
+
$fault = "client";
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "PolicyNotFoundException",
|
|
261
|
+
$fault: "client",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
class MalformedPolicyDocumentException extends RUMServiceException {
|
|
268
|
+
name = "MalformedPolicyDocumentException";
|
|
269
|
+
$fault = "client";
|
|
270
|
+
constructor(opts) {
|
|
271
|
+
super({
|
|
272
|
+
name: "MalformedPolicyDocumentException",
|
|
273
|
+
$fault: "client",
|
|
274
|
+
...opts,
|
|
275
|
+
});
|
|
276
|
+
Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class PolicySizeLimitExceededException extends RUMServiceException {
|
|
280
|
+
name = "PolicySizeLimitExceededException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "PolicySizeLimitExceededException",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
Object.setPrototypeOf(this, PolicySizeLimitExceededException.prototype);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
const _A = "Alias";
|
|
293
|
+
const _AC = "AllowCookies";
|
|
294
|
+
const _ADE = "AccessDeniedException";
|
|
295
|
+
const _AM = "AppMonitor";
|
|
296
|
+
const _AMC = "AppMonitorConfiguration";
|
|
297
|
+
const _AMD = "AppMonitorDetails";
|
|
298
|
+
const _AMN = "AppMonitorName";
|
|
299
|
+
const _AMS = "AppMonitorSummary";
|
|
300
|
+
const _AMSL = "AppMonitorSummaryList";
|
|
301
|
+
const _AMSp = "AppMonitorSummaries";
|
|
302
|
+
const _Af = "After";
|
|
303
|
+
const _B = "Before";
|
|
304
|
+
const _BCRMD = "BatchCreateRumMetricDefinitions";
|
|
305
|
+
const _BCRMDE = "BatchCreateRumMetricDefinitionsError";
|
|
306
|
+
const _BCRMDEa = "BatchCreateRumMetricDefinitionsErrors";
|
|
307
|
+
const _BCRMDR = "BatchCreateRumMetricDefinitionsRequest";
|
|
308
|
+
const _BCRMDRa = "BatchCreateRumMetricDefinitionsResponse";
|
|
309
|
+
const _BDRMD = "BatchDeleteRumMetricDefinitions";
|
|
310
|
+
const _BDRMDE = "BatchDeleteRumMetricDefinitionsError";
|
|
311
|
+
const _BDRMDEa = "BatchDeleteRumMetricDefinitionsErrors";
|
|
312
|
+
const _BDRMDR = "BatchDeleteRumMetricDefinitionsRequest";
|
|
313
|
+
const _BDRMDRa = "BatchDeleteRumMetricDefinitionsResponse";
|
|
314
|
+
const _BGRMD = "BatchGetRumMetricDefinitions";
|
|
315
|
+
const _BGRMDR = "BatchGetRumMetricDefinitionsRequest";
|
|
316
|
+
const _BGRMDRa = "BatchGetRumMetricDefinitionsResponse";
|
|
317
|
+
const _BI = "BatchId";
|
|
318
|
+
const _C = "Created";
|
|
319
|
+
const _CAM = "CreateAppMonitor";
|
|
320
|
+
const _CAMR = "CreateAppMonitorRequest";
|
|
321
|
+
const _CAMRr = "CreateAppMonitorResponse";
|
|
322
|
+
const _CE = "ConflictException";
|
|
323
|
+
const _CEu = "CustomEvents";
|
|
324
|
+
const _CL = "CwLog";
|
|
325
|
+
const _CLE = "CwLogEnabled";
|
|
326
|
+
const _CLG = "CwLogGroup";
|
|
327
|
+
const _D = "Domain";
|
|
328
|
+
const _DA = "DestinationArn";
|
|
329
|
+
const _DAM = "DeleteAppMonitor";
|
|
330
|
+
const _DAMR = "DeleteAppMonitorRequest";
|
|
331
|
+
const _DAMRe = "DeleteAppMonitorResponse";
|
|
332
|
+
const _DC = "DeobfuscationConfiguration";
|
|
333
|
+
const _DK = "DimensionKeys";
|
|
334
|
+
const _DL = "DomainList";
|
|
335
|
+
const _DRMD = "DeleteRumMetricsDestination";
|
|
336
|
+
const _DRMDR = "DeleteRumMetricsDestinationRequest";
|
|
337
|
+
const _DRMDRe = "DeleteRumMetricsDestinationResponse";
|
|
338
|
+
const _DRP = "DeleteResourcePolicy";
|
|
339
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
340
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
341
|
+
const _DS = "DataStorage";
|
|
342
|
+
const _De = "Destination";
|
|
343
|
+
const _Des = "Destinations";
|
|
344
|
+
const _E = "Errors";
|
|
345
|
+
const _EC = "ErrorCode";
|
|
346
|
+
const _EM = "ErrorMessage";
|
|
347
|
+
const _EP = "ExcludedPages";
|
|
348
|
+
const _EPv = "EventPattern";
|
|
349
|
+
const _EXR = "EnableXRay";
|
|
350
|
+
const _Ev = "Events";
|
|
351
|
+
const _F = "Filters";
|
|
352
|
+
const _FP = "FavoritePages";
|
|
353
|
+
const _GAM = "GetAppMonitor";
|
|
354
|
+
const _GAMD = "GetAppMonitorData";
|
|
355
|
+
const _GAMDR = "GetAppMonitorDataRequest";
|
|
356
|
+
const _GAMDRe = "GetAppMonitorDataResponse";
|
|
357
|
+
const _GAMR = "GetAppMonitorRequest";
|
|
358
|
+
const _GAMRe = "GetAppMonitorResponse";
|
|
359
|
+
const _GRA = "GuestRoleArn";
|
|
360
|
+
const _GRP = "GetResourcePolicy";
|
|
361
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
362
|
+
const _GRPRe = "GetResourcePolicyResponse";
|
|
363
|
+
const _I = "Id";
|
|
364
|
+
const _IP = "IncludedPages";
|
|
365
|
+
const _IPI = "IdentityPoolId";
|
|
366
|
+
const _IPRIE = "InvalidPolicyRevisionIdException";
|
|
367
|
+
const _IRA = "IamRoleArn";
|
|
368
|
+
const _ISE = "InternalServerException";
|
|
369
|
+
const _JSSM = "JavaScriptSourceMaps";
|
|
370
|
+
const _JV = "JsonValue";
|
|
371
|
+
const _LAM = "ListAppMonitors";
|
|
372
|
+
const _LAMR = "ListAppMonitorsRequest";
|
|
373
|
+
const _LAMRi = "ListAppMonitorsResponse";
|
|
374
|
+
const _LM = "LastModified";
|
|
375
|
+
const _LRMD = "ListRumMetricsDestinations";
|
|
376
|
+
const _LRMDR = "ListRumMetricsDestinationsRequest";
|
|
377
|
+
const _LRMDRi = "ListRumMetricsDestinationsResponse";
|
|
378
|
+
const _LTFR = "ListTagsForResource";
|
|
379
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
380
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
381
|
+
const _MD = "MetricDefinition";
|
|
382
|
+
const _MDI = "MetricDefinitionId";
|
|
383
|
+
const _MDIe = "MetricDefinitionIds";
|
|
384
|
+
const _MDR = "MetricDefinitionRequest";
|
|
385
|
+
const _MDRe = "MetricDefinitionsRequest";
|
|
386
|
+
const _MDS = "MetricDestinationSummary";
|
|
387
|
+
const _MDSL = "MetricDestinationSummaryList";
|
|
388
|
+
const _MDe = "MetricDefinitions";
|
|
389
|
+
const _MPDE = "MalformedPolicyDocumentException";
|
|
390
|
+
const _MR = "MaxResults";
|
|
391
|
+
const _N = "Name";
|
|
392
|
+
const _NT = "NextToken";
|
|
393
|
+
const _Na = "Namespace";
|
|
394
|
+
const _P = "Platform";
|
|
395
|
+
const _PD = "PolicyDocument";
|
|
396
|
+
const _PNFE = "PolicyNotFoundException";
|
|
397
|
+
const _PRE = "PutRumEvents";
|
|
398
|
+
const _PRER = "PutRumEventsRequest";
|
|
399
|
+
const _PRERu = "PutRumEventsResponse";
|
|
400
|
+
const _PRI = "PolicyRevisionId";
|
|
401
|
+
const _PRMD = "PutRumMetricsDestination";
|
|
402
|
+
const _PRMDR = "PutRumMetricsDestinationRequest";
|
|
403
|
+
const _PRMDRu = "PutRumMetricsDestinationResponse";
|
|
404
|
+
const _PRP = "PutResourcePolicy";
|
|
405
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
406
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
407
|
+
const _PSLEE = "PolicySizeLimitExceededException";
|
|
408
|
+
const _QF = "QueryFilter";
|
|
409
|
+
const _QFu = "QueryFilters";
|
|
410
|
+
const _RA = "Retry-After";
|
|
411
|
+
const _RAe = "ResourceArn";
|
|
412
|
+
const _RE = "RumEvents";
|
|
413
|
+
const _REL = "RumEventList";
|
|
414
|
+
const _REu = "RumEvent";
|
|
415
|
+
const _RNFE = "ResourceNotFoundException";
|
|
416
|
+
const _S = "State";
|
|
417
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
418
|
+
const _SSR = "SessionSampleRate";
|
|
419
|
+
const _SU = "S3Uri";
|
|
420
|
+
const _St = "Status";
|
|
421
|
+
const _T = "Tags";
|
|
422
|
+
const _TE = "ThrottlingException";
|
|
423
|
+
const _TK = "TagKeys";
|
|
424
|
+
const _TR = "TimeRange";
|
|
425
|
+
const _TRR = "TagResourceRequest";
|
|
426
|
+
const _TRRa = "TagResourceResponse";
|
|
427
|
+
const _TRa = "TagResource";
|
|
428
|
+
const _Te = "Telemetries";
|
|
429
|
+
const _UAM = "UpdateAppMonitor";
|
|
430
|
+
const _UAMR = "UpdateAppMonitorRequest";
|
|
431
|
+
const _UAMRp = "UpdateAppMonitorResponse";
|
|
432
|
+
const _UD = "UserDetails";
|
|
433
|
+
const _UL = "UnitLabel";
|
|
434
|
+
const _UR = "UntagResource";
|
|
435
|
+
const _URMD = "UpdateRumMetricDefinition";
|
|
436
|
+
const _URMDR = "UpdateRumMetricDefinitionRequest";
|
|
437
|
+
const _URMDRp = "UpdateRumMetricDefinitionResponse";
|
|
438
|
+
const _URR = "UntagResourceRequest";
|
|
439
|
+
const _URRn = "UntagResourceResponse";
|
|
440
|
+
const _V = "Values";
|
|
441
|
+
const _VE = "ValidationException";
|
|
442
|
+
const _VK = "ValueKey";
|
|
443
|
+
const _a = "application/json";
|
|
444
|
+
const _c = "client";
|
|
445
|
+
const _d = "destination";
|
|
446
|
+
const _dA = "destinationArn";
|
|
447
|
+
const _de = "details";
|
|
448
|
+
const _e = "error";
|
|
449
|
+
const _en = "endpoint";
|
|
450
|
+
const _h = "http";
|
|
451
|
+
const _hE = "httpError";
|
|
452
|
+
const _hH = "httpHeader";
|
|
453
|
+
const _hQ = "httpQuery";
|
|
454
|
+
const _i = "id";
|
|
455
|
+
const _m = "message";
|
|
456
|
+
const _mDI = "metricDefinitionIds";
|
|
457
|
+
const _mR = "maxResults";
|
|
458
|
+
const _mT = "mediaType";
|
|
459
|
+
const _me = "metadata";
|
|
460
|
+
const _n = "name";
|
|
461
|
+
const _nT = "nextToken";
|
|
462
|
+
const _pRI = "policyRevisionId";
|
|
463
|
+
const _qC = "quotaCode";
|
|
464
|
+
const _rAS = "retryAfterSeconds";
|
|
465
|
+
const _rN = "resourceName";
|
|
466
|
+
const _rT = "resourceType";
|
|
467
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rum";
|
|
468
|
+
const _sC = "serviceCode";
|
|
469
|
+
const _sI = "sessionId";
|
|
470
|
+
const _se = "server";
|
|
471
|
+
const _t = "timestamp";
|
|
472
|
+
const _tK = "tagKeys";
|
|
473
|
+
const _ty = "type";
|
|
474
|
+
const _uI = "userId";
|
|
475
|
+
const _v = "version";
|
|
476
|
+
const n0 = "com.amazonaws.rum";
|
|
477
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
478
|
+
var RUMServiceException$ = [-3, _s, "RUMServiceException", 0, [], []];
|
|
479
|
+
_s_registry.registerError(RUMServiceException$, RUMServiceException);
|
|
480
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
481
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
483
|
+
[_m],
|
|
484
|
+
[0], 1
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
487
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
488
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
489
|
+
[_m, _rN, _rT],
|
|
490
|
+
[0, 0, 0], 2
|
|
491
|
+
];
|
|
492
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
493
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
494
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
495
|
+
[_m, _rAS],
|
|
496
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
497
|
+
];
|
|
498
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
499
|
+
var InvalidPolicyRevisionIdException$ = [-3, n0, _IPRIE,
|
|
500
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
501
|
+
[_m],
|
|
502
|
+
[0], 1
|
|
503
|
+
];
|
|
504
|
+
n0_registry.registerError(InvalidPolicyRevisionIdException$, InvalidPolicyRevisionIdException);
|
|
505
|
+
var MalformedPolicyDocumentException$ = [-3, n0, _MPDE,
|
|
506
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
507
|
+
[_m],
|
|
508
|
+
[0], 1
|
|
509
|
+
];
|
|
510
|
+
n0_registry.registerError(MalformedPolicyDocumentException$, MalformedPolicyDocumentException);
|
|
511
|
+
var PolicyNotFoundException$ = [-3, n0, _PNFE,
|
|
512
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
513
|
+
[_m],
|
|
514
|
+
[0], 1
|
|
515
|
+
];
|
|
516
|
+
n0_registry.registerError(PolicyNotFoundException$, PolicyNotFoundException);
|
|
517
|
+
var PolicySizeLimitExceededException$ = [-3, n0, _PSLEE,
|
|
518
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
519
|
+
[_m],
|
|
520
|
+
[0], 1
|
|
521
|
+
];
|
|
522
|
+
n0_registry.registerError(PolicySizeLimitExceededException$, PolicySizeLimitExceededException);
|
|
523
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
524
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
525
|
+
[_m, _rN, _rT],
|
|
526
|
+
[0, 0, 0], 2
|
|
527
|
+
];
|
|
528
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
529
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
530
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
531
|
+
[_m],
|
|
532
|
+
[0], 1
|
|
533
|
+
];
|
|
534
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
535
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
536
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
537
|
+
[_m, _sC, _qC, _rAS],
|
|
538
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
539
|
+
];
|
|
540
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
541
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
542
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
543
|
+
[_m],
|
|
544
|
+
[0], 1
|
|
545
|
+
];
|
|
546
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
547
|
+
const errorTypeRegistries = [
|
|
548
|
+
_s_registry,
|
|
549
|
+
n0_registry,
|
|
550
|
+
];
|
|
551
|
+
var JsonValue = [0, n0, _JV, { [_mT]: _a }, 0];
|
|
552
|
+
var AppMonitor$ = [3, n0, _AM,
|
|
553
|
+
0,
|
|
554
|
+
[_N, _D, _DL, _I, _C, _LM, _T, _S, _AMC, _DS, _CEu, _DC, _P],
|
|
555
|
+
[0, 0, 64 | 0, 0, 0, 0, 128 | 0, 0, () => AppMonitorConfiguration$, () => DataStorage$, () => CustomEvents$, () => DeobfuscationConfiguration$, 0]
|
|
556
|
+
];
|
|
557
|
+
var AppMonitorConfiguration$ = [3, n0, _AMC,
|
|
558
|
+
0,
|
|
559
|
+
[_IPI, _EP, _IP, _FP, _SSR, _GRA, _AC, _Te, _EXR],
|
|
560
|
+
[0, 64 | 0, 64 | 0, 64 | 0, 1, 0, 2, 64 | 0, 2]
|
|
561
|
+
];
|
|
562
|
+
var AppMonitorDetails$ = [3, n0, _AMD,
|
|
563
|
+
0,
|
|
564
|
+
[_n, _i, _v],
|
|
565
|
+
[0, 0, 0]
|
|
566
|
+
];
|
|
567
|
+
var AppMonitorSummary$ = [3, n0, _AMS,
|
|
568
|
+
0,
|
|
569
|
+
[_N, _I, _C, _LM, _S, _P],
|
|
570
|
+
[0, 0, 0, 0, 0, 0]
|
|
571
|
+
];
|
|
572
|
+
var BatchCreateRumMetricDefinitionsError$ = [3, n0, _BCRMDE,
|
|
573
|
+
0,
|
|
574
|
+
[_MD, _EC, _EM],
|
|
575
|
+
[() => MetricDefinitionRequest$, 0, 0], 3
|
|
576
|
+
];
|
|
577
|
+
var BatchCreateRumMetricDefinitionsRequest$ = [3, n0, _BCRMDR,
|
|
578
|
+
0,
|
|
579
|
+
[_AMN, _De, _MDe, _DA],
|
|
580
|
+
[[0, 1], 0, () => MetricDefinitionsRequest, 0], 3
|
|
581
|
+
];
|
|
582
|
+
var BatchCreateRumMetricDefinitionsResponse$ = [3, n0, _BCRMDRa,
|
|
583
|
+
0,
|
|
584
|
+
[_E, _MDe],
|
|
585
|
+
[() => BatchCreateRumMetricDefinitionsErrors, () => MetricDefinitions], 1
|
|
586
|
+
];
|
|
587
|
+
var BatchDeleteRumMetricDefinitionsError$ = [3, n0, _BDRMDE,
|
|
588
|
+
0,
|
|
589
|
+
[_MDI, _EC, _EM],
|
|
590
|
+
[0, 0, 0], 3
|
|
591
|
+
];
|
|
592
|
+
var BatchDeleteRumMetricDefinitionsRequest$ = [3, n0, _BDRMDR,
|
|
593
|
+
0,
|
|
594
|
+
[_AMN, _De, _MDIe, _DA],
|
|
595
|
+
[[0, 1], [0, { [_hQ]: _d }], [64 | 0, { [_hQ]: _mDI }], [0, { [_hQ]: _dA }]], 3
|
|
596
|
+
];
|
|
597
|
+
var BatchDeleteRumMetricDefinitionsResponse$ = [3, n0, _BDRMDRa,
|
|
598
|
+
0,
|
|
599
|
+
[_E, _MDIe],
|
|
600
|
+
[() => BatchDeleteRumMetricDefinitionsErrors, 64 | 0], 1
|
|
601
|
+
];
|
|
602
|
+
var BatchGetRumMetricDefinitionsRequest$ = [3, n0, _BGRMDR,
|
|
603
|
+
0,
|
|
604
|
+
[_AMN, _De, _DA, _MR, _NT],
|
|
605
|
+
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _dA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
606
|
+
];
|
|
607
|
+
var BatchGetRumMetricDefinitionsResponse$ = [3, n0, _BGRMDRa,
|
|
608
|
+
0,
|
|
609
|
+
[_MDe, _NT],
|
|
610
|
+
[() => MetricDefinitions, 0]
|
|
611
|
+
];
|
|
612
|
+
var CreateAppMonitorRequest$ = [3, n0, _CAMR,
|
|
613
|
+
0,
|
|
614
|
+
[_N, _D, _DL, _T, _AMC, _CLE, _CEu, _DC, _P],
|
|
615
|
+
[0, 0, 64 | 0, 128 | 0, () => AppMonitorConfiguration$, 2, () => CustomEvents$, () => DeobfuscationConfiguration$, 0], 1
|
|
616
|
+
];
|
|
617
|
+
var CreateAppMonitorResponse$ = [3, n0, _CAMRr,
|
|
618
|
+
0,
|
|
619
|
+
[_I],
|
|
620
|
+
[0]
|
|
621
|
+
];
|
|
622
|
+
var CustomEvents$ = [3, n0, _CEu,
|
|
623
|
+
0,
|
|
624
|
+
[_St],
|
|
625
|
+
[0]
|
|
626
|
+
];
|
|
627
|
+
var CwLog$ = [3, n0, _CL,
|
|
628
|
+
0,
|
|
629
|
+
[_CLE, _CLG],
|
|
630
|
+
[2, 0]
|
|
631
|
+
];
|
|
632
|
+
var DataStorage$ = [3, n0, _DS,
|
|
633
|
+
0,
|
|
634
|
+
[_CL],
|
|
635
|
+
[() => CwLog$]
|
|
636
|
+
];
|
|
637
|
+
var DeleteAppMonitorRequest$ = [3, n0, _DAMR,
|
|
638
|
+
0,
|
|
639
|
+
[_N],
|
|
640
|
+
[[0, 1]], 1
|
|
641
|
+
];
|
|
642
|
+
var DeleteAppMonitorResponse$ = [3, n0, _DAMRe,
|
|
643
|
+
0,
|
|
644
|
+
[],
|
|
645
|
+
[]
|
|
646
|
+
];
|
|
647
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
648
|
+
0,
|
|
649
|
+
[_N, _PRI],
|
|
650
|
+
[[0, 1], [0, { [_hQ]: _pRI }]], 1
|
|
651
|
+
];
|
|
652
|
+
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
653
|
+
0,
|
|
654
|
+
[_PRI],
|
|
655
|
+
[0]
|
|
656
|
+
];
|
|
657
|
+
var DeleteRumMetricsDestinationRequest$ = [3, n0, _DRMDR,
|
|
658
|
+
0,
|
|
659
|
+
[_AMN, _De, _DA],
|
|
660
|
+
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _dA }]], 2
|
|
661
|
+
];
|
|
662
|
+
var DeleteRumMetricsDestinationResponse$ = [3, n0, _DRMDRe,
|
|
663
|
+
0,
|
|
664
|
+
[],
|
|
665
|
+
[]
|
|
666
|
+
];
|
|
667
|
+
var DeobfuscationConfiguration$ = [3, n0, _DC,
|
|
668
|
+
0,
|
|
669
|
+
[_JSSM],
|
|
670
|
+
[() => JavaScriptSourceMaps$]
|
|
671
|
+
];
|
|
672
|
+
var GetAppMonitorDataRequest$ = [3, n0, _GAMDR,
|
|
673
|
+
0,
|
|
674
|
+
[_N, _TR, _F, _MR, _NT],
|
|
675
|
+
[[0, 1], () => TimeRange$, () => QueryFilters, 1, 0], 2
|
|
676
|
+
];
|
|
677
|
+
var GetAppMonitorDataResponse$ = [3, n0, _GAMDRe,
|
|
678
|
+
0,
|
|
679
|
+
[_Ev, _NT],
|
|
680
|
+
[64 | 0, 0]
|
|
681
|
+
];
|
|
682
|
+
var GetAppMonitorRequest$ = [3, n0, _GAMR,
|
|
683
|
+
0,
|
|
684
|
+
[_N],
|
|
685
|
+
[[0, 1]], 1
|
|
686
|
+
];
|
|
687
|
+
var GetAppMonitorResponse$ = [3, n0, _GAMRe,
|
|
688
|
+
0,
|
|
689
|
+
[_AM],
|
|
690
|
+
[() => AppMonitor$]
|
|
691
|
+
];
|
|
692
|
+
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
693
|
+
0,
|
|
694
|
+
[_N],
|
|
695
|
+
[[0, 1]], 1
|
|
696
|
+
];
|
|
697
|
+
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
698
|
+
0,
|
|
699
|
+
[_PD, _PRI],
|
|
700
|
+
[0, 0]
|
|
701
|
+
];
|
|
702
|
+
var JavaScriptSourceMaps$ = [3, n0, _JSSM,
|
|
703
|
+
0,
|
|
704
|
+
[_St, _SU],
|
|
705
|
+
[0, 0], 1
|
|
706
|
+
];
|
|
707
|
+
var ListAppMonitorsRequest$ = [3, n0, _LAMR,
|
|
708
|
+
0,
|
|
709
|
+
[_MR, _NT],
|
|
710
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
711
|
+
];
|
|
712
|
+
var ListAppMonitorsResponse$ = [3, n0, _LAMRi,
|
|
713
|
+
0,
|
|
714
|
+
[_NT, _AMSp],
|
|
715
|
+
[0, () => AppMonitorSummaryList]
|
|
716
|
+
];
|
|
717
|
+
var ListRumMetricsDestinationsRequest$ = [3, n0, _LRMDR,
|
|
718
|
+
0,
|
|
719
|
+
[_AMN, _MR, _NT],
|
|
720
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
721
|
+
];
|
|
722
|
+
var ListRumMetricsDestinationsResponse$ = [3, n0, _LRMDRi,
|
|
723
|
+
0,
|
|
724
|
+
[_Des, _NT],
|
|
725
|
+
[() => MetricDestinationSummaryList, 0]
|
|
726
|
+
];
|
|
727
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
728
|
+
0,
|
|
729
|
+
[_RAe],
|
|
730
|
+
[[0, 1]], 1
|
|
731
|
+
];
|
|
732
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
733
|
+
0,
|
|
734
|
+
[_RAe, _T],
|
|
735
|
+
[0, 128 | 0], 2
|
|
736
|
+
];
|
|
737
|
+
var MetricDefinition$ = [3, n0, _MD,
|
|
738
|
+
0,
|
|
739
|
+
[_MDI, _N, _VK, _UL, _DK, _EPv, _Na],
|
|
740
|
+
[0, 0, 0, 0, 128 | 0, 0, 0], 2
|
|
741
|
+
];
|
|
742
|
+
var MetricDefinitionRequest$ = [3, n0, _MDR,
|
|
743
|
+
0,
|
|
744
|
+
[_N, _VK, _UL, _DK, _EPv, _Na],
|
|
745
|
+
[0, 0, 0, 128 | 0, 0, 0], 1
|
|
746
|
+
];
|
|
747
|
+
var MetricDestinationSummary$ = [3, n0, _MDS,
|
|
748
|
+
0,
|
|
749
|
+
[_De, _DA, _IRA],
|
|
750
|
+
[0, 0, 0]
|
|
751
|
+
];
|
|
752
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
753
|
+
0,
|
|
754
|
+
[_N, _PD, _PRI],
|
|
755
|
+
[[0, 1], 0, 0], 2
|
|
756
|
+
];
|
|
757
|
+
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
758
|
+
0,
|
|
759
|
+
[_PD, _PRI],
|
|
760
|
+
[0, 0]
|
|
761
|
+
];
|
|
762
|
+
var PutRumEventsRequest$ = [3, n0, _PRER,
|
|
763
|
+
0,
|
|
764
|
+
[_I, _BI, _AMD, _UD, _RE, _A],
|
|
765
|
+
[[0, 1], 0, () => AppMonitorDetails$, () => UserDetails$, [() => RumEventList, 0], 0], 5
|
|
766
|
+
];
|
|
767
|
+
var PutRumEventsResponse$ = [3, n0, _PRERu,
|
|
768
|
+
0,
|
|
769
|
+
[],
|
|
770
|
+
[]
|
|
771
|
+
];
|
|
772
|
+
var PutRumMetricsDestinationRequest$ = [3, n0, _PRMDR,
|
|
773
|
+
0,
|
|
774
|
+
[_AMN, _De, _DA, _IRA],
|
|
775
|
+
[[0, 1], 0, 0, 0], 2
|
|
776
|
+
];
|
|
777
|
+
var PutRumMetricsDestinationResponse$ = [3, n0, _PRMDRu,
|
|
778
|
+
0,
|
|
779
|
+
[],
|
|
780
|
+
[]
|
|
781
|
+
];
|
|
782
|
+
var QueryFilter$ = [3, n0, _QF,
|
|
783
|
+
0,
|
|
784
|
+
[_N, _V],
|
|
785
|
+
[0, 64 | 0]
|
|
786
|
+
];
|
|
787
|
+
var RumEvent$ = [3, n0, _REu,
|
|
788
|
+
0,
|
|
789
|
+
[_i, _t, _ty, _de, _me],
|
|
790
|
+
[0, 4, 0, [() => JsonValue, 0], [() => JsonValue, 0]], 4
|
|
791
|
+
];
|
|
792
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
793
|
+
0,
|
|
794
|
+
[_RAe, _T],
|
|
795
|
+
[[0, 1], 128 | 0], 2
|
|
796
|
+
];
|
|
797
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
798
|
+
0,
|
|
799
|
+
[],
|
|
800
|
+
[]
|
|
801
|
+
];
|
|
802
|
+
var TimeRange$ = [3, n0, _TR,
|
|
803
|
+
0,
|
|
804
|
+
[_Af, _B],
|
|
805
|
+
[1, 1], 1
|
|
806
|
+
];
|
|
807
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
808
|
+
0,
|
|
809
|
+
[_RAe, _TK],
|
|
810
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
811
|
+
];
|
|
812
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
813
|
+
0,
|
|
814
|
+
[],
|
|
815
|
+
[]
|
|
816
|
+
];
|
|
817
|
+
var UpdateAppMonitorRequest$ = [3, n0, _UAMR,
|
|
818
|
+
0,
|
|
819
|
+
[_N, _D, _DL, _AMC, _CLE, _CEu, _DC],
|
|
820
|
+
[[0, 1], 0, 64 | 0, () => AppMonitorConfiguration$, 2, () => CustomEvents$, () => DeobfuscationConfiguration$], 1
|
|
821
|
+
];
|
|
822
|
+
var UpdateAppMonitorResponse$ = [3, n0, _UAMRp,
|
|
823
|
+
0,
|
|
824
|
+
[],
|
|
825
|
+
[]
|
|
826
|
+
];
|
|
827
|
+
var UpdateRumMetricDefinitionRequest$ = [3, n0, _URMDR,
|
|
828
|
+
0,
|
|
829
|
+
[_AMN, _De, _MD, _MDI, _DA],
|
|
830
|
+
[[0, 1], 0, () => MetricDefinitionRequest$, 0, 0], 4
|
|
831
|
+
];
|
|
832
|
+
var UpdateRumMetricDefinitionResponse$ = [3, n0, _URMDRp,
|
|
833
|
+
0,
|
|
834
|
+
[],
|
|
835
|
+
[]
|
|
836
|
+
];
|
|
837
|
+
var UserDetails$ = [3, n0, _UD,
|
|
838
|
+
0,
|
|
839
|
+
[_uI, _sI],
|
|
840
|
+
[0, 0]
|
|
841
|
+
];
|
|
842
|
+
var AppMonitorSummaryList = [1, n0, _AMSL,
|
|
843
|
+
0, () => AppMonitorSummary$
|
|
844
|
+
];
|
|
845
|
+
var BatchCreateRumMetricDefinitionsErrors = [1, n0, _BCRMDEa,
|
|
846
|
+
0, () => BatchCreateRumMetricDefinitionsError$
|
|
847
|
+
];
|
|
848
|
+
var BatchDeleteRumMetricDefinitionsErrors = [1, n0, _BDRMDEa,
|
|
849
|
+
0, () => BatchDeleteRumMetricDefinitionsError$
|
|
850
|
+
];
|
|
851
|
+
var MetricDefinitions = [1, n0, _MDe,
|
|
852
|
+
0, () => MetricDefinition$
|
|
853
|
+
];
|
|
854
|
+
var MetricDefinitionsRequest = [1, n0, _MDRe,
|
|
855
|
+
0, () => MetricDefinitionRequest$
|
|
856
|
+
];
|
|
857
|
+
var MetricDestinationSummaryList = [1, n0, _MDSL,
|
|
858
|
+
0, () => MetricDestinationSummary$
|
|
859
|
+
];
|
|
860
|
+
var QueryFilters = [1, n0, _QFu,
|
|
861
|
+
0, () => QueryFilter$
|
|
862
|
+
];
|
|
863
|
+
var RumEventList = [1, n0, _REL,
|
|
864
|
+
0, [() => RumEvent$,
|
|
865
|
+
0]
|
|
866
|
+
];
|
|
867
|
+
var BatchCreateRumMetricDefinitions$ = [9, n0, _BCRMD,
|
|
868
|
+
{ [_h]: ["POST", "/rummetrics/{AppMonitorName}/metrics", 200] }, () => BatchCreateRumMetricDefinitionsRequest$, () => BatchCreateRumMetricDefinitionsResponse$
|
|
869
|
+
];
|
|
870
|
+
var BatchDeleteRumMetricDefinitions$ = [9, n0, _BDRMD,
|
|
871
|
+
{ [_h]: ["DELETE", "/rummetrics/{AppMonitorName}/metrics", 200] }, () => BatchDeleteRumMetricDefinitionsRequest$, () => BatchDeleteRumMetricDefinitionsResponse$
|
|
872
|
+
];
|
|
873
|
+
var BatchGetRumMetricDefinitions$ = [9, n0, _BGRMD,
|
|
874
|
+
{ [_h]: ["GET", "/rummetrics/{AppMonitorName}/metrics", 200] }, () => BatchGetRumMetricDefinitionsRequest$, () => BatchGetRumMetricDefinitionsResponse$
|
|
875
|
+
];
|
|
876
|
+
var CreateAppMonitor$ = [9, n0, _CAM,
|
|
877
|
+
{ [_h]: ["POST", "/appmonitor", 200] }, () => CreateAppMonitorRequest$, () => CreateAppMonitorResponse$
|
|
878
|
+
];
|
|
879
|
+
var DeleteAppMonitor$ = [9, n0, _DAM,
|
|
880
|
+
{ [_h]: ["DELETE", "/appmonitor/{Name}", 200] }, () => DeleteAppMonitorRequest$, () => DeleteAppMonitorResponse$
|
|
881
|
+
];
|
|
882
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
883
|
+
{ [_h]: ["DELETE", "/appmonitor/{Name}/policy", 200] }, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
884
|
+
];
|
|
885
|
+
var DeleteRumMetricsDestination$ = [9, n0, _DRMD,
|
|
886
|
+
{ [_h]: ["DELETE", "/rummetrics/{AppMonitorName}/metricsdestination", 200] }, () => DeleteRumMetricsDestinationRequest$, () => DeleteRumMetricsDestinationResponse$
|
|
887
|
+
];
|
|
888
|
+
var GetAppMonitor$ = [9, n0, _GAM,
|
|
889
|
+
{ [_h]: ["GET", "/appmonitor/{Name}", 200] }, () => GetAppMonitorRequest$, () => GetAppMonitorResponse$
|
|
890
|
+
];
|
|
891
|
+
var GetAppMonitorData$ = [9, n0, _GAMD,
|
|
892
|
+
{ [_h]: ["POST", "/appmonitor/{Name}/data", 200] }, () => GetAppMonitorDataRequest$, () => GetAppMonitorDataResponse$
|
|
893
|
+
];
|
|
894
|
+
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
895
|
+
{ [_h]: ["GET", "/appmonitor/{Name}/policy", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
896
|
+
];
|
|
897
|
+
var ListAppMonitors$ = [9, n0, _LAM,
|
|
898
|
+
{ [_h]: ["POST", "/appmonitors", 200] }, () => ListAppMonitorsRequest$, () => ListAppMonitorsResponse$
|
|
899
|
+
];
|
|
900
|
+
var ListRumMetricsDestinations$ = [9, n0, _LRMD,
|
|
901
|
+
{ [_h]: ["GET", "/rummetrics/{AppMonitorName}/metricsdestination", 200] }, () => ListRumMetricsDestinationsRequest$, () => ListRumMetricsDestinationsResponse$
|
|
902
|
+
];
|
|
903
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
904
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
905
|
+
];
|
|
906
|
+
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
907
|
+
{ [_h]: ["PUT", "/appmonitor/{Name}/policy", 200] }, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
908
|
+
];
|
|
909
|
+
var PutRumEvents$ = [9, n0, _PRE,
|
|
910
|
+
{ [_en]: ["dataplane."], [_h]: ["POST", "/appmonitors/{Id}/", 200] }, () => PutRumEventsRequest$, () => PutRumEventsResponse$
|
|
911
|
+
];
|
|
912
|
+
var PutRumMetricsDestination$ = [9, n0, _PRMD,
|
|
913
|
+
{ [_h]: ["POST", "/rummetrics/{AppMonitorName}/metricsdestination", 200] }, () => PutRumMetricsDestinationRequest$, () => PutRumMetricsDestinationResponse$
|
|
914
|
+
];
|
|
915
|
+
var TagResource$ = [9, n0, _TRa,
|
|
916
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
917
|
+
];
|
|
918
|
+
var UntagResource$ = [9, n0, _UR,
|
|
919
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
920
|
+
];
|
|
921
|
+
var UpdateAppMonitor$ = [9, n0, _UAM,
|
|
922
|
+
{ [_h]: ["PATCH", "/appmonitor/{Name}", 200] }, () => UpdateAppMonitorRequest$, () => UpdateAppMonitorResponse$
|
|
923
|
+
];
|
|
924
|
+
var UpdateRumMetricDefinition$ = [9, n0, _URMD,
|
|
925
|
+
{ [_h]: ["PATCH", "/rummetrics/{AppMonitorName}/metrics", 200] }, () => UpdateRumMetricDefinitionRequest$, () => UpdateRumMetricDefinitionResponse$
|
|
926
|
+
];
|
|
927
|
+
|
|
928
|
+
const getRuntimeConfig$1 = (config) => {
|
|
929
|
+
return {
|
|
930
|
+
apiVersion: "2018-05-10",
|
|
931
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
932
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
933
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
934
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
935
|
+
extensions: config?.extensions ?? [],
|
|
936
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRUMHttpAuthSchemeProvider,
|
|
937
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
938
|
+
{
|
|
939
|
+
schemeId: "aws.auth#sigv4",
|
|
940
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
941
|
+
signer: new AwsSdkSigV4Signer(),
|
|
942
|
+
},
|
|
943
|
+
],
|
|
944
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
945
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
946
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
947
|
+
defaultNamespace: "com.amazonaws.rum",
|
|
948
|
+
errorTypeRegistries,
|
|
949
|
+
version: "2018-05-10",
|
|
950
|
+
serviceTarget: "RUM",
|
|
951
|
+
},
|
|
952
|
+
serviceId: config?.serviceId ?? "RUM",
|
|
953
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
954
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
955
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
|
|
959
|
+
const getRuntimeConfig = (config) => {
|
|
960
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
961
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
962
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
963
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
964
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
965
|
+
const loaderConfig = {
|
|
966
|
+
profile: config?.profile,
|
|
967
|
+
logger: clientSharedValues.logger,
|
|
968
|
+
};
|
|
969
|
+
return {
|
|
970
|
+
...clientSharedValues,
|
|
971
|
+
...config,
|
|
972
|
+
runtime: "node",
|
|
973
|
+
defaultsMode,
|
|
974
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
975
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
976
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
977
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
978
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
979
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
980
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
981
|
+
retryMode: config?.retryMode ??
|
|
982
|
+
loadConfig({
|
|
983
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
984
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
985
|
+
}, config),
|
|
986
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
987
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
988
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
989
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
990
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
|
|
34
994
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
995
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
996
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -419,34 +1379,137 @@ const MetricDestination = {
|
|
|
419
1379
|
Evidently: "Evidently",
|
|
420
1380
|
};
|
|
421
1381
|
|
|
1382
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1383
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1384
|
+
exports.AppMonitor$ = AppMonitor$;
|
|
1385
|
+
exports.AppMonitorConfiguration$ = AppMonitorConfiguration$;
|
|
1386
|
+
exports.AppMonitorDetails$ = AppMonitorDetails$;
|
|
422
1387
|
exports.AppMonitorPlatform = AppMonitorPlatform;
|
|
1388
|
+
exports.AppMonitorSummary$ = AppMonitorSummary$;
|
|
1389
|
+
exports.BatchCreateRumMetricDefinitions$ = BatchCreateRumMetricDefinitions$;
|
|
423
1390
|
exports.BatchCreateRumMetricDefinitionsCommand = BatchCreateRumMetricDefinitionsCommand;
|
|
1391
|
+
exports.BatchCreateRumMetricDefinitionsError$ = BatchCreateRumMetricDefinitionsError$;
|
|
1392
|
+
exports.BatchCreateRumMetricDefinitionsRequest$ = BatchCreateRumMetricDefinitionsRequest$;
|
|
1393
|
+
exports.BatchCreateRumMetricDefinitionsResponse$ = BatchCreateRumMetricDefinitionsResponse$;
|
|
1394
|
+
exports.BatchDeleteRumMetricDefinitions$ = BatchDeleteRumMetricDefinitions$;
|
|
424
1395
|
exports.BatchDeleteRumMetricDefinitionsCommand = BatchDeleteRumMetricDefinitionsCommand;
|
|
1396
|
+
exports.BatchDeleteRumMetricDefinitionsError$ = BatchDeleteRumMetricDefinitionsError$;
|
|
1397
|
+
exports.BatchDeleteRumMetricDefinitionsRequest$ = BatchDeleteRumMetricDefinitionsRequest$;
|
|
1398
|
+
exports.BatchDeleteRumMetricDefinitionsResponse$ = BatchDeleteRumMetricDefinitionsResponse$;
|
|
1399
|
+
exports.BatchGetRumMetricDefinitions$ = BatchGetRumMetricDefinitions$;
|
|
425
1400
|
exports.BatchGetRumMetricDefinitionsCommand = BatchGetRumMetricDefinitionsCommand;
|
|
1401
|
+
exports.BatchGetRumMetricDefinitionsRequest$ = BatchGetRumMetricDefinitionsRequest$;
|
|
1402
|
+
exports.BatchGetRumMetricDefinitionsResponse$ = BatchGetRumMetricDefinitionsResponse$;
|
|
1403
|
+
exports.ConflictException = ConflictException;
|
|
1404
|
+
exports.ConflictException$ = ConflictException$;
|
|
1405
|
+
exports.CreateAppMonitor$ = CreateAppMonitor$;
|
|
426
1406
|
exports.CreateAppMonitorCommand = CreateAppMonitorCommand;
|
|
1407
|
+
exports.CreateAppMonitorRequest$ = CreateAppMonitorRequest$;
|
|
1408
|
+
exports.CreateAppMonitorResponse$ = CreateAppMonitorResponse$;
|
|
1409
|
+
exports.CustomEvents$ = CustomEvents$;
|
|
427
1410
|
exports.CustomEventsStatus = CustomEventsStatus;
|
|
1411
|
+
exports.CwLog$ = CwLog$;
|
|
1412
|
+
exports.DataStorage$ = DataStorage$;
|
|
1413
|
+
exports.DeleteAppMonitor$ = DeleteAppMonitor$;
|
|
428
1414
|
exports.DeleteAppMonitorCommand = DeleteAppMonitorCommand;
|
|
1415
|
+
exports.DeleteAppMonitorRequest$ = DeleteAppMonitorRequest$;
|
|
1416
|
+
exports.DeleteAppMonitorResponse$ = DeleteAppMonitorResponse$;
|
|
1417
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
429
1418
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1419
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
1420
|
+
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
1421
|
+
exports.DeleteRumMetricsDestination$ = DeleteRumMetricsDestination$;
|
|
430
1422
|
exports.DeleteRumMetricsDestinationCommand = DeleteRumMetricsDestinationCommand;
|
|
1423
|
+
exports.DeleteRumMetricsDestinationRequest$ = DeleteRumMetricsDestinationRequest$;
|
|
1424
|
+
exports.DeleteRumMetricsDestinationResponse$ = DeleteRumMetricsDestinationResponse$;
|
|
1425
|
+
exports.DeobfuscationConfiguration$ = DeobfuscationConfiguration$;
|
|
431
1426
|
exports.DeobfuscationStatus = DeobfuscationStatus;
|
|
1427
|
+
exports.GetAppMonitor$ = GetAppMonitor$;
|
|
432
1428
|
exports.GetAppMonitorCommand = GetAppMonitorCommand;
|
|
1429
|
+
exports.GetAppMonitorData$ = GetAppMonitorData$;
|
|
433
1430
|
exports.GetAppMonitorDataCommand = GetAppMonitorDataCommand;
|
|
1431
|
+
exports.GetAppMonitorDataRequest$ = GetAppMonitorDataRequest$;
|
|
1432
|
+
exports.GetAppMonitorDataResponse$ = GetAppMonitorDataResponse$;
|
|
1433
|
+
exports.GetAppMonitorRequest$ = GetAppMonitorRequest$;
|
|
1434
|
+
exports.GetAppMonitorResponse$ = GetAppMonitorResponse$;
|
|
1435
|
+
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
434
1436
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1437
|
+
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
1438
|
+
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
1439
|
+
exports.InternalServerException = InternalServerException;
|
|
1440
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1441
|
+
exports.InvalidPolicyRevisionIdException = InvalidPolicyRevisionIdException;
|
|
1442
|
+
exports.InvalidPolicyRevisionIdException$ = InvalidPolicyRevisionIdException$;
|
|
1443
|
+
exports.JavaScriptSourceMaps$ = JavaScriptSourceMaps$;
|
|
1444
|
+
exports.ListAppMonitors$ = ListAppMonitors$;
|
|
435
1445
|
exports.ListAppMonitorsCommand = ListAppMonitorsCommand;
|
|
1446
|
+
exports.ListAppMonitorsRequest$ = ListAppMonitorsRequest$;
|
|
1447
|
+
exports.ListAppMonitorsResponse$ = ListAppMonitorsResponse$;
|
|
1448
|
+
exports.ListRumMetricsDestinations$ = ListRumMetricsDestinations$;
|
|
436
1449
|
exports.ListRumMetricsDestinationsCommand = ListRumMetricsDestinationsCommand;
|
|
1450
|
+
exports.ListRumMetricsDestinationsRequest$ = ListRumMetricsDestinationsRequest$;
|
|
1451
|
+
exports.ListRumMetricsDestinationsResponse$ = ListRumMetricsDestinationsResponse$;
|
|
1452
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
437
1453
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1454
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1455
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1456
|
+
exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException;
|
|
1457
|
+
exports.MalformedPolicyDocumentException$ = MalformedPolicyDocumentException$;
|
|
1458
|
+
exports.MetricDefinition$ = MetricDefinition$;
|
|
1459
|
+
exports.MetricDefinitionRequest$ = MetricDefinitionRequest$;
|
|
438
1460
|
exports.MetricDestination = MetricDestination;
|
|
1461
|
+
exports.MetricDestinationSummary$ = MetricDestinationSummary$;
|
|
1462
|
+
exports.PolicyNotFoundException = PolicyNotFoundException;
|
|
1463
|
+
exports.PolicyNotFoundException$ = PolicyNotFoundException$;
|
|
1464
|
+
exports.PolicySizeLimitExceededException = PolicySizeLimitExceededException;
|
|
1465
|
+
exports.PolicySizeLimitExceededException$ = PolicySizeLimitExceededException$;
|
|
1466
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
439
1467
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1468
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
1469
|
+
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
1470
|
+
exports.PutRumEvents$ = PutRumEvents$;
|
|
440
1471
|
exports.PutRumEventsCommand = PutRumEventsCommand;
|
|
1472
|
+
exports.PutRumEventsRequest$ = PutRumEventsRequest$;
|
|
1473
|
+
exports.PutRumEventsResponse$ = PutRumEventsResponse$;
|
|
1474
|
+
exports.PutRumMetricsDestination$ = PutRumMetricsDestination$;
|
|
441
1475
|
exports.PutRumMetricsDestinationCommand = PutRumMetricsDestinationCommand;
|
|
1476
|
+
exports.PutRumMetricsDestinationRequest$ = PutRumMetricsDestinationRequest$;
|
|
1477
|
+
exports.PutRumMetricsDestinationResponse$ = PutRumMetricsDestinationResponse$;
|
|
1478
|
+
exports.QueryFilter$ = QueryFilter$;
|
|
442
1479
|
exports.RUM = RUM;
|
|
443
1480
|
exports.RUMClient = RUMClient;
|
|
1481
|
+
exports.RUMServiceException = RUMServiceException;
|
|
1482
|
+
exports.RUMServiceException$ = RUMServiceException$;
|
|
1483
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1484
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1485
|
+
exports.RumEvent$ = RumEvent$;
|
|
1486
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1487
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
444
1488
|
exports.StateEnum = StateEnum;
|
|
1489
|
+
exports.TagResource$ = TagResource$;
|
|
445
1490
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1491
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1492
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
446
1493
|
exports.Telemetry = Telemetry;
|
|
1494
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1495
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1496
|
+
exports.TimeRange$ = TimeRange$;
|
|
1497
|
+
exports.UntagResource$ = UntagResource$;
|
|
447
1498
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1499
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1500
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1501
|
+
exports.UpdateAppMonitor$ = UpdateAppMonitor$;
|
|
448
1502
|
exports.UpdateAppMonitorCommand = UpdateAppMonitorCommand;
|
|
1503
|
+
exports.UpdateAppMonitorRequest$ = UpdateAppMonitorRequest$;
|
|
1504
|
+
exports.UpdateAppMonitorResponse$ = UpdateAppMonitorResponse$;
|
|
1505
|
+
exports.UpdateRumMetricDefinition$ = UpdateRumMetricDefinition$;
|
|
449
1506
|
exports.UpdateRumMetricDefinitionCommand = UpdateRumMetricDefinitionCommand;
|
|
1507
|
+
exports.UpdateRumMetricDefinitionRequest$ = UpdateRumMetricDefinitionRequest$;
|
|
1508
|
+
exports.UpdateRumMetricDefinitionResponse$ = UpdateRumMetricDefinitionResponse$;
|
|
1509
|
+
exports.UserDetails$ = UserDetails$;
|
|
1510
|
+
exports.ValidationException = ValidationException;
|
|
1511
|
+
exports.ValidationException$ = ValidationException$;
|
|
1512
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
450
1513
|
exports.paginateBatchGetRumMetricDefinitions = paginateBatchGetRumMetricDefinitions;
|
|
451
1514
|
exports.paginateGetAppMonitorData = paginateGetAppMonitorData;
|
|
452
1515
|
exports.paginateListAppMonitors = paginateListAppMonitors;
|