@aws-sdk/client-entityresolution 3.1075.0 → 3.1077.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 +1668 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- 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/EntityResolutionServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -93
- 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 -1358
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultEntityResolutionHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "entityresolution",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultEntityResolutionHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1444 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://entityresolution-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://entityresolution-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://entityresolution.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://entityresolution.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class EntityResolutionServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, EntityResolutionServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends EntityResolutionServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class ConflictException extends EntityResolutionServiceException {
|
|
153
|
+
name = "ConflictException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "ConflictException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class InternalServerException extends EntityResolutionServiceException {
|
|
165
|
+
name = "InternalServerException";
|
|
166
|
+
$fault = "server";
|
|
167
|
+
$retryable = {};
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "InternalServerException",
|
|
171
|
+
$fault: "server",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ResourceNotFoundException extends EntityResolutionServiceException {
|
|
178
|
+
name = "ResourceNotFoundException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ResourceNotFoundException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
class ThrottlingException extends EntityResolutionServiceException {
|
|
190
|
+
name = "ThrottlingException";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
$retryable = {
|
|
193
|
+
throttling: true,
|
|
194
|
+
};
|
|
195
|
+
constructor(opts) {
|
|
196
|
+
super({
|
|
197
|
+
name: "ThrottlingException",
|
|
198
|
+
$fault: "client",
|
|
199
|
+
...opts,
|
|
200
|
+
});
|
|
201
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
class ValidationException extends EntityResolutionServiceException {
|
|
205
|
+
name = "ValidationException";
|
|
206
|
+
$fault = "client";
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "ValidationException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
class ExceedsLimitException extends EntityResolutionServiceException {
|
|
217
|
+
name = "ExceedsLimitException";
|
|
218
|
+
$fault = "client";
|
|
219
|
+
quotaName;
|
|
220
|
+
quotaValue;
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "ExceedsLimitException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, ExceedsLimitException.prototype);
|
|
228
|
+
this.quotaName = opts.quotaName;
|
|
229
|
+
this.quotaValue = opts.quotaValue;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
const _ADE = "AccessDeniedException";
|
|
234
|
+
const _APS = "AddPolicyStatement";
|
|
235
|
+
const _APSI = "AddPolicyStatementInput";
|
|
236
|
+
const _APSO = "AddPolicyStatementOutput";
|
|
237
|
+
const _BDUI = "BatchDeleteUniqueId";
|
|
238
|
+
const _BDUII = "BatchDeleteUniqueIdInput";
|
|
239
|
+
const _BDUIO = "BatchDeleteUniqueIdOutput";
|
|
240
|
+
const _CE = "ConflictException";
|
|
241
|
+
const _CIMW = "CreateIdMappingWorkflow";
|
|
242
|
+
const _CIMWI = "CreateIdMappingWorkflowInput";
|
|
243
|
+
const _CIMWO = "CreateIdMappingWorkflowOutput";
|
|
244
|
+
const _CIN = "CreateIdNamespace";
|
|
245
|
+
const _CINI = "CreateIdNamespaceInput";
|
|
246
|
+
const _CINO = "CreateIdNamespaceOutput";
|
|
247
|
+
const _CMW = "CreateMatchingWorkflow";
|
|
248
|
+
const _CMWI = "CreateMatchingWorkflowInput";
|
|
249
|
+
const _CMWO = "CreateMatchingWorkflowOutput";
|
|
250
|
+
const _CPIC = "CustomerProfilesIntegrationConfig";
|
|
251
|
+
const _CSM = "CreateSchemaMapping";
|
|
252
|
+
const _CSMI = "CreateSchemaMappingInput";
|
|
253
|
+
const _CSMO = "CreateSchemaMappingOutput";
|
|
254
|
+
const _DIMW = "DeleteIdMappingWorkflow";
|
|
255
|
+
const _DIMWI = "DeleteIdMappingWorkflowInput";
|
|
256
|
+
const _DIMWO = "DeleteIdMappingWorkflowOutput";
|
|
257
|
+
const _DIN = "DeleteIdNamespace";
|
|
258
|
+
const _DINI = "DeleteIdNamespaceInput";
|
|
259
|
+
const _DINO = "DeleteIdNamespaceOutput";
|
|
260
|
+
const _DMW = "DeleteMatchingWorkflow";
|
|
261
|
+
const _DMWI = "DeleteMatchingWorkflowInput";
|
|
262
|
+
const _DMWO = "DeleteMatchingWorkflowOutput";
|
|
263
|
+
const _DPS = "DeletePolicyStatement";
|
|
264
|
+
const _DPSI = "DeletePolicyStatementInput";
|
|
265
|
+
const _DPSO = "DeletePolicyStatementOutput";
|
|
266
|
+
const _DSM = "DeleteSchemaMapping";
|
|
267
|
+
const _DSMI = "DeleteSchemaMappingInput";
|
|
268
|
+
const _DSMO = "DeleteSchemaMappingOutput";
|
|
269
|
+
const _DUI = "DeletedUniqueId";
|
|
270
|
+
const _DUIE = "DeleteUniqueIdError";
|
|
271
|
+
const _DUIEL = "DeleteUniqueIdErrorsList";
|
|
272
|
+
const _DUIL = "DeletedUniqueIdList";
|
|
273
|
+
const _ED = "ErrorDetails";
|
|
274
|
+
const _ELE = "ExceedsLimitException";
|
|
275
|
+
const _FR = "FailedRecord";
|
|
276
|
+
const _FRL = "FailedRecordsList";
|
|
277
|
+
const _GIMJ = "GetIdMappingJob";
|
|
278
|
+
const _GIMJI = "GetIdMappingJobInput";
|
|
279
|
+
const _GIMJO = "GetIdMappingJobOutput";
|
|
280
|
+
const _GIMW = "GetIdMappingWorkflow";
|
|
281
|
+
const _GIMWI = "GetIdMappingWorkflowInput";
|
|
282
|
+
const _GIMWO = "GetIdMappingWorkflowOutput";
|
|
283
|
+
const _GIN = "GetIdNamespace";
|
|
284
|
+
const _GINI = "GetIdNamespaceInput";
|
|
285
|
+
const _GINO = "GetIdNamespaceOutput";
|
|
286
|
+
const _GMI = "GenerateMatchId";
|
|
287
|
+
const _GMII = "GenerateMatchIdInput";
|
|
288
|
+
const _GMIIe = "GetMatchIdInput";
|
|
289
|
+
const _GMIO = "GenerateMatchIdOutput";
|
|
290
|
+
const _GMIOe = "GetMatchIdOutput";
|
|
291
|
+
const _GMIe = "GetMatchId";
|
|
292
|
+
const _GMJ = "GetMatchingJob";
|
|
293
|
+
const _GMJI = "GetMatchingJobInput";
|
|
294
|
+
const _GMJO = "GetMatchingJobOutput";
|
|
295
|
+
const _GMW = "GetMatchingWorkflow";
|
|
296
|
+
const _GMWI = "GetMatchingWorkflowInput";
|
|
297
|
+
const _GMWO = "GetMatchingWorkflowOutput";
|
|
298
|
+
const _GP = "GetPolicy";
|
|
299
|
+
const _GPI = "GetPolicyInput";
|
|
300
|
+
const _GPO = "GetPolicyOutput";
|
|
301
|
+
const _GPS = "GetProviderService";
|
|
302
|
+
const _GPSI = "GetProviderServiceInput";
|
|
303
|
+
const _GPSO = "GetProviderServiceOutput";
|
|
304
|
+
const _GSM = "GetSchemaMapping";
|
|
305
|
+
const _GSMI = "GetSchemaMappingInput";
|
|
306
|
+
const _GSMO = "GetSchemaMappingOutput";
|
|
307
|
+
const _IMIRC = "IdMappingIncrementalRunConfig";
|
|
308
|
+
const _IMJM = "IdMappingJobMetrics";
|
|
309
|
+
const _IMJOS = "IdMappingJobOutputSource";
|
|
310
|
+
const _IMJOSC = "IdMappingJobOutputSourceConfig";
|
|
311
|
+
const _IMRBP = "IdMappingRuleBasedProperties";
|
|
312
|
+
const _IMT = "IdMappingTechniques";
|
|
313
|
+
const _IMWIS = "IdMappingWorkflowInputSource";
|
|
314
|
+
const _IMWISC = "IdMappingWorkflowInputSourceConfig";
|
|
315
|
+
const _IMWL = "IdMappingWorkflowList";
|
|
316
|
+
const _IMWOS = "IdMappingWorkflowOutputSource";
|
|
317
|
+
const _IMWOSC = "IdMappingWorkflowOutputSourceConfig";
|
|
318
|
+
const _IMWS = "IdMappingWorkflowSummary";
|
|
319
|
+
const _INIMWM = "IdNamespaceIdMappingWorkflowMetadata";
|
|
320
|
+
const _INIMWML = "IdNamespaceIdMappingWorkflowMetadataList";
|
|
321
|
+
const _INIMWP = "IdNamespaceIdMappingWorkflowProperties";
|
|
322
|
+
const _INIMWPL = "IdNamespaceIdMappingWorkflowPropertiesList";
|
|
323
|
+
const _INIS = "IdNamespaceInputSource";
|
|
324
|
+
const _INISC = "IdNamespaceInputSourceConfig";
|
|
325
|
+
const _INL = "IdNamespaceList";
|
|
326
|
+
const _INS = "IdNamespaceSummary";
|
|
327
|
+
const _IRC = "IncrementalRunConfig";
|
|
328
|
+
const _IS = "InputSource";
|
|
329
|
+
const _ISC = "IntermediateSourceConfiguration";
|
|
330
|
+
const _ISCn = "InputSourceConfig";
|
|
331
|
+
const _ISE = "InternalServerException";
|
|
332
|
+
const _JL = "JobList";
|
|
333
|
+
const _JM = "JobMetrics";
|
|
334
|
+
const _JOS = "JobOutputSource";
|
|
335
|
+
const _JOSC = "JobOutputSourceConfig";
|
|
336
|
+
const _JS = "JobSummary";
|
|
337
|
+
const _KMSA = "KMSArn";
|
|
338
|
+
const _LIMJ = "ListIdMappingJobs";
|
|
339
|
+
const _LIMJI = "ListIdMappingJobsInput";
|
|
340
|
+
const _LIMJO = "ListIdMappingJobsOutput";
|
|
341
|
+
const _LIMW = "ListIdMappingWorkflows";
|
|
342
|
+
const _LIMWI = "ListIdMappingWorkflowsInput";
|
|
343
|
+
const _LIMWO = "ListIdMappingWorkflowsOutput";
|
|
344
|
+
const _LIN = "ListIdNamespaces";
|
|
345
|
+
const _LINI = "ListIdNamespacesInput";
|
|
346
|
+
const _LINO = "ListIdNamespacesOutput";
|
|
347
|
+
const _LMJ = "ListMatchingJobs";
|
|
348
|
+
const _LMJI = "ListMatchingJobsInput";
|
|
349
|
+
const _LMJO = "ListMatchingJobsOutput";
|
|
350
|
+
const _LMW = "ListMatchingWorkflows";
|
|
351
|
+
const _LMWI = "ListMatchingWorkflowsInput";
|
|
352
|
+
const _LMWO = "ListMatchingWorkflowsOutput";
|
|
353
|
+
const _LPS = "ListProviderServices";
|
|
354
|
+
const _LPSI = "ListProviderServicesInput";
|
|
355
|
+
const _LPSO = "ListProviderServicesOutput";
|
|
356
|
+
const _LSM = "ListSchemaMappings";
|
|
357
|
+
const _LSMI = "ListSchemaMappingsInput";
|
|
358
|
+
const _LSMO = "ListSchemaMappingsOutput";
|
|
359
|
+
const _LTFR = "ListTagsForResource";
|
|
360
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
361
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
362
|
+
const _MC = "MatchingConfig";
|
|
363
|
+
const _MG = "MatchGroup";
|
|
364
|
+
const _MGL = "MatchGroupsList";
|
|
365
|
+
const _MR = "MatchedRecord";
|
|
366
|
+
const _MRL = "MatchedRecordsList";
|
|
367
|
+
const _MWL = "MatchingWorkflowList";
|
|
368
|
+
const _MWS = "MatchingWorkflowSummary";
|
|
369
|
+
const _NPP = "NamespaceProviderProperties";
|
|
370
|
+
const _NRBP = "NamespaceRuleBasedProperties";
|
|
371
|
+
const _OA = "OutputAttribute";
|
|
372
|
+
const _OAu = "OutputAttributes";
|
|
373
|
+
const _OS = "OutputSource";
|
|
374
|
+
const _OSC = "OutputSourceConfig";
|
|
375
|
+
const _PCS = "ProviderComponentSchema";
|
|
376
|
+
const _PEC = "ProviderEndpointConfiguration";
|
|
377
|
+
const _PIDAC = "ProviderIntermediateDataAccessConfiguration";
|
|
378
|
+
const _PINSC = "ProviderIdNameSpaceConfiguration";
|
|
379
|
+
const _PMC = "ProviderMarketplaceConfiguration";
|
|
380
|
+
const _PP = "ProviderProperties";
|
|
381
|
+
const _PPI = "PutPolicyInput";
|
|
382
|
+
const _PPO = "PutPolicyOutput";
|
|
383
|
+
const _PPu = "PutPolicy";
|
|
384
|
+
const _PSA = "ProviderSchemaAttribute";
|
|
385
|
+
const _PSAr = "ProviderSchemaAttributes";
|
|
386
|
+
const _PSL = "ProviderServiceList";
|
|
387
|
+
const _PSS = "ProviderServiceSummary";
|
|
388
|
+
const _R = "Record";
|
|
389
|
+
const _RAM = "RecordAttributeMap";
|
|
390
|
+
const _RAMS = "RecordAttributeMapString255";
|
|
391
|
+
const _RBP = "RuleBasedProperties";
|
|
392
|
+
const _RC = "RuleCondition";
|
|
393
|
+
const _RCL = "RuleConditionList";
|
|
394
|
+
const _RCP = "RuleConditionProperties";
|
|
395
|
+
const _RL = "RecordList";
|
|
396
|
+
const _RLu = "RuleList";
|
|
397
|
+
const _RNFE = "ResourceNotFoundException";
|
|
398
|
+
const _RT = "ResolutionTechniques";
|
|
399
|
+
const _Ru = "Rule";
|
|
400
|
+
const _S = "Schemas";
|
|
401
|
+
const _SIA = "SchemaInputAttribute";
|
|
402
|
+
const _SIAc = "SchemaInputAttributes";
|
|
403
|
+
const _SIMJ = "StartIdMappingJob";
|
|
404
|
+
const _SIMJI = "StartIdMappingJobInput";
|
|
405
|
+
const _SIMJO = "StartIdMappingJobOutput";
|
|
406
|
+
const _SMJ = "StartMatchingJob";
|
|
407
|
+
const _SMJI = "StartMatchingJobInput";
|
|
408
|
+
const _SMJO = "StartMatchingJobOutput";
|
|
409
|
+
const _SML = "SchemaMappingList";
|
|
410
|
+
const _SMS = "SchemaMappingSummary";
|
|
411
|
+
const _TE = "ThrottlingException";
|
|
412
|
+
const _TR = "TagResource";
|
|
413
|
+
const _TRI = "TagResourceInput";
|
|
414
|
+
const _TRO = "TagResourceOutput";
|
|
415
|
+
const _UIMW = "UpdateIdMappingWorkflow";
|
|
416
|
+
const _UIMWI = "UpdateIdMappingWorkflowInput";
|
|
417
|
+
const _UIMWO = "UpdateIdMappingWorkflowOutput";
|
|
418
|
+
const _UIN = "UpdateIdNamespace";
|
|
419
|
+
const _UINI = "UpdateIdNamespaceInput";
|
|
420
|
+
const _UINO = "UpdateIdNamespaceOutput";
|
|
421
|
+
const _UMW = "UpdateMatchingWorkflow";
|
|
422
|
+
const _UMWI = "UpdateMatchingWorkflowInput";
|
|
423
|
+
const _UMWO = "UpdateMatchingWorkflowOutput";
|
|
424
|
+
const _UR = "UntagResource";
|
|
425
|
+
const _URI = "UntagResourceInput";
|
|
426
|
+
const _URO = "UntagResourceOutput";
|
|
427
|
+
const _USM = "UpdateSchemaMapping";
|
|
428
|
+
const _USMI = "UpdateSchemaMappingInput";
|
|
429
|
+
const _USMO = "UpdateSchemaMappingOutput";
|
|
430
|
+
const _VE = "ValidationException";
|
|
431
|
+
const _a = "arn";
|
|
432
|
+
const _aAI = "awsAccountIds";
|
|
433
|
+
const _aI = "assetId";
|
|
434
|
+
const _aMM = "attributeMatchingModel";
|
|
435
|
+
const _aN = "applyNormalization";
|
|
436
|
+
const _aO = "anonymizedOutput";
|
|
437
|
+
const _ac = "action";
|
|
438
|
+
const _c = "client";
|
|
439
|
+
const _cA = "createdAt";
|
|
440
|
+
const _cPIC = "customerProfilesIntegrationConfig";
|
|
441
|
+
const _co = "condition";
|
|
442
|
+
const _d = "deleted";
|
|
443
|
+
const _dA = "domainArn";
|
|
444
|
+
const _dRP = "deleteRecordsProcessed";
|
|
445
|
+
const _dSI = "dataSetId";
|
|
446
|
+
const _dUI = "disconnectedUniqueIds";
|
|
447
|
+
const _de = "description";
|
|
448
|
+
const _e = "error";
|
|
449
|
+
const _eD = "errorDetails";
|
|
450
|
+
const _eM = "errorMessage";
|
|
451
|
+
const _eT = "errorType";
|
|
452
|
+
const _eTM = "enableTransitiveMatching";
|
|
453
|
+
const _eTn = "endTime";
|
|
454
|
+
const _ef = "effect";
|
|
455
|
+
const _er = "errors";
|
|
456
|
+
const _fN = "fieldName";
|
|
457
|
+
const _fR = "failedRecords";
|
|
458
|
+
const _gN = "groupName";
|
|
459
|
+
const _h = "hashed";
|
|
460
|
+
const _hE = "httpError";
|
|
461
|
+
const _hH = "httpHeader";
|
|
462
|
+
const _hQ = "httpQuery";
|
|
463
|
+
const _hW = "hasWorkflows";
|
|
464
|
+
const _ha = "hashing";
|
|
465
|
+
const _ht = "http";
|
|
466
|
+
const _iMT = "idMappingTechniques";
|
|
467
|
+
const _iMTd = "idMappingType";
|
|
468
|
+
const _iMWP = "idMappingWorkflowProperties";
|
|
469
|
+
const _iNA = "idNamespaceArn";
|
|
470
|
+
const _iNN = "idNamespaceName";
|
|
471
|
+
const _iNS = "idNamespaceSummaries";
|
|
472
|
+
const _iR = "inputRecords";
|
|
473
|
+
const _iRC = "incrementalRunConfig";
|
|
474
|
+
const _iRT = "incrementalRunType";
|
|
475
|
+
const _iS = "inputSource";
|
|
476
|
+
const _iSARN = "inputSourceARN";
|
|
477
|
+
const _iSC = "inputSourceConfig";
|
|
478
|
+
const _iSCn = "intermediateSourceConfiguration";
|
|
479
|
+
const _iSP = "intermediateS3Path";
|
|
480
|
+
const _j = "jobs";
|
|
481
|
+
const _jI = "jobId";
|
|
482
|
+
const _jT = "jobType";
|
|
483
|
+
const _lI = "listingId";
|
|
484
|
+
const _m = "message";
|
|
485
|
+
const _mC = "matchingConfig";
|
|
486
|
+
const _mCa = "marketplaceConfiguration";
|
|
487
|
+
const _mG = "matchGroups";
|
|
488
|
+
const _mI = "matchId";
|
|
489
|
+
const _mID = "matchIDs";
|
|
490
|
+
const _mIF = "mappedInputFields";
|
|
491
|
+
const _mK = "matchingKeys";
|
|
492
|
+
const _mKa = "matchKey";
|
|
493
|
+
const _mP = "matchPurpose";
|
|
494
|
+
const _mR = "matchRule";
|
|
495
|
+
const _mRR = "mappedRecordsRemoved";
|
|
496
|
+
const _mRa = "maxResults";
|
|
497
|
+
const _mSRR = "mappedSourceRecordsRemoved";
|
|
498
|
+
const _mTRR = "mappedTargetRecordsRemoved";
|
|
499
|
+
const _me = "metrics";
|
|
500
|
+
const _n = "name";
|
|
501
|
+
const _nMR = "newMappedRecords";
|
|
502
|
+
const _nMSR = "newMappedSourceRecords";
|
|
503
|
+
const _nMTR = "newMappedTargetRecords";
|
|
504
|
+
const _nT = "nextToken";
|
|
505
|
+
const _nURL = "newUniqueRecordsLoaded";
|
|
506
|
+
const _o = "output";
|
|
507
|
+
const _oSC = "outputSourceConfig";
|
|
508
|
+
const _oSP = "outputS3Path";
|
|
509
|
+
const _oTA = "objectTypeArn";
|
|
510
|
+
const _p = "principal";
|
|
511
|
+
const _pC = "providerConfiguration";
|
|
512
|
+
const _pCD = "providerConfigurationDefinition";
|
|
513
|
+
const _pCS = "providerComponentSchema";
|
|
514
|
+
const _pEC = "providerEndpointConfiguration";
|
|
515
|
+
const _pEOD = "providerEntityOutputDefinition";
|
|
516
|
+
const _pIDAC = "providerIntermediateDataAccessConfiguration";
|
|
517
|
+
const _pINSC = "providerIdNameSpaceConfiguration";
|
|
518
|
+
const _pJC = "providerJobConfiguration";
|
|
519
|
+
const _pN = "providerName";
|
|
520
|
+
const _pP = "providerProperties";
|
|
521
|
+
const _pSA = "providerServiceArn";
|
|
522
|
+
const _pSAr = "providerSchemaAttributes";
|
|
523
|
+
const _pSCD = "providerSourceConfigurationDefinition";
|
|
524
|
+
const _pSDN = "providerServiceDisplayName";
|
|
525
|
+
const _pSN = "providerServiceName";
|
|
526
|
+
const _pSS = "providerServiceSummaries";
|
|
527
|
+
const _pST = "providerServiceType";
|
|
528
|
+
const _pT = "processingType";
|
|
529
|
+
const _pTCD = "providerTargetConfigurationDefinition";
|
|
530
|
+
const _po = "policy";
|
|
531
|
+
const _qN = "quotaName";
|
|
532
|
+
const _qV = "quotaValue";
|
|
533
|
+
const _r = "records";
|
|
534
|
+
const _rA = "roleArn";
|
|
535
|
+
const _rAM = "recordAttributeMap";
|
|
536
|
+
const _rAe = "resourceArn";
|
|
537
|
+
const _rBA = "requiredBucketActions";
|
|
538
|
+
const _rBP = "ruleBasedProperties";
|
|
539
|
+
const _rCP = "ruleConditionProperties";
|
|
540
|
+
const _rDT = "ruleDefinitionType";
|
|
541
|
+
const _rDTu = "ruleDefinitionTypes";
|
|
542
|
+
const _rI = "recordId";
|
|
543
|
+
const _rIe = "revisionId";
|
|
544
|
+
const _rMM = "recordMatchingModel";
|
|
545
|
+
const _rMMe = "recordMatchingModels";
|
|
546
|
+
const _rN = "ruleName";
|
|
547
|
+
const _rNP = "recordsNotProcessed";
|
|
548
|
+
const _rT = "resolutionTechniques";
|
|
549
|
+
const _rTe = "resolutionType";
|
|
550
|
+
const _re = "record";
|
|
551
|
+
const _ru = "rules";
|
|
552
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.entityresolution";
|
|
553
|
+
const _sA = "schemaArn";
|
|
554
|
+
const _sI = "statementId";
|
|
555
|
+
const _sL = "schemaList";
|
|
556
|
+
const _sN = "schemaName";
|
|
557
|
+
const _sT = "startTime";
|
|
558
|
+
const _sTu = "subType";
|
|
559
|
+
const _sc = "schemas";
|
|
560
|
+
const _se = "server";
|
|
561
|
+
const _st = "status";
|
|
562
|
+
const _t = "token";
|
|
563
|
+
const _tK = "tagKeys";
|
|
564
|
+
const _tMR = "totalMappedRecords";
|
|
565
|
+
const _tMSR = "totalMappedSourceRecords";
|
|
566
|
+
const _tMTR = "totalMappedTargetRecords";
|
|
567
|
+
const _tRP = "totalRecordsProcessed";
|
|
568
|
+
const _ta = "tags";
|
|
569
|
+
const _ty = "type";
|
|
570
|
+
const _uA = "updatedAt";
|
|
571
|
+
const _uI = "uniqueIds";
|
|
572
|
+
const _uIn = "uniqueId";
|
|
573
|
+
const _uRL = "uniqueRecordsLoaded";
|
|
574
|
+
const _wA = "workflowArn";
|
|
575
|
+
const _wN = "workflowName";
|
|
576
|
+
const _wS = "workflowSummaries";
|
|
577
|
+
const n0 = "com.amazonaws.entityresolution";
|
|
578
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
579
|
+
var EntityResolutionServiceException$ = [-3, _s, "EntityResolutionServiceException", 0, [], []];
|
|
580
|
+
_s_registry.registerError(EntityResolutionServiceException$, EntityResolutionServiceException);
|
|
581
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
582
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
583
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
584
|
+
[_m],
|
|
585
|
+
[0]
|
|
586
|
+
];
|
|
587
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
588
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
589
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
590
|
+
[_m],
|
|
591
|
+
[0]
|
|
592
|
+
];
|
|
593
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
594
|
+
var ExceedsLimitException$ = [-3, n0, _ELE,
|
|
595
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
596
|
+
[_m, _qN, _qV],
|
|
597
|
+
[0, 0, 1]
|
|
598
|
+
];
|
|
599
|
+
n0_registry.registerError(ExceedsLimitException$, ExceedsLimitException);
|
|
600
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
601
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
602
|
+
[_m],
|
|
603
|
+
[0]
|
|
604
|
+
];
|
|
605
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
606
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
607
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
608
|
+
[_m],
|
|
609
|
+
[0]
|
|
610
|
+
];
|
|
611
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
612
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
613
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
614
|
+
[_m],
|
|
615
|
+
[0]
|
|
616
|
+
];
|
|
617
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
618
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
619
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
620
|
+
[_m],
|
|
621
|
+
[0]
|
|
622
|
+
];
|
|
623
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
624
|
+
const errorTypeRegistries = [
|
|
625
|
+
_s_registry,
|
|
626
|
+
n0_registry,
|
|
627
|
+
];
|
|
628
|
+
var AddPolicyStatementInput$ = [3, n0, _APSI,
|
|
629
|
+
0,
|
|
630
|
+
[_a, _sI, _ef, _ac, _p, _co],
|
|
631
|
+
[[0, 1], [0, 1], 0, 64 | 0, 64 | 0, 0], 5
|
|
632
|
+
];
|
|
633
|
+
var AddPolicyStatementOutput$ = [3, n0, _APSO,
|
|
634
|
+
0,
|
|
635
|
+
[_a, _t, _po],
|
|
636
|
+
[0, 0, 0], 2
|
|
637
|
+
];
|
|
638
|
+
var BatchDeleteUniqueIdInput$ = [3, n0, _BDUII,
|
|
639
|
+
0,
|
|
640
|
+
[_wN, _uI, _iS],
|
|
641
|
+
[[0, 1], [64 | 0, { [_hH]: _uI }], [0, { [_hH]: _iS }]], 2
|
|
642
|
+
];
|
|
643
|
+
var BatchDeleteUniqueIdOutput$ = [3, n0, _BDUIO,
|
|
644
|
+
0,
|
|
645
|
+
[_st, _er, _d, _dUI],
|
|
646
|
+
[0, () => DeleteUniqueIdErrorsList, () => DeletedUniqueIdList, 64 | 0], 4
|
|
647
|
+
];
|
|
648
|
+
var CreateIdMappingWorkflowInput$ = [3, n0, _CIMWI,
|
|
649
|
+
0,
|
|
650
|
+
[_wN, _iSC, _iMT, _de, _oSC, _iRC, _rA, _ta],
|
|
651
|
+
[0, () => IdMappingWorkflowInputSourceConfig, () => IdMappingTechniques$, 0, () => IdMappingWorkflowOutputSourceConfig, () => IdMappingIncrementalRunConfig$, 0, 128 | 0], 3
|
|
652
|
+
];
|
|
653
|
+
var CreateIdMappingWorkflowOutput$ = [3, n0, _CIMWO,
|
|
654
|
+
0,
|
|
655
|
+
[_wN, _wA, _iSC, _iMT, _de, _oSC, _iRC, _rA],
|
|
656
|
+
[0, 0, () => IdMappingWorkflowInputSourceConfig, () => IdMappingTechniques$, 0, () => IdMappingWorkflowOutputSourceConfig, () => IdMappingIncrementalRunConfig$, 0], 4
|
|
657
|
+
];
|
|
658
|
+
var CreateIdNamespaceInput$ = [3, n0, _CINI,
|
|
659
|
+
0,
|
|
660
|
+
[_iNN, _ty, _de, _iSC, _iMWP, _rA, _ta],
|
|
661
|
+
[0, 0, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 128 | 0], 2
|
|
662
|
+
];
|
|
663
|
+
var CreateIdNamespaceOutput$ = [3, n0, _CINO,
|
|
664
|
+
0,
|
|
665
|
+
[_iNN, _iNA, _ty, _cA, _uA, _de, _iSC, _iMWP, _rA, _ta],
|
|
666
|
+
[0, 0, 0, 4, 4, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 128 | 0], 5
|
|
667
|
+
];
|
|
668
|
+
var CreateMatchingWorkflowInput$ = [3, n0, _CMWI,
|
|
669
|
+
0,
|
|
670
|
+
[_wN, _iSC, _oSC, _rT, _rA, _de, _iRC, _ta],
|
|
671
|
+
[0, () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques$, 0, 0, () => IncrementalRunConfig$, 128 | 0], 5
|
|
672
|
+
];
|
|
673
|
+
var CreateMatchingWorkflowOutput$ = [3, n0, _CMWO,
|
|
674
|
+
0,
|
|
675
|
+
[_wN, _wA, _iSC, _oSC, _rT, _rA, _de, _iRC],
|
|
676
|
+
[0, 0, () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques$, 0, 0, () => IncrementalRunConfig$], 6
|
|
677
|
+
];
|
|
678
|
+
var CreateSchemaMappingInput$ = [3, n0, _CSMI,
|
|
679
|
+
0,
|
|
680
|
+
[_sN, _mIF, _de, _ta],
|
|
681
|
+
[0, () => SchemaInputAttributes, 0, 128 | 0], 2
|
|
682
|
+
];
|
|
683
|
+
var CreateSchemaMappingOutput$ = [3, n0, _CSMO,
|
|
684
|
+
0,
|
|
685
|
+
[_sN, _sA, _de, _mIF],
|
|
686
|
+
[0, 0, 0, () => SchemaInputAttributes], 4
|
|
687
|
+
];
|
|
688
|
+
var CustomerProfilesIntegrationConfig$ = [3, n0, _CPIC,
|
|
689
|
+
0,
|
|
690
|
+
[_dA, _oTA],
|
|
691
|
+
[0, 0], 2
|
|
692
|
+
];
|
|
693
|
+
var DeletedUniqueId$ = [3, n0, _DUI,
|
|
694
|
+
0,
|
|
695
|
+
[_uIn],
|
|
696
|
+
[0], 1
|
|
697
|
+
];
|
|
698
|
+
var DeleteIdMappingWorkflowInput$ = [3, n0, _DIMWI,
|
|
699
|
+
0,
|
|
700
|
+
[_wN],
|
|
701
|
+
[[0, 1]], 1
|
|
702
|
+
];
|
|
703
|
+
var DeleteIdMappingWorkflowOutput$ = [3, n0, _DIMWO,
|
|
704
|
+
0,
|
|
705
|
+
[_m],
|
|
706
|
+
[0], 1
|
|
707
|
+
];
|
|
708
|
+
var DeleteIdNamespaceInput$ = [3, n0, _DINI,
|
|
709
|
+
0,
|
|
710
|
+
[_iNN],
|
|
711
|
+
[[0, 1]], 1
|
|
712
|
+
];
|
|
713
|
+
var DeleteIdNamespaceOutput$ = [3, n0, _DINO,
|
|
714
|
+
0,
|
|
715
|
+
[_m],
|
|
716
|
+
[0], 1
|
|
717
|
+
];
|
|
718
|
+
var DeleteMatchingWorkflowInput$ = [3, n0, _DMWI,
|
|
719
|
+
0,
|
|
720
|
+
[_wN],
|
|
721
|
+
[[0, 1]], 1
|
|
722
|
+
];
|
|
723
|
+
var DeleteMatchingWorkflowOutput$ = [3, n0, _DMWO,
|
|
724
|
+
0,
|
|
725
|
+
[_m],
|
|
726
|
+
[0], 1
|
|
727
|
+
];
|
|
728
|
+
var DeletePolicyStatementInput$ = [3, n0, _DPSI,
|
|
729
|
+
0,
|
|
730
|
+
[_a, _sI],
|
|
731
|
+
[[0, 1], [0, 1]], 2
|
|
732
|
+
];
|
|
733
|
+
var DeletePolicyStatementOutput$ = [3, n0, _DPSO,
|
|
734
|
+
0,
|
|
735
|
+
[_a, _t, _po],
|
|
736
|
+
[0, 0, 0], 2
|
|
737
|
+
];
|
|
738
|
+
var DeleteSchemaMappingInput$ = [3, n0, _DSMI,
|
|
739
|
+
0,
|
|
740
|
+
[_sN],
|
|
741
|
+
[[0, 1]], 1
|
|
742
|
+
];
|
|
743
|
+
var DeleteSchemaMappingOutput$ = [3, n0, _DSMO,
|
|
744
|
+
0,
|
|
745
|
+
[_m],
|
|
746
|
+
[0], 1
|
|
747
|
+
];
|
|
748
|
+
var DeleteUniqueIdError$ = [3, n0, _DUIE,
|
|
749
|
+
0,
|
|
750
|
+
[_uIn, _eT],
|
|
751
|
+
[0, 0], 2
|
|
752
|
+
];
|
|
753
|
+
var ErrorDetails$ = [3, n0, _ED,
|
|
754
|
+
0,
|
|
755
|
+
[_eM],
|
|
756
|
+
[0]
|
|
757
|
+
];
|
|
758
|
+
var FailedRecord$ = [3, n0, _FR,
|
|
759
|
+
0,
|
|
760
|
+
[_iSARN, _uIn, _eM],
|
|
761
|
+
[0, 0, 0], 3
|
|
762
|
+
];
|
|
763
|
+
var GenerateMatchIdInput$ = [3, n0, _GMII,
|
|
764
|
+
0,
|
|
765
|
+
[_wN, _r, _pT],
|
|
766
|
+
[[0, 1], [() => RecordList, 0], 0], 2
|
|
767
|
+
];
|
|
768
|
+
var GenerateMatchIdOutput$ = [3, n0, _GMIO,
|
|
769
|
+
0,
|
|
770
|
+
[_mG, _fR],
|
|
771
|
+
[() => MatchGroupsList, () => FailedRecordsList], 2
|
|
772
|
+
];
|
|
773
|
+
var GetIdMappingJobInput$ = [3, n0, _GIMJI,
|
|
774
|
+
0,
|
|
775
|
+
[_wN, _jI],
|
|
776
|
+
[[0, 1], [0, 1]], 2
|
|
777
|
+
];
|
|
778
|
+
var GetIdMappingJobOutput$ = [3, n0, _GIMJO,
|
|
779
|
+
0,
|
|
780
|
+
[_jI, _st, _sT, _eTn, _me, _eD, _oSC, _jT],
|
|
781
|
+
[0, 0, 4, 4, () => IdMappingJobMetrics$, () => ErrorDetails$, () => IdMappingJobOutputSourceConfig, 0], 3
|
|
782
|
+
];
|
|
783
|
+
var GetIdMappingWorkflowInput$ = [3, n0, _GIMWI,
|
|
784
|
+
0,
|
|
785
|
+
[_wN],
|
|
786
|
+
[[0, 1]], 1
|
|
787
|
+
];
|
|
788
|
+
var GetIdMappingWorkflowOutput$ = [3, n0, _GIMWO,
|
|
789
|
+
0,
|
|
790
|
+
[_wN, _wA, _iSC, _iMT, _cA, _uA, _de, _oSC, _iRC, _rA, _ta],
|
|
791
|
+
[0, 0, () => IdMappingWorkflowInputSourceConfig, () => IdMappingTechniques$, 4, 4, 0, () => IdMappingWorkflowOutputSourceConfig, () => IdMappingIncrementalRunConfig$, 0, 128 | 0], 6
|
|
792
|
+
];
|
|
793
|
+
var GetIdNamespaceInput$ = [3, n0, _GINI,
|
|
794
|
+
0,
|
|
795
|
+
[_iNN],
|
|
796
|
+
[[0, 1]], 1
|
|
797
|
+
];
|
|
798
|
+
var GetIdNamespaceOutput$ = [3, n0, _GINO,
|
|
799
|
+
0,
|
|
800
|
+
[_iNN, _iNA, _ty, _cA, _uA, _de, _iSC, _iMWP, _rA, _ta],
|
|
801
|
+
[0, 0, 0, 4, 4, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0, 128 | 0], 5
|
|
802
|
+
];
|
|
803
|
+
var GetMatchIdInput$ = [3, n0, _GMIIe,
|
|
804
|
+
0,
|
|
805
|
+
[_wN, _re, _aN],
|
|
806
|
+
[[0, 1], [() => RecordAttributeMap, 0], 2], 2
|
|
807
|
+
];
|
|
808
|
+
var GetMatchIdOutput$ = [3, n0, _GMIOe,
|
|
809
|
+
0,
|
|
810
|
+
[_mI, _mR],
|
|
811
|
+
[0, 0]
|
|
812
|
+
];
|
|
813
|
+
var GetMatchingJobInput$ = [3, n0, _GMJI,
|
|
814
|
+
0,
|
|
815
|
+
[_wN, _jI],
|
|
816
|
+
[[0, 1], [0, 1]], 2
|
|
817
|
+
];
|
|
818
|
+
var GetMatchingJobOutput$ = [3, n0, _GMJO,
|
|
819
|
+
0,
|
|
820
|
+
[_jI, _st, _sT, _eTn, _me, _eD, _oSC],
|
|
821
|
+
[0, 0, 4, 4, () => JobMetrics$, () => ErrorDetails$, () => JobOutputSourceConfig], 3
|
|
822
|
+
];
|
|
823
|
+
var GetMatchingWorkflowInput$ = [3, n0, _GMWI,
|
|
824
|
+
0,
|
|
825
|
+
[_wN],
|
|
826
|
+
[[0, 1]], 1
|
|
827
|
+
];
|
|
828
|
+
var GetMatchingWorkflowOutput$ = [3, n0, _GMWO,
|
|
829
|
+
0,
|
|
830
|
+
[_wN, _wA, _iSC, _oSC, _rT, _cA, _uA, _rA, _de, _iRC, _ta],
|
|
831
|
+
[0, 0, () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques$, 4, 4, 0, 0, () => IncrementalRunConfig$, 128 | 0], 8
|
|
832
|
+
];
|
|
833
|
+
var GetPolicyInput$ = [3, n0, _GPI,
|
|
834
|
+
0,
|
|
835
|
+
[_a],
|
|
836
|
+
[[0, 1]], 1
|
|
837
|
+
];
|
|
838
|
+
var GetPolicyOutput$ = [3, n0, _GPO,
|
|
839
|
+
0,
|
|
840
|
+
[_a, _t, _po],
|
|
841
|
+
[0, 0, 0], 2
|
|
842
|
+
];
|
|
843
|
+
var GetProviderServiceInput$ = [3, n0, _GPSI,
|
|
844
|
+
0,
|
|
845
|
+
[_pN, _pSN],
|
|
846
|
+
[[0, 1], [0, 1]], 2
|
|
847
|
+
];
|
|
848
|
+
var GetProviderServiceOutput$ = [3, n0, _GPSO,
|
|
849
|
+
0,
|
|
850
|
+
[_pN, _pSN, _pSDN, _pST, _pSA, _pEC, _aO, _pEOD, _pCD, _pINSC, _pJC, _pIDAC, _pCS],
|
|
851
|
+
[0, 0, 0, 0, 0, () => ProviderEndpointConfiguration$, 2, 15, 15, () => ProviderIdNameSpaceConfiguration$, 15, () => ProviderIntermediateDataAccessConfiguration$, () => ProviderComponentSchema$], 8
|
|
852
|
+
];
|
|
853
|
+
var GetSchemaMappingInput$ = [3, n0, _GSMI,
|
|
854
|
+
0,
|
|
855
|
+
[_sN],
|
|
856
|
+
[[0, 1]], 1
|
|
857
|
+
];
|
|
858
|
+
var GetSchemaMappingOutput$ = [3, n0, _GSMO,
|
|
859
|
+
0,
|
|
860
|
+
[_sN, _sA, _mIF, _cA, _uA, _hW, _de, _ta],
|
|
861
|
+
[0, 0, () => SchemaInputAttributes, 4, 4, 2, 0, 128 | 0], 6
|
|
862
|
+
];
|
|
863
|
+
var IdMappingIncrementalRunConfig$ = [3, n0, _IMIRC,
|
|
864
|
+
0,
|
|
865
|
+
[_iRT],
|
|
866
|
+
[0]
|
|
867
|
+
];
|
|
868
|
+
var IdMappingJobMetrics$ = [3, n0, _IMJM,
|
|
869
|
+
0,
|
|
870
|
+
[_iR, _tRP, _rNP, _dRP, _tMR, _tMSR, _tMTR, _uRL, _nMR, _nMSR, _nMTR, _nURL, _mRR, _mSRR, _mTRR],
|
|
871
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
|
|
872
|
+
];
|
|
873
|
+
var IdMappingJobOutputSource$ = [3, n0, _IMJOS,
|
|
874
|
+
0,
|
|
875
|
+
[_rA, _oSP, _KMSA],
|
|
876
|
+
[0, 0, 0], 2
|
|
877
|
+
];
|
|
878
|
+
var IdMappingRuleBasedProperties$ = [3, n0, _IMRBP,
|
|
879
|
+
0,
|
|
880
|
+
[_rDT, _aMM, _rMM, _ru],
|
|
881
|
+
[0, 0, 0, () => RuleList], 3
|
|
882
|
+
];
|
|
883
|
+
var IdMappingTechniques$ = [3, n0, _IMT,
|
|
884
|
+
0,
|
|
885
|
+
[_iMTd, _rBP, _pP],
|
|
886
|
+
[0, () => IdMappingRuleBasedProperties$, () => ProviderProperties$], 1
|
|
887
|
+
];
|
|
888
|
+
var IdMappingWorkflowInputSource$ = [3, n0, _IMWIS,
|
|
889
|
+
0,
|
|
890
|
+
[_iSARN, _sN, _ty],
|
|
891
|
+
[0, 0, 0], 1
|
|
892
|
+
];
|
|
893
|
+
var IdMappingWorkflowOutputSource$ = [3, n0, _IMWOS,
|
|
894
|
+
0,
|
|
895
|
+
[_oSP, _KMSA],
|
|
896
|
+
[0, 0], 1
|
|
897
|
+
];
|
|
898
|
+
var IdMappingWorkflowSummary$ = [3, n0, _IMWS,
|
|
899
|
+
0,
|
|
900
|
+
[_wN, _wA, _cA, _uA],
|
|
901
|
+
[0, 0, 4, 4], 4
|
|
902
|
+
];
|
|
903
|
+
var IdNamespaceIdMappingWorkflowMetadata$ = [3, n0, _INIMWM,
|
|
904
|
+
0,
|
|
905
|
+
[_iMTd],
|
|
906
|
+
[0], 1
|
|
907
|
+
];
|
|
908
|
+
var IdNamespaceIdMappingWorkflowProperties$ = [3, n0, _INIMWP,
|
|
909
|
+
0,
|
|
910
|
+
[_iMTd, _rBP, _pP],
|
|
911
|
+
[0, () => NamespaceRuleBasedProperties$, () => NamespaceProviderProperties$], 1
|
|
912
|
+
];
|
|
913
|
+
var IdNamespaceInputSource$ = [3, n0, _INIS,
|
|
914
|
+
0,
|
|
915
|
+
[_iSARN, _sN],
|
|
916
|
+
[0, 0], 1
|
|
917
|
+
];
|
|
918
|
+
var IdNamespaceSummary$ = [3, n0, _INS,
|
|
919
|
+
0,
|
|
920
|
+
[_iNN, _iNA, _ty, _cA, _uA, _de, _iMWP],
|
|
921
|
+
[0, 0, 0, 4, 4, 0, () => IdNamespaceIdMappingWorkflowMetadataList], 5
|
|
922
|
+
];
|
|
923
|
+
var IncrementalRunConfig$ = [3, n0, _IRC,
|
|
924
|
+
0,
|
|
925
|
+
[_iRT],
|
|
926
|
+
[0]
|
|
927
|
+
];
|
|
928
|
+
var InputSource$ = [3, n0, _IS,
|
|
929
|
+
0,
|
|
930
|
+
[_iSARN, _sN, _aN],
|
|
931
|
+
[0, 0, 2], 2
|
|
932
|
+
];
|
|
933
|
+
var IntermediateSourceConfiguration$ = [3, n0, _ISC,
|
|
934
|
+
0,
|
|
935
|
+
[_iSP],
|
|
936
|
+
[0], 1
|
|
937
|
+
];
|
|
938
|
+
var JobMetrics$ = [3, n0, _JM,
|
|
939
|
+
0,
|
|
940
|
+
[_iR, _tRP, _rNP, _dRP, _mID],
|
|
941
|
+
[1, 1, 1, 1, 1]
|
|
942
|
+
];
|
|
943
|
+
var JobOutputSource$ = [3, n0, _JOS,
|
|
944
|
+
0,
|
|
945
|
+
[_rA, _oSP, _KMSA],
|
|
946
|
+
[0, 0, 0], 2
|
|
947
|
+
];
|
|
948
|
+
var JobSummary$ = [3, n0, _JS,
|
|
949
|
+
0,
|
|
950
|
+
[_jI, _st, _sT, _eTn],
|
|
951
|
+
[0, 0, 4, 4], 3
|
|
952
|
+
];
|
|
953
|
+
var ListIdMappingJobsInput$ = [3, n0, _LIMJI,
|
|
954
|
+
0,
|
|
955
|
+
[_wN, _nT, _mRa],
|
|
956
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]], 1
|
|
957
|
+
];
|
|
958
|
+
var ListIdMappingJobsOutput$ = [3, n0, _LIMJO,
|
|
959
|
+
0,
|
|
960
|
+
[_j, _nT],
|
|
961
|
+
[() => JobList, 0]
|
|
962
|
+
];
|
|
963
|
+
var ListIdMappingWorkflowsInput$ = [3, n0, _LIMWI,
|
|
964
|
+
0,
|
|
965
|
+
[_nT, _mRa],
|
|
966
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]]
|
|
967
|
+
];
|
|
968
|
+
var ListIdMappingWorkflowsOutput$ = [3, n0, _LIMWO,
|
|
969
|
+
0,
|
|
970
|
+
[_wS, _nT],
|
|
971
|
+
[() => IdMappingWorkflowList, 0]
|
|
972
|
+
];
|
|
973
|
+
var ListIdNamespacesInput$ = [3, n0, _LINI,
|
|
974
|
+
0,
|
|
975
|
+
[_nT, _mRa],
|
|
976
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]]
|
|
977
|
+
];
|
|
978
|
+
var ListIdNamespacesOutput$ = [3, n0, _LINO,
|
|
979
|
+
0,
|
|
980
|
+
[_iNS, _nT],
|
|
981
|
+
[() => IdNamespaceList, 0]
|
|
982
|
+
];
|
|
983
|
+
var ListMatchingJobsInput$ = [3, n0, _LMJI,
|
|
984
|
+
0,
|
|
985
|
+
[_wN, _nT, _mRa],
|
|
986
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]], 1
|
|
987
|
+
];
|
|
988
|
+
var ListMatchingJobsOutput$ = [3, n0, _LMJO,
|
|
989
|
+
0,
|
|
990
|
+
[_j, _nT],
|
|
991
|
+
[() => JobList, 0]
|
|
992
|
+
];
|
|
993
|
+
var ListMatchingWorkflowsInput$ = [3, n0, _LMWI,
|
|
994
|
+
0,
|
|
995
|
+
[_nT, _mRa],
|
|
996
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]]
|
|
997
|
+
];
|
|
998
|
+
var ListMatchingWorkflowsOutput$ = [3, n0, _LMWO,
|
|
999
|
+
0,
|
|
1000
|
+
[_wS, _nT],
|
|
1001
|
+
[() => MatchingWorkflowList, 0]
|
|
1002
|
+
];
|
|
1003
|
+
var ListProviderServicesInput$ = [3, n0, _LPSI,
|
|
1004
|
+
0,
|
|
1005
|
+
[_nT, _mRa, _pN],
|
|
1006
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _pN }]]
|
|
1007
|
+
];
|
|
1008
|
+
var ListProviderServicesOutput$ = [3, n0, _LPSO,
|
|
1009
|
+
0,
|
|
1010
|
+
[_pSS, _nT],
|
|
1011
|
+
[() => ProviderServiceList, 0]
|
|
1012
|
+
];
|
|
1013
|
+
var ListSchemaMappingsInput$ = [3, n0, _LSMI,
|
|
1014
|
+
0,
|
|
1015
|
+
[_nT, _mRa],
|
|
1016
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]]
|
|
1017
|
+
];
|
|
1018
|
+
var ListSchemaMappingsOutput$ = [3, n0, _LSMO,
|
|
1019
|
+
0,
|
|
1020
|
+
[_sL, _nT],
|
|
1021
|
+
[() => SchemaMappingList, 0]
|
|
1022
|
+
];
|
|
1023
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1024
|
+
0,
|
|
1025
|
+
[_rAe],
|
|
1026
|
+
[[0, 1]], 1
|
|
1027
|
+
];
|
|
1028
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1029
|
+
0,
|
|
1030
|
+
[_ta],
|
|
1031
|
+
[128 | 0], 1
|
|
1032
|
+
];
|
|
1033
|
+
var MatchedRecord$ = [3, n0, _MR,
|
|
1034
|
+
0,
|
|
1035
|
+
[_iSARN, _rI],
|
|
1036
|
+
[0, 0], 2
|
|
1037
|
+
];
|
|
1038
|
+
var MatchGroup$ = [3, n0, _MG,
|
|
1039
|
+
0,
|
|
1040
|
+
[_r, _mI, _mR],
|
|
1041
|
+
[() => MatchedRecordsList, 0, 0], 3
|
|
1042
|
+
];
|
|
1043
|
+
var MatchingConfig$ = [3, n0, _MC,
|
|
1044
|
+
0,
|
|
1045
|
+
[_eTM],
|
|
1046
|
+
[2]
|
|
1047
|
+
];
|
|
1048
|
+
var MatchingWorkflowSummary$ = [3, n0, _MWS,
|
|
1049
|
+
0,
|
|
1050
|
+
[_wN, _wA, _cA, _uA, _rTe],
|
|
1051
|
+
[0, 0, 4, 4, 0], 5
|
|
1052
|
+
];
|
|
1053
|
+
var NamespaceProviderProperties$ = [3, n0, _NPP,
|
|
1054
|
+
0,
|
|
1055
|
+
[_pSA, _pC],
|
|
1056
|
+
[0, 15], 1
|
|
1057
|
+
];
|
|
1058
|
+
var NamespaceRuleBasedProperties$ = [3, n0, _NRBP,
|
|
1059
|
+
0,
|
|
1060
|
+
[_ru, _rDTu, _aMM, _rMMe],
|
|
1061
|
+
[() => RuleList, 64 | 0, 0, 64 | 0]
|
|
1062
|
+
];
|
|
1063
|
+
var OutputAttribute$ = [3, n0, _OA,
|
|
1064
|
+
0,
|
|
1065
|
+
[_n, _h],
|
|
1066
|
+
[0, 2], 1
|
|
1067
|
+
];
|
|
1068
|
+
var OutputSource$ = [3, n0, _OS,
|
|
1069
|
+
0,
|
|
1070
|
+
[_o, _KMSA, _oSP, _aN, _cPIC],
|
|
1071
|
+
[() => OutputAttributes, 0, 0, 2, () => CustomerProfilesIntegrationConfig$], 1
|
|
1072
|
+
];
|
|
1073
|
+
var ProviderComponentSchema$ = [3, n0, _PCS,
|
|
1074
|
+
0,
|
|
1075
|
+
[_sc, _pSAr],
|
|
1076
|
+
[[1, n0, _S, 0, 64 | 0], () => ProviderSchemaAttributes]
|
|
1077
|
+
];
|
|
1078
|
+
var ProviderIdNameSpaceConfiguration$ = [3, n0, _PINSC,
|
|
1079
|
+
0,
|
|
1080
|
+
[_de, _pTCD, _pSCD],
|
|
1081
|
+
[0, 15, 15]
|
|
1082
|
+
];
|
|
1083
|
+
var ProviderIntermediateDataAccessConfiguration$ = [3, n0, _PIDAC,
|
|
1084
|
+
0,
|
|
1085
|
+
[_aAI, _rBA],
|
|
1086
|
+
[64 | 0, 64 | 0]
|
|
1087
|
+
];
|
|
1088
|
+
var ProviderMarketplaceConfiguration$ = [3, n0, _PMC,
|
|
1089
|
+
0,
|
|
1090
|
+
[_dSI, _rIe, _aI, _lI],
|
|
1091
|
+
[0, 0, 0, 0], 4
|
|
1092
|
+
];
|
|
1093
|
+
var ProviderProperties$ = [3, n0, _PP,
|
|
1094
|
+
0,
|
|
1095
|
+
[_pSA, _pC, _iSCn],
|
|
1096
|
+
[0, 15, () => IntermediateSourceConfiguration$], 1
|
|
1097
|
+
];
|
|
1098
|
+
var ProviderSchemaAttribute$ = [3, n0, _PSA,
|
|
1099
|
+
0,
|
|
1100
|
+
[_fN, _ty, _sTu, _ha],
|
|
1101
|
+
[0, 0, 0, 2], 2
|
|
1102
|
+
];
|
|
1103
|
+
var ProviderServiceSummary$ = [3, n0, _PSS,
|
|
1104
|
+
0,
|
|
1105
|
+
[_pSA, _pN, _pSDN, _pSN, _pST],
|
|
1106
|
+
[0, 0, 0, 0, 0], 5
|
|
1107
|
+
];
|
|
1108
|
+
var PutPolicyInput$ = [3, n0, _PPI,
|
|
1109
|
+
0,
|
|
1110
|
+
[_a, _po, _t],
|
|
1111
|
+
[[0, 1], 0, 0], 2
|
|
1112
|
+
];
|
|
1113
|
+
var PutPolicyOutput$ = [3, n0, _PPO,
|
|
1114
|
+
0,
|
|
1115
|
+
[_a, _t, _po],
|
|
1116
|
+
[0, 0, 0], 2
|
|
1117
|
+
];
|
|
1118
|
+
var _Record$ = [3, n0, _R,
|
|
1119
|
+
0,
|
|
1120
|
+
[_iSARN, _uIn, _rAM],
|
|
1121
|
+
[0, 0, [() => RecordAttributeMapString255, 0]], 3
|
|
1122
|
+
];
|
|
1123
|
+
var ResolutionTechniques$ = [3, n0, _RT,
|
|
1124
|
+
0,
|
|
1125
|
+
[_rTe, _rBP, _rCP, _pP],
|
|
1126
|
+
[0, () => RuleBasedProperties$, () => RuleConditionProperties$, () => ProviderProperties$], 1
|
|
1127
|
+
];
|
|
1128
|
+
var Rule$ = [3, n0, _Ru,
|
|
1129
|
+
0,
|
|
1130
|
+
[_rN, _mK],
|
|
1131
|
+
[0, 64 | 0], 2
|
|
1132
|
+
];
|
|
1133
|
+
var RuleBasedProperties$ = [3, n0, _RBP,
|
|
1134
|
+
0,
|
|
1135
|
+
[_ru, _aMM, _mP],
|
|
1136
|
+
[() => RuleList, 0, 0], 2
|
|
1137
|
+
];
|
|
1138
|
+
var RuleCondition$ = [3, n0, _RC,
|
|
1139
|
+
0,
|
|
1140
|
+
[_rN, _co],
|
|
1141
|
+
[0, 0], 2
|
|
1142
|
+
];
|
|
1143
|
+
var RuleConditionProperties$ = [3, n0, _RCP,
|
|
1144
|
+
0,
|
|
1145
|
+
[_ru, _mC],
|
|
1146
|
+
[() => RuleConditionList, () => MatchingConfig$], 1
|
|
1147
|
+
];
|
|
1148
|
+
var SchemaInputAttribute$ = [3, n0, _SIA,
|
|
1149
|
+
0,
|
|
1150
|
+
[_fN, _ty, _gN, _mKa, _sTu, _h],
|
|
1151
|
+
[0, 0, 0, 0, 0, 2], 2
|
|
1152
|
+
];
|
|
1153
|
+
var SchemaMappingSummary$ = [3, n0, _SMS,
|
|
1154
|
+
0,
|
|
1155
|
+
[_sN, _sA, _cA, _uA, _hW],
|
|
1156
|
+
[0, 0, 4, 4, 2], 5
|
|
1157
|
+
];
|
|
1158
|
+
var StartIdMappingJobInput$ = [3, n0, _SIMJI,
|
|
1159
|
+
0,
|
|
1160
|
+
[_wN, _oSC, _jT],
|
|
1161
|
+
[[0, 1], () => IdMappingJobOutputSourceConfig, 0], 1
|
|
1162
|
+
];
|
|
1163
|
+
var StartIdMappingJobOutput$ = [3, n0, _SIMJO,
|
|
1164
|
+
0,
|
|
1165
|
+
[_jI, _oSC, _jT],
|
|
1166
|
+
[0, () => IdMappingJobOutputSourceConfig, 0], 1
|
|
1167
|
+
];
|
|
1168
|
+
var StartMatchingJobInput$ = [3, n0, _SMJI,
|
|
1169
|
+
0,
|
|
1170
|
+
[_wN],
|
|
1171
|
+
[[0, 1]], 1
|
|
1172
|
+
];
|
|
1173
|
+
var StartMatchingJobOutput$ = [3, n0, _SMJO,
|
|
1174
|
+
0,
|
|
1175
|
+
[_jI],
|
|
1176
|
+
[0], 1
|
|
1177
|
+
];
|
|
1178
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1179
|
+
0,
|
|
1180
|
+
[_rAe, _ta],
|
|
1181
|
+
[[0, 1], 128 | 0], 2
|
|
1182
|
+
];
|
|
1183
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1184
|
+
0,
|
|
1185
|
+
[],
|
|
1186
|
+
[]
|
|
1187
|
+
];
|
|
1188
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1189
|
+
0,
|
|
1190
|
+
[_rAe, _tK],
|
|
1191
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1192
|
+
];
|
|
1193
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1194
|
+
0,
|
|
1195
|
+
[],
|
|
1196
|
+
[]
|
|
1197
|
+
];
|
|
1198
|
+
var UpdateIdMappingWorkflowInput$ = [3, n0, _UIMWI,
|
|
1199
|
+
0,
|
|
1200
|
+
[_wN, _iSC, _iMT, _de, _oSC, _iRC, _rA],
|
|
1201
|
+
[[0, 1], () => IdMappingWorkflowInputSourceConfig, () => IdMappingTechniques$, 0, () => IdMappingWorkflowOutputSourceConfig, () => IdMappingIncrementalRunConfig$, 0], 3
|
|
1202
|
+
];
|
|
1203
|
+
var UpdateIdMappingWorkflowOutput$ = [3, n0, _UIMWO,
|
|
1204
|
+
0,
|
|
1205
|
+
[_wN, _wA, _iSC, _iMT, _de, _oSC, _iRC, _rA],
|
|
1206
|
+
[0, 0, () => IdMappingWorkflowInputSourceConfig, () => IdMappingTechniques$, 0, () => IdMappingWorkflowOutputSourceConfig, () => IdMappingIncrementalRunConfig$, 0], 4
|
|
1207
|
+
];
|
|
1208
|
+
var UpdateIdNamespaceInput$ = [3, n0, _UINI,
|
|
1209
|
+
0,
|
|
1210
|
+
[_iNN, _de, _iSC, _iMWP, _rA],
|
|
1211
|
+
[[0, 1], 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0], 1
|
|
1212
|
+
];
|
|
1213
|
+
var UpdateIdNamespaceOutput$ = [3, n0, _UINO,
|
|
1214
|
+
0,
|
|
1215
|
+
[_iNN, _iNA, _ty, _cA, _uA, _de, _iSC, _iMWP, _rA],
|
|
1216
|
+
[0, 0, 0, 4, 4, 0, () => IdNamespaceInputSourceConfig, () => IdNamespaceIdMappingWorkflowPropertiesList, 0], 5
|
|
1217
|
+
];
|
|
1218
|
+
var UpdateMatchingWorkflowInput$ = [3, n0, _UMWI,
|
|
1219
|
+
0,
|
|
1220
|
+
[_wN, _iSC, _oSC, _rT, _rA, _de, _iRC],
|
|
1221
|
+
[[0, 1], () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques$, 0, 0, () => IncrementalRunConfig$], 5
|
|
1222
|
+
];
|
|
1223
|
+
var UpdateMatchingWorkflowOutput$ = [3, n0, _UMWO,
|
|
1224
|
+
0,
|
|
1225
|
+
[_wN, _iSC, _oSC, _rT, _rA, _de, _iRC],
|
|
1226
|
+
[0, () => InputSourceConfig, () => OutputSourceConfig, () => ResolutionTechniques$, 0, 0, () => IncrementalRunConfig$], 5
|
|
1227
|
+
];
|
|
1228
|
+
var UpdateSchemaMappingInput$ = [3, n0, _USMI,
|
|
1229
|
+
0,
|
|
1230
|
+
[_sN, _mIF, _de],
|
|
1231
|
+
[[0, 1], () => SchemaInputAttributes, 0], 2
|
|
1232
|
+
];
|
|
1233
|
+
var UpdateSchemaMappingOutput$ = [3, n0, _USMO,
|
|
1234
|
+
0,
|
|
1235
|
+
[_sN, _sA, _mIF, _de],
|
|
1236
|
+
[0, 0, () => SchemaInputAttributes, 0], 3
|
|
1237
|
+
];
|
|
1238
|
+
var DeletedUniqueIdList = [1, n0, _DUIL,
|
|
1239
|
+
0, () => DeletedUniqueId$
|
|
1240
|
+
];
|
|
1241
|
+
var DeleteUniqueIdErrorsList = [1, n0, _DUIEL,
|
|
1242
|
+
0, () => DeleteUniqueIdError$
|
|
1243
|
+
];
|
|
1244
|
+
var FailedRecordsList = [1, n0, _FRL,
|
|
1245
|
+
0, () => FailedRecord$
|
|
1246
|
+
];
|
|
1247
|
+
var IdMappingJobOutputSourceConfig = [1, n0, _IMJOSC,
|
|
1248
|
+
0, () => IdMappingJobOutputSource$
|
|
1249
|
+
];
|
|
1250
|
+
var IdMappingWorkflowInputSourceConfig = [1, n0, _IMWISC,
|
|
1251
|
+
0, () => IdMappingWorkflowInputSource$
|
|
1252
|
+
];
|
|
1253
|
+
var IdMappingWorkflowList = [1, n0, _IMWL,
|
|
1254
|
+
0, () => IdMappingWorkflowSummary$
|
|
1255
|
+
];
|
|
1256
|
+
var IdMappingWorkflowOutputSourceConfig = [1, n0, _IMWOSC,
|
|
1257
|
+
0, () => IdMappingWorkflowOutputSource$
|
|
1258
|
+
];
|
|
1259
|
+
var IdNamespaceIdMappingWorkflowMetadataList = [1, n0, _INIMWML,
|
|
1260
|
+
0, () => IdNamespaceIdMappingWorkflowMetadata$
|
|
1261
|
+
];
|
|
1262
|
+
var IdNamespaceIdMappingWorkflowPropertiesList = [1, n0, _INIMWPL,
|
|
1263
|
+
0, () => IdNamespaceIdMappingWorkflowProperties$
|
|
1264
|
+
];
|
|
1265
|
+
var IdNamespaceInputSourceConfig = [1, n0, _INISC,
|
|
1266
|
+
0, () => IdNamespaceInputSource$
|
|
1267
|
+
];
|
|
1268
|
+
var IdNamespaceList = [1, n0, _INL,
|
|
1269
|
+
0, () => IdNamespaceSummary$
|
|
1270
|
+
];
|
|
1271
|
+
var InputSourceConfig = [1, n0, _ISCn,
|
|
1272
|
+
0, () => InputSource$
|
|
1273
|
+
];
|
|
1274
|
+
var JobList = [1, n0, _JL,
|
|
1275
|
+
0, () => JobSummary$
|
|
1276
|
+
];
|
|
1277
|
+
var JobOutputSourceConfig = [1, n0, _JOSC,
|
|
1278
|
+
0, () => JobOutputSource$
|
|
1279
|
+
];
|
|
1280
|
+
var MatchedRecordsList = [1, n0, _MRL,
|
|
1281
|
+
0, () => MatchedRecord$
|
|
1282
|
+
];
|
|
1283
|
+
var MatchGroupsList = [1, n0, _MGL,
|
|
1284
|
+
0, () => MatchGroup$
|
|
1285
|
+
];
|
|
1286
|
+
var MatchingWorkflowList = [1, n0, _MWL,
|
|
1287
|
+
0, () => MatchingWorkflowSummary$
|
|
1288
|
+
];
|
|
1289
|
+
var OutputAttributes = [1, n0, _OAu,
|
|
1290
|
+
0, () => OutputAttribute$
|
|
1291
|
+
];
|
|
1292
|
+
var OutputSourceConfig = [1, n0, _OSC,
|
|
1293
|
+
0, () => OutputSource$
|
|
1294
|
+
];
|
|
1295
|
+
var ProviderSchemaAttributes = [1, n0, _PSAr,
|
|
1296
|
+
0, () => ProviderSchemaAttribute$
|
|
1297
|
+
];
|
|
1298
|
+
var ProviderServiceList = [1, n0, _PSL,
|
|
1299
|
+
0, () => ProviderServiceSummary$
|
|
1300
|
+
];
|
|
1301
|
+
var RecordList = [1, n0, _RL,
|
|
1302
|
+
0, [() => _Record$,
|
|
1303
|
+
0]
|
|
1304
|
+
];
|
|
1305
|
+
var RuleConditionList = [1, n0, _RCL,
|
|
1306
|
+
0, () => RuleCondition$
|
|
1307
|
+
];
|
|
1308
|
+
var RuleList = [1, n0, _RLu,
|
|
1309
|
+
0, () => Rule$
|
|
1310
|
+
];
|
|
1311
|
+
var SchemaInputAttributes = [1, n0, _SIAc,
|
|
1312
|
+
0, () => SchemaInputAttribute$
|
|
1313
|
+
];
|
|
1314
|
+
var SchemaMappingList = [1, n0, _SML,
|
|
1315
|
+
0, () => SchemaMappingSummary$
|
|
1316
|
+
];
|
|
1317
|
+
var RecordAttributeMap = [2, n0, _RAM,
|
|
1318
|
+
8, 0, 0
|
|
1319
|
+
];
|
|
1320
|
+
var RecordAttributeMapString255 = [2, n0, _RAMS,
|
|
1321
|
+
8, 0, 0
|
|
1322
|
+
];
|
|
1323
|
+
var ProviderEndpointConfiguration$ = [4, n0, _PEC,
|
|
1324
|
+
0,
|
|
1325
|
+
[_mCa],
|
|
1326
|
+
[() => ProviderMarketplaceConfiguration$]
|
|
1327
|
+
];
|
|
1328
|
+
var AddPolicyStatement$ = [9, n0, _APS,
|
|
1329
|
+
{ [_ht]: ["POST", "/policies/{arn}/{statementId}", 200] }, () => AddPolicyStatementInput$, () => AddPolicyStatementOutput$
|
|
1330
|
+
];
|
|
1331
|
+
var BatchDeleteUniqueId$ = [9, n0, _BDUI,
|
|
1332
|
+
{ [_ht]: ["DELETE", "/matchingworkflows/{workflowName}/uniqueids", 200] }, () => BatchDeleteUniqueIdInput$, () => BatchDeleteUniqueIdOutput$
|
|
1333
|
+
];
|
|
1334
|
+
var CreateIdMappingWorkflow$ = [9, n0, _CIMW,
|
|
1335
|
+
{ [_ht]: ["POST", "/idmappingworkflows", 200] }, () => CreateIdMappingWorkflowInput$, () => CreateIdMappingWorkflowOutput$
|
|
1336
|
+
];
|
|
1337
|
+
var CreateIdNamespace$ = [9, n0, _CIN,
|
|
1338
|
+
{ [_ht]: ["POST", "/idnamespaces", 200] }, () => CreateIdNamespaceInput$, () => CreateIdNamespaceOutput$
|
|
1339
|
+
];
|
|
1340
|
+
var CreateMatchingWorkflow$ = [9, n0, _CMW,
|
|
1341
|
+
{ [_ht]: ["POST", "/matchingworkflows", 200] }, () => CreateMatchingWorkflowInput$, () => CreateMatchingWorkflowOutput$
|
|
1342
|
+
];
|
|
1343
|
+
var CreateSchemaMapping$ = [9, n0, _CSM,
|
|
1344
|
+
{ [_ht]: ["POST", "/schemas", 200] }, () => CreateSchemaMappingInput$, () => CreateSchemaMappingOutput$
|
|
1345
|
+
];
|
|
1346
|
+
var DeleteIdMappingWorkflow$ = [9, n0, _DIMW,
|
|
1347
|
+
{ [_ht]: ["DELETE", "/idmappingworkflows/{workflowName}", 200] }, () => DeleteIdMappingWorkflowInput$, () => DeleteIdMappingWorkflowOutput$
|
|
1348
|
+
];
|
|
1349
|
+
var DeleteIdNamespace$ = [9, n0, _DIN,
|
|
1350
|
+
{ [_ht]: ["DELETE", "/idnamespaces/{idNamespaceName}", 200] }, () => DeleteIdNamespaceInput$, () => DeleteIdNamespaceOutput$
|
|
1351
|
+
];
|
|
1352
|
+
var DeleteMatchingWorkflow$ = [9, n0, _DMW,
|
|
1353
|
+
{ [_ht]: ["DELETE", "/matchingworkflows/{workflowName}", 200] }, () => DeleteMatchingWorkflowInput$, () => DeleteMatchingWorkflowOutput$
|
|
1354
|
+
];
|
|
1355
|
+
var DeletePolicyStatement$ = [9, n0, _DPS,
|
|
1356
|
+
{ [_ht]: ["DELETE", "/policies/{arn}/{statementId}", 200] }, () => DeletePolicyStatementInput$, () => DeletePolicyStatementOutput$
|
|
1357
|
+
];
|
|
1358
|
+
var DeleteSchemaMapping$ = [9, n0, _DSM,
|
|
1359
|
+
{ [_ht]: ["DELETE", "/schemas/{schemaName}", 200] }, () => DeleteSchemaMappingInput$, () => DeleteSchemaMappingOutput$
|
|
1360
|
+
];
|
|
1361
|
+
var GenerateMatchId$ = [9, n0, _GMI,
|
|
1362
|
+
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/generateMatches", 200] }, () => GenerateMatchIdInput$, () => GenerateMatchIdOutput$
|
|
1363
|
+
];
|
|
1364
|
+
var GetIdMappingJob$ = [9, n0, _GIMJ,
|
|
1365
|
+
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs/{jobId}", 200] }, () => GetIdMappingJobInput$, () => GetIdMappingJobOutput$
|
|
1366
|
+
];
|
|
1367
|
+
var GetIdMappingWorkflow$ = [9, n0, _GIMW,
|
|
1368
|
+
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}", 200] }, () => GetIdMappingWorkflowInput$, () => GetIdMappingWorkflowOutput$
|
|
1369
|
+
];
|
|
1370
|
+
var GetIdNamespace$ = [9, n0, _GIN,
|
|
1371
|
+
{ [_ht]: ["GET", "/idnamespaces/{idNamespaceName}", 200] }, () => GetIdNamespaceInput$, () => GetIdNamespaceOutput$
|
|
1372
|
+
];
|
|
1373
|
+
var GetMatchId$ = [9, n0, _GMIe,
|
|
1374
|
+
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/matches", 200] }, () => GetMatchIdInput$, () => GetMatchIdOutput$
|
|
1375
|
+
];
|
|
1376
|
+
var GetMatchingJob$ = [9, n0, _GMJ,
|
|
1377
|
+
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs/{jobId}", 200] }, () => GetMatchingJobInput$, () => GetMatchingJobOutput$
|
|
1378
|
+
];
|
|
1379
|
+
var GetMatchingWorkflow$ = [9, n0, _GMW,
|
|
1380
|
+
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}", 200] }, () => GetMatchingWorkflowInput$, () => GetMatchingWorkflowOutput$
|
|
1381
|
+
];
|
|
1382
|
+
var GetPolicy$ = [9, n0, _GP,
|
|
1383
|
+
{ [_ht]: ["GET", "/policies/{arn}", 200] }, () => GetPolicyInput$, () => GetPolicyOutput$
|
|
1384
|
+
];
|
|
1385
|
+
var GetProviderService$ = [9, n0, _GPS,
|
|
1386
|
+
{ [_ht]: ["GET", "/providerservices/{providerName}/{providerServiceName}", 200] }, () => GetProviderServiceInput$, () => GetProviderServiceOutput$
|
|
1387
|
+
];
|
|
1388
|
+
var GetSchemaMapping$ = [9, n0, _GSM,
|
|
1389
|
+
{ [_ht]: ["GET", "/schemas/{schemaName}", 200] }, () => GetSchemaMappingInput$, () => GetSchemaMappingOutput$
|
|
1390
|
+
];
|
|
1391
|
+
var ListIdMappingJobs$ = [9, n0, _LIMJ,
|
|
1392
|
+
{ [_ht]: ["GET", "/idmappingworkflows/{workflowName}/jobs", 200] }, () => ListIdMappingJobsInput$, () => ListIdMappingJobsOutput$
|
|
1393
|
+
];
|
|
1394
|
+
var ListIdMappingWorkflows$ = [9, n0, _LIMW,
|
|
1395
|
+
{ [_ht]: ["GET", "/idmappingworkflows", 200] }, () => ListIdMappingWorkflowsInput$, () => ListIdMappingWorkflowsOutput$
|
|
1396
|
+
];
|
|
1397
|
+
var ListIdNamespaces$ = [9, n0, _LIN,
|
|
1398
|
+
{ [_ht]: ["GET", "/idnamespaces", 200] }, () => ListIdNamespacesInput$, () => ListIdNamespacesOutput$
|
|
1399
|
+
];
|
|
1400
|
+
var ListMatchingJobs$ = [9, n0, _LMJ,
|
|
1401
|
+
{ [_ht]: ["GET", "/matchingworkflows/{workflowName}/jobs", 200] }, () => ListMatchingJobsInput$, () => ListMatchingJobsOutput$
|
|
1402
|
+
];
|
|
1403
|
+
var ListMatchingWorkflows$ = [9, n0, _LMW,
|
|
1404
|
+
{ [_ht]: ["GET", "/matchingworkflows", 200] }, () => ListMatchingWorkflowsInput$, () => ListMatchingWorkflowsOutput$
|
|
1405
|
+
];
|
|
1406
|
+
var ListProviderServices$ = [9, n0, _LPS,
|
|
1407
|
+
{ [_ht]: ["GET", "/providerservices", 200] }, () => ListProviderServicesInput$, () => ListProviderServicesOutput$
|
|
1408
|
+
];
|
|
1409
|
+
var ListSchemaMappings$ = [9, n0, _LSM,
|
|
1410
|
+
{ [_ht]: ["GET", "/schemas", 200] }, () => ListSchemaMappingsInput$, () => ListSchemaMappingsOutput$
|
|
1411
|
+
];
|
|
1412
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1413
|
+
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1414
|
+
];
|
|
1415
|
+
var PutPolicy$ = [9, n0, _PPu,
|
|
1416
|
+
{ [_ht]: ["PUT", "/policies/{arn}", 200] }, () => PutPolicyInput$, () => PutPolicyOutput$
|
|
1417
|
+
];
|
|
1418
|
+
var StartIdMappingJob$ = [9, n0, _SIMJ,
|
|
1419
|
+
{ [_ht]: ["POST", "/idmappingworkflows/{workflowName}/jobs", 200] }, () => StartIdMappingJobInput$, () => StartIdMappingJobOutput$
|
|
1420
|
+
];
|
|
1421
|
+
var StartMatchingJob$ = [9, n0, _SMJ,
|
|
1422
|
+
{ [_ht]: ["POST", "/matchingworkflows/{workflowName}/jobs", 200] }, () => StartMatchingJobInput$, () => StartMatchingJobOutput$
|
|
1423
|
+
];
|
|
1424
|
+
var TagResource$ = [9, n0, _TR,
|
|
1425
|
+
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
1426
|
+
];
|
|
1427
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1428
|
+
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1429
|
+
];
|
|
1430
|
+
var UpdateIdMappingWorkflow$ = [9, n0, _UIMW,
|
|
1431
|
+
{ [_ht]: ["PUT", "/idmappingworkflows/{workflowName}", 200] }, () => UpdateIdMappingWorkflowInput$, () => UpdateIdMappingWorkflowOutput$
|
|
1432
|
+
];
|
|
1433
|
+
var UpdateIdNamespace$ = [9, n0, _UIN,
|
|
1434
|
+
{ [_ht]: ["PUT", "/idnamespaces/{idNamespaceName}", 200] }, () => UpdateIdNamespaceInput$, () => UpdateIdNamespaceOutput$
|
|
1435
|
+
];
|
|
1436
|
+
var UpdateMatchingWorkflow$ = [9, n0, _UMW,
|
|
1437
|
+
{ [_ht]: ["PUT", "/matchingworkflows/{workflowName}", 200] }, () => UpdateMatchingWorkflowInput$, () => UpdateMatchingWorkflowOutput$
|
|
1438
|
+
];
|
|
1439
|
+
var UpdateSchemaMapping$ = [9, n0, _USM,
|
|
1440
|
+
{ [_ht]: ["PUT", "/schemas/{schemaName}", 200] }, () => UpdateSchemaMappingInput$, () => UpdateSchemaMappingOutput$
|
|
1441
|
+
];
|
|
1442
|
+
|
|
1443
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1444
|
+
return {
|
|
1445
|
+
apiVersion: "2018-05-10",
|
|
1446
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1447
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1448
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1449
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1450
|
+
extensions: config?.extensions ?? [],
|
|
1451
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultEntityResolutionHttpAuthSchemeProvider,
|
|
1452
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1453
|
+
{
|
|
1454
|
+
schemeId: "aws.auth#sigv4",
|
|
1455
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1456
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1457
|
+
},
|
|
1458
|
+
],
|
|
1459
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1460
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1461
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1462
|
+
defaultNamespace: "com.amazonaws.entityresolution",
|
|
1463
|
+
errorTypeRegistries,
|
|
1464
|
+
version: "2018-05-10",
|
|
1465
|
+
serviceTarget: "AWSVeniceService",
|
|
1466
|
+
},
|
|
1467
|
+
serviceId: config?.serviceId ?? "EntityResolution",
|
|
1468
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1469
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1470
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1471
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1472
|
+
};
|
|
1473
|
+
};
|
|
1474
|
+
|
|
1475
|
+
const getRuntimeConfig = (config) => {
|
|
1476
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1477
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1478
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1479
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1480
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1481
|
+
const loaderConfig = {
|
|
1482
|
+
profile: config?.profile,
|
|
1483
|
+
logger: clientSharedValues.logger,
|
|
1484
|
+
};
|
|
1485
|
+
return {
|
|
1486
|
+
...clientSharedValues,
|
|
1487
|
+
...config,
|
|
1488
|
+
runtime: "node",
|
|
1489
|
+
defaultsMode,
|
|
1490
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1491
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1492
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1493
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1494
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1495
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1496
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1497
|
+
retryMode: config?.retryMode ??
|
|
1498
|
+
loadConfig({
|
|
1499
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1500
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1501
|
+
}, config),
|
|
1502
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1503
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1504
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1505
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1506
|
+
};
|
|
1507
|
+
};
|
|
1508
|
+
|
|
34
1509
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1510
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1511
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -727,63 +2202,241 @@ const ServiceType = {
|
|
|
727
2202
|
ID_MAPPING: "ID_MAPPING",
|
|
728
2203
|
};
|
|
729
2204
|
|
|
2205
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2206
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2207
|
+
exports.AddPolicyStatement$ = AddPolicyStatement$;
|
|
730
2208
|
exports.AddPolicyStatementCommand = AddPolicyStatementCommand;
|
|
2209
|
+
exports.AddPolicyStatementInput$ = AddPolicyStatementInput$;
|
|
2210
|
+
exports.AddPolicyStatementOutput$ = AddPolicyStatementOutput$;
|
|
731
2211
|
exports.AttributeMatchingModel = AttributeMatchingModel;
|
|
2212
|
+
exports.BatchDeleteUniqueId$ = BatchDeleteUniqueId$;
|
|
732
2213
|
exports.BatchDeleteUniqueIdCommand = BatchDeleteUniqueIdCommand;
|
|
2214
|
+
exports.BatchDeleteUniqueIdInput$ = BatchDeleteUniqueIdInput$;
|
|
2215
|
+
exports.BatchDeleteUniqueIdOutput$ = BatchDeleteUniqueIdOutput$;
|
|
2216
|
+
exports.ConflictException = ConflictException;
|
|
2217
|
+
exports.ConflictException$ = ConflictException$;
|
|
2218
|
+
exports.CreateIdMappingWorkflow$ = CreateIdMappingWorkflow$;
|
|
733
2219
|
exports.CreateIdMappingWorkflowCommand = CreateIdMappingWorkflowCommand;
|
|
2220
|
+
exports.CreateIdMappingWorkflowInput$ = CreateIdMappingWorkflowInput$;
|
|
2221
|
+
exports.CreateIdMappingWorkflowOutput$ = CreateIdMappingWorkflowOutput$;
|
|
2222
|
+
exports.CreateIdNamespace$ = CreateIdNamespace$;
|
|
734
2223
|
exports.CreateIdNamespaceCommand = CreateIdNamespaceCommand;
|
|
2224
|
+
exports.CreateIdNamespaceInput$ = CreateIdNamespaceInput$;
|
|
2225
|
+
exports.CreateIdNamespaceOutput$ = CreateIdNamespaceOutput$;
|
|
2226
|
+
exports.CreateMatchingWorkflow$ = CreateMatchingWorkflow$;
|
|
735
2227
|
exports.CreateMatchingWorkflowCommand = CreateMatchingWorkflowCommand;
|
|
2228
|
+
exports.CreateMatchingWorkflowInput$ = CreateMatchingWorkflowInput$;
|
|
2229
|
+
exports.CreateMatchingWorkflowOutput$ = CreateMatchingWorkflowOutput$;
|
|
2230
|
+
exports.CreateSchemaMapping$ = CreateSchemaMapping$;
|
|
736
2231
|
exports.CreateSchemaMappingCommand = CreateSchemaMappingCommand;
|
|
2232
|
+
exports.CreateSchemaMappingInput$ = CreateSchemaMappingInput$;
|
|
2233
|
+
exports.CreateSchemaMappingOutput$ = CreateSchemaMappingOutput$;
|
|
2234
|
+
exports.CustomerProfilesIntegrationConfig$ = CustomerProfilesIntegrationConfig$;
|
|
2235
|
+
exports.DeleteIdMappingWorkflow$ = DeleteIdMappingWorkflow$;
|
|
737
2236
|
exports.DeleteIdMappingWorkflowCommand = DeleteIdMappingWorkflowCommand;
|
|
2237
|
+
exports.DeleteIdMappingWorkflowInput$ = DeleteIdMappingWorkflowInput$;
|
|
2238
|
+
exports.DeleteIdMappingWorkflowOutput$ = DeleteIdMappingWorkflowOutput$;
|
|
2239
|
+
exports.DeleteIdNamespace$ = DeleteIdNamespace$;
|
|
738
2240
|
exports.DeleteIdNamespaceCommand = DeleteIdNamespaceCommand;
|
|
2241
|
+
exports.DeleteIdNamespaceInput$ = DeleteIdNamespaceInput$;
|
|
2242
|
+
exports.DeleteIdNamespaceOutput$ = DeleteIdNamespaceOutput$;
|
|
2243
|
+
exports.DeleteMatchingWorkflow$ = DeleteMatchingWorkflow$;
|
|
739
2244
|
exports.DeleteMatchingWorkflowCommand = DeleteMatchingWorkflowCommand;
|
|
2245
|
+
exports.DeleteMatchingWorkflowInput$ = DeleteMatchingWorkflowInput$;
|
|
2246
|
+
exports.DeleteMatchingWorkflowOutput$ = DeleteMatchingWorkflowOutput$;
|
|
2247
|
+
exports.DeletePolicyStatement$ = DeletePolicyStatement$;
|
|
740
2248
|
exports.DeletePolicyStatementCommand = DeletePolicyStatementCommand;
|
|
2249
|
+
exports.DeletePolicyStatementInput$ = DeletePolicyStatementInput$;
|
|
2250
|
+
exports.DeletePolicyStatementOutput$ = DeletePolicyStatementOutput$;
|
|
2251
|
+
exports.DeleteSchemaMapping$ = DeleteSchemaMapping$;
|
|
741
2252
|
exports.DeleteSchemaMappingCommand = DeleteSchemaMappingCommand;
|
|
2253
|
+
exports.DeleteSchemaMappingInput$ = DeleteSchemaMappingInput$;
|
|
2254
|
+
exports.DeleteSchemaMappingOutput$ = DeleteSchemaMappingOutput$;
|
|
2255
|
+
exports.DeleteUniqueIdError$ = DeleteUniqueIdError$;
|
|
742
2256
|
exports.DeleteUniqueIdErrorType = DeleteUniqueIdErrorType;
|
|
743
2257
|
exports.DeleteUniqueIdStatus = DeleteUniqueIdStatus;
|
|
2258
|
+
exports.DeletedUniqueId$ = DeletedUniqueId$;
|
|
744
2259
|
exports.EntityResolution = EntityResolution;
|
|
745
2260
|
exports.EntityResolutionClient = EntityResolutionClient;
|
|
2261
|
+
exports.EntityResolutionServiceException = EntityResolutionServiceException;
|
|
2262
|
+
exports.EntityResolutionServiceException$ = EntityResolutionServiceException$;
|
|
2263
|
+
exports.ErrorDetails$ = ErrorDetails$;
|
|
2264
|
+
exports.ExceedsLimitException = ExceedsLimitException;
|
|
2265
|
+
exports.ExceedsLimitException$ = ExceedsLimitException$;
|
|
2266
|
+
exports.FailedRecord$ = FailedRecord$;
|
|
2267
|
+
exports.GenerateMatchId$ = GenerateMatchId$;
|
|
746
2268
|
exports.GenerateMatchIdCommand = GenerateMatchIdCommand;
|
|
2269
|
+
exports.GenerateMatchIdInput$ = GenerateMatchIdInput$;
|
|
2270
|
+
exports.GenerateMatchIdOutput$ = GenerateMatchIdOutput$;
|
|
2271
|
+
exports.GetIdMappingJob$ = GetIdMappingJob$;
|
|
747
2272
|
exports.GetIdMappingJobCommand = GetIdMappingJobCommand;
|
|
2273
|
+
exports.GetIdMappingJobInput$ = GetIdMappingJobInput$;
|
|
2274
|
+
exports.GetIdMappingJobOutput$ = GetIdMappingJobOutput$;
|
|
2275
|
+
exports.GetIdMappingWorkflow$ = GetIdMappingWorkflow$;
|
|
748
2276
|
exports.GetIdMappingWorkflowCommand = GetIdMappingWorkflowCommand;
|
|
2277
|
+
exports.GetIdMappingWorkflowInput$ = GetIdMappingWorkflowInput$;
|
|
2278
|
+
exports.GetIdMappingWorkflowOutput$ = GetIdMappingWorkflowOutput$;
|
|
2279
|
+
exports.GetIdNamespace$ = GetIdNamespace$;
|
|
749
2280
|
exports.GetIdNamespaceCommand = GetIdNamespaceCommand;
|
|
2281
|
+
exports.GetIdNamespaceInput$ = GetIdNamespaceInput$;
|
|
2282
|
+
exports.GetIdNamespaceOutput$ = GetIdNamespaceOutput$;
|
|
2283
|
+
exports.GetMatchId$ = GetMatchId$;
|
|
750
2284
|
exports.GetMatchIdCommand = GetMatchIdCommand;
|
|
2285
|
+
exports.GetMatchIdInput$ = GetMatchIdInput$;
|
|
2286
|
+
exports.GetMatchIdOutput$ = GetMatchIdOutput$;
|
|
2287
|
+
exports.GetMatchingJob$ = GetMatchingJob$;
|
|
751
2288
|
exports.GetMatchingJobCommand = GetMatchingJobCommand;
|
|
2289
|
+
exports.GetMatchingJobInput$ = GetMatchingJobInput$;
|
|
2290
|
+
exports.GetMatchingJobOutput$ = GetMatchingJobOutput$;
|
|
2291
|
+
exports.GetMatchingWorkflow$ = GetMatchingWorkflow$;
|
|
752
2292
|
exports.GetMatchingWorkflowCommand = GetMatchingWorkflowCommand;
|
|
2293
|
+
exports.GetMatchingWorkflowInput$ = GetMatchingWorkflowInput$;
|
|
2294
|
+
exports.GetMatchingWorkflowOutput$ = GetMatchingWorkflowOutput$;
|
|
2295
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
753
2296
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
2297
|
+
exports.GetPolicyInput$ = GetPolicyInput$;
|
|
2298
|
+
exports.GetPolicyOutput$ = GetPolicyOutput$;
|
|
2299
|
+
exports.GetProviderService$ = GetProviderService$;
|
|
754
2300
|
exports.GetProviderServiceCommand = GetProviderServiceCommand;
|
|
2301
|
+
exports.GetProviderServiceInput$ = GetProviderServiceInput$;
|
|
2302
|
+
exports.GetProviderServiceOutput$ = GetProviderServiceOutput$;
|
|
2303
|
+
exports.GetSchemaMapping$ = GetSchemaMapping$;
|
|
755
2304
|
exports.GetSchemaMappingCommand = GetSchemaMappingCommand;
|
|
2305
|
+
exports.GetSchemaMappingInput$ = GetSchemaMappingInput$;
|
|
2306
|
+
exports.GetSchemaMappingOutput$ = GetSchemaMappingOutput$;
|
|
2307
|
+
exports.IdMappingIncrementalRunConfig$ = IdMappingIncrementalRunConfig$;
|
|
756
2308
|
exports.IdMappingIncrementalRunType = IdMappingIncrementalRunType;
|
|
2309
|
+
exports.IdMappingJobMetrics$ = IdMappingJobMetrics$;
|
|
2310
|
+
exports.IdMappingJobOutputSource$ = IdMappingJobOutputSource$;
|
|
2311
|
+
exports.IdMappingRuleBasedProperties$ = IdMappingRuleBasedProperties$;
|
|
2312
|
+
exports.IdMappingTechniques$ = IdMappingTechniques$;
|
|
757
2313
|
exports.IdMappingType = IdMappingType;
|
|
2314
|
+
exports.IdMappingWorkflowInputSource$ = IdMappingWorkflowInputSource$;
|
|
2315
|
+
exports.IdMappingWorkflowOutputSource$ = IdMappingWorkflowOutputSource$;
|
|
758
2316
|
exports.IdMappingWorkflowRuleDefinitionType = IdMappingWorkflowRuleDefinitionType;
|
|
2317
|
+
exports.IdMappingWorkflowSummary$ = IdMappingWorkflowSummary$;
|
|
2318
|
+
exports.IdNamespaceIdMappingWorkflowMetadata$ = IdNamespaceIdMappingWorkflowMetadata$;
|
|
2319
|
+
exports.IdNamespaceIdMappingWorkflowProperties$ = IdNamespaceIdMappingWorkflowProperties$;
|
|
2320
|
+
exports.IdNamespaceInputSource$ = IdNamespaceInputSource$;
|
|
2321
|
+
exports.IdNamespaceSummary$ = IdNamespaceSummary$;
|
|
759
2322
|
exports.IdNamespaceType = IdNamespaceType;
|
|
2323
|
+
exports.IncrementalRunConfig$ = IncrementalRunConfig$;
|
|
760
2324
|
exports.IncrementalRunType = IncrementalRunType;
|
|
2325
|
+
exports.InputSource$ = InputSource$;
|
|
2326
|
+
exports.IntermediateSourceConfiguration$ = IntermediateSourceConfiguration$;
|
|
2327
|
+
exports.InternalServerException = InternalServerException;
|
|
2328
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2329
|
+
exports.JobMetrics$ = JobMetrics$;
|
|
2330
|
+
exports.JobOutputSource$ = JobOutputSource$;
|
|
761
2331
|
exports.JobStatus = JobStatus;
|
|
2332
|
+
exports.JobSummary$ = JobSummary$;
|
|
762
2333
|
exports.JobType = JobType;
|
|
2334
|
+
exports.ListIdMappingJobs$ = ListIdMappingJobs$;
|
|
763
2335
|
exports.ListIdMappingJobsCommand = ListIdMappingJobsCommand;
|
|
2336
|
+
exports.ListIdMappingJobsInput$ = ListIdMappingJobsInput$;
|
|
2337
|
+
exports.ListIdMappingJobsOutput$ = ListIdMappingJobsOutput$;
|
|
2338
|
+
exports.ListIdMappingWorkflows$ = ListIdMappingWorkflows$;
|
|
764
2339
|
exports.ListIdMappingWorkflowsCommand = ListIdMappingWorkflowsCommand;
|
|
2340
|
+
exports.ListIdMappingWorkflowsInput$ = ListIdMappingWorkflowsInput$;
|
|
2341
|
+
exports.ListIdMappingWorkflowsOutput$ = ListIdMappingWorkflowsOutput$;
|
|
2342
|
+
exports.ListIdNamespaces$ = ListIdNamespaces$;
|
|
765
2343
|
exports.ListIdNamespacesCommand = ListIdNamespacesCommand;
|
|
2344
|
+
exports.ListIdNamespacesInput$ = ListIdNamespacesInput$;
|
|
2345
|
+
exports.ListIdNamespacesOutput$ = ListIdNamespacesOutput$;
|
|
2346
|
+
exports.ListMatchingJobs$ = ListMatchingJobs$;
|
|
766
2347
|
exports.ListMatchingJobsCommand = ListMatchingJobsCommand;
|
|
2348
|
+
exports.ListMatchingJobsInput$ = ListMatchingJobsInput$;
|
|
2349
|
+
exports.ListMatchingJobsOutput$ = ListMatchingJobsOutput$;
|
|
2350
|
+
exports.ListMatchingWorkflows$ = ListMatchingWorkflows$;
|
|
767
2351
|
exports.ListMatchingWorkflowsCommand = ListMatchingWorkflowsCommand;
|
|
2352
|
+
exports.ListMatchingWorkflowsInput$ = ListMatchingWorkflowsInput$;
|
|
2353
|
+
exports.ListMatchingWorkflowsOutput$ = ListMatchingWorkflowsOutput$;
|
|
2354
|
+
exports.ListProviderServices$ = ListProviderServices$;
|
|
768
2355
|
exports.ListProviderServicesCommand = ListProviderServicesCommand;
|
|
2356
|
+
exports.ListProviderServicesInput$ = ListProviderServicesInput$;
|
|
2357
|
+
exports.ListProviderServicesOutput$ = ListProviderServicesOutput$;
|
|
2358
|
+
exports.ListSchemaMappings$ = ListSchemaMappings$;
|
|
769
2359
|
exports.ListSchemaMappingsCommand = ListSchemaMappingsCommand;
|
|
2360
|
+
exports.ListSchemaMappingsInput$ = ListSchemaMappingsInput$;
|
|
2361
|
+
exports.ListSchemaMappingsOutput$ = ListSchemaMappingsOutput$;
|
|
2362
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
770
2363
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2364
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2365
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2366
|
+
exports.MatchGroup$ = MatchGroup$;
|
|
771
2367
|
exports.MatchPurpose = MatchPurpose;
|
|
2368
|
+
exports.MatchedRecord$ = MatchedRecord$;
|
|
2369
|
+
exports.MatchingConfig$ = MatchingConfig$;
|
|
2370
|
+
exports.MatchingWorkflowSummary$ = MatchingWorkflowSummary$;
|
|
2371
|
+
exports.NamespaceProviderProperties$ = NamespaceProviderProperties$;
|
|
2372
|
+
exports.NamespaceRuleBasedProperties$ = NamespaceRuleBasedProperties$;
|
|
2373
|
+
exports.OutputAttribute$ = OutputAttribute$;
|
|
2374
|
+
exports.OutputSource$ = OutputSource$;
|
|
772
2375
|
exports.ProcessingType = ProcessingType;
|
|
2376
|
+
exports.ProviderComponentSchema$ = ProviderComponentSchema$;
|
|
2377
|
+
exports.ProviderEndpointConfiguration$ = ProviderEndpointConfiguration$;
|
|
2378
|
+
exports.ProviderIdNameSpaceConfiguration$ = ProviderIdNameSpaceConfiguration$;
|
|
2379
|
+
exports.ProviderIntermediateDataAccessConfiguration$ = ProviderIntermediateDataAccessConfiguration$;
|
|
2380
|
+
exports.ProviderMarketplaceConfiguration$ = ProviderMarketplaceConfiguration$;
|
|
2381
|
+
exports.ProviderProperties$ = ProviderProperties$;
|
|
2382
|
+
exports.ProviderSchemaAttribute$ = ProviderSchemaAttribute$;
|
|
2383
|
+
exports.ProviderServiceSummary$ = ProviderServiceSummary$;
|
|
2384
|
+
exports.PutPolicy$ = PutPolicy$;
|
|
773
2385
|
exports.PutPolicyCommand = PutPolicyCommand;
|
|
2386
|
+
exports.PutPolicyInput$ = PutPolicyInput$;
|
|
2387
|
+
exports.PutPolicyOutput$ = PutPolicyOutput$;
|
|
774
2388
|
exports.RecordMatchingModel = RecordMatchingModel;
|
|
2389
|
+
exports.ResolutionTechniques$ = ResolutionTechniques$;
|
|
775
2390
|
exports.ResolutionType = ResolutionType;
|
|
2391
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2392
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2393
|
+
exports.Rule$ = Rule$;
|
|
2394
|
+
exports.RuleBasedProperties$ = RuleBasedProperties$;
|
|
2395
|
+
exports.RuleCondition$ = RuleCondition$;
|
|
2396
|
+
exports.RuleConditionProperties$ = RuleConditionProperties$;
|
|
776
2397
|
exports.SchemaAttributeType = SchemaAttributeType;
|
|
2398
|
+
exports.SchemaInputAttribute$ = SchemaInputAttribute$;
|
|
2399
|
+
exports.SchemaMappingSummary$ = SchemaMappingSummary$;
|
|
777
2400
|
exports.ServiceType = ServiceType;
|
|
2401
|
+
exports.StartIdMappingJob$ = StartIdMappingJob$;
|
|
778
2402
|
exports.StartIdMappingJobCommand = StartIdMappingJobCommand;
|
|
2403
|
+
exports.StartIdMappingJobInput$ = StartIdMappingJobInput$;
|
|
2404
|
+
exports.StartIdMappingJobOutput$ = StartIdMappingJobOutput$;
|
|
2405
|
+
exports.StartMatchingJob$ = StartMatchingJob$;
|
|
779
2406
|
exports.StartMatchingJobCommand = StartMatchingJobCommand;
|
|
2407
|
+
exports.StartMatchingJobInput$ = StartMatchingJobInput$;
|
|
2408
|
+
exports.StartMatchingJobOutput$ = StartMatchingJobOutput$;
|
|
780
2409
|
exports.StatementEffect = StatementEffect;
|
|
2410
|
+
exports.TagResource$ = TagResource$;
|
|
781
2411
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2412
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2413
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2414
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2415
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2416
|
+
exports.UntagResource$ = UntagResource$;
|
|
782
2417
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2418
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2419
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2420
|
+
exports.UpdateIdMappingWorkflow$ = UpdateIdMappingWorkflow$;
|
|
783
2421
|
exports.UpdateIdMappingWorkflowCommand = UpdateIdMappingWorkflowCommand;
|
|
2422
|
+
exports.UpdateIdMappingWorkflowInput$ = UpdateIdMappingWorkflowInput$;
|
|
2423
|
+
exports.UpdateIdMappingWorkflowOutput$ = UpdateIdMappingWorkflowOutput$;
|
|
2424
|
+
exports.UpdateIdNamespace$ = UpdateIdNamespace$;
|
|
784
2425
|
exports.UpdateIdNamespaceCommand = UpdateIdNamespaceCommand;
|
|
2426
|
+
exports.UpdateIdNamespaceInput$ = UpdateIdNamespaceInput$;
|
|
2427
|
+
exports.UpdateIdNamespaceOutput$ = UpdateIdNamespaceOutput$;
|
|
2428
|
+
exports.UpdateMatchingWorkflow$ = UpdateMatchingWorkflow$;
|
|
785
2429
|
exports.UpdateMatchingWorkflowCommand = UpdateMatchingWorkflowCommand;
|
|
2430
|
+
exports.UpdateMatchingWorkflowInput$ = UpdateMatchingWorkflowInput$;
|
|
2431
|
+
exports.UpdateMatchingWorkflowOutput$ = UpdateMatchingWorkflowOutput$;
|
|
2432
|
+
exports.UpdateSchemaMapping$ = UpdateSchemaMapping$;
|
|
786
2433
|
exports.UpdateSchemaMappingCommand = UpdateSchemaMappingCommand;
|
|
2434
|
+
exports.UpdateSchemaMappingInput$ = UpdateSchemaMappingInput$;
|
|
2435
|
+
exports.UpdateSchemaMappingOutput$ = UpdateSchemaMappingOutput$;
|
|
2436
|
+
exports.ValidationException = ValidationException;
|
|
2437
|
+
exports.ValidationException$ = ValidationException$;
|
|
2438
|
+
exports._Record$ = _Record$;
|
|
2439
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
787
2440
|
exports.paginateListIdMappingJobs = paginateListIdMappingJobs;
|
|
788
2441
|
exports.paginateListIdMappingWorkflows = paginateListIdMappingWorkflows;
|
|
789
2442
|
exports.paginateListIdNamespaces = paginateListIdNamespaces;
|