@aws-sdk/client-entityresolution 3.428.0 → 3.429.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/README.md +104 -17
  2. package/dist-cjs/EntityResolution.js +22 -0
  3. package/dist-cjs/commands/CreateIdMappingWorkflowCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIdMappingWorkflowCommand.js +51 -0
  5. package/dist-cjs/commands/GetIdMappingJobCommand.js +51 -0
  6. package/dist-cjs/commands/GetIdMappingWorkflowCommand.js +51 -0
  7. package/dist-cjs/commands/GetProviderServiceCommand.js +51 -0
  8. package/dist-cjs/commands/ListIdMappingJobsCommand.js +51 -0
  9. package/dist-cjs/commands/ListIdMappingWorkflowsCommand.js +51 -0
  10. package/dist-cjs/commands/ListProviderServicesCommand.js +51 -0
  11. package/dist-cjs/commands/StartIdMappingJobCommand.js +51 -0
  12. package/dist-cjs/commands/UpdateIdMappingWorkflowCommand.js +51 -0
  13. package/dist-cjs/commands/UpdateSchemaMappingCommand.js +51 -0
  14. package/dist-cjs/commands/index.js +11 -0
  15. package/dist-cjs/endpoint/ruleset.js +3 -3
  16. package/dist-cjs/models/models_0.js +29 -12
  17. package/dist-cjs/pagination/ListIdMappingJobsPaginator.js +29 -0
  18. package/dist-cjs/pagination/ListIdMappingWorkflowsPaginator.js +29 -0
  19. package/dist-cjs/pagination/ListProviderServicesPaginator.js +29 -0
  20. package/dist-cjs/pagination/index.js +3 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +917 -71
  22. package/dist-es/EntityResolution.js +22 -0
  23. package/dist-es/commands/CreateIdMappingWorkflowCommand.js +47 -0
  24. package/dist-es/commands/DeleteIdMappingWorkflowCommand.js +47 -0
  25. package/dist-es/commands/GetIdMappingJobCommand.js +47 -0
  26. package/dist-es/commands/GetIdMappingWorkflowCommand.js +47 -0
  27. package/dist-es/commands/GetProviderServiceCommand.js +47 -0
  28. package/dist-es/commands/ListIdMappingJobsCommand.js +47 -0
  29. package/dist-es/commands/ListIdMappingWorkflowsCommand.js +47 -0
  30. package/dist-es/commands/ListProviderServicesCommand.js +47 -0
  31. package/dist-es/commands/StartIdMappingJobCommand.js +47 -0
  32. package/dist-es/commands/UpdateIdMappingWorkflowCommand.js +47 -0
  33. package/dist-es/commands/UpdateSchemaMappingCommand.js +47 -0
  34. package/dist-es/commands/index.js +11 -0
  35. package/dist-es/endpoint/ruleset.js +3 -3
  36. package/dist-es/models/models_0.js +28 -11
  37. package/dist-es/pagination/ListIdMappingJobsPaginator.js +25 -0
  38. package/dist-es/pagination/ListIdMappingWorkflowsPaginator.js +25 -0
  39. package/dist-es/pagination/ListProviderServicesPaginator.js +25 -0
  40. package/dist-es/pagination/index.js +3 -0
  41. package/dist-es/protocols/Aws_restJson1.js +908 -85
  42. package/dist-types/EntityResolution.d.ts +86 -10
  43. package/dist-types/EntityResolutionClient.d.ts +22 -12
  44. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +160 -0
  45. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +34 -13
  46. package/dist-types/commands/CreateSchemaMappingCommand.d.ts +18 -10
  47. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +94 -0
  48. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +10 -6
  49. package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +15 -9
  50. package/dist-types/commands/GetIdMappingJobCommand.d.ts +110 -0
  51. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +127 -0
  52. package/dist-types/commands/GetMatchIdCommand.d.ts +10 -5
  53. package/dist-types/commands/GetMatchingJobCommand.d.ts +10 -5
  54. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +16 -5
  55. package/dist-types/commands/GetProviderServiceCommand.d.ts +121 -0
  56. package/dist-types/commands/GetSchemaMappingCommand.d.ts +11 -5
  57. package/dist-types/commands/ListIdMappingJobsCommand.d.ts +107 -0
  58. package/dist-types/commands/ListIdMappingWorkflowsCommand.d.ts +103 -0
  59. package/dist-types/commands/ListMatchingJobsCommand.d.ts +8 -4
  60. package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +11 -5
  61. package/dist-types/commands/ListProviderServicesCommand.d.ts +105 -0
  62. package/dist-types/commands/ListSchemaMappingsCommand.d.ts +11 -5
  63. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -5
  64. package/dist-types/commands/StartIdMappingJobCommand.d.ts +110 -0
  65. package/dist-types/commands/StartMatchingJobCommand.d.ts +16 -10
  66. package/dist-types/commands/TagResourceCommand.d.ts +11 -9
  67. package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
  68. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +149 -0
  69. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +27 -9
  70. package/dist-types/commands/UpdateSchemaMappingCommand.d.ts +128 -0
  71. package/dist-types/commands/index.d.ts +11 -0
  72. package/dist-types/index.d.ts +9 -10
  73. package/dist-types/models/models_0.d.ts +1128 -234
  74. package/dist-types/pagination/ListIdMappingJobsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListIdMappingWorkflowsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListProviderServicesPaginator.d.ts +7 -0
  77. package/dist-types/pagination/index.d.ts +3 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
  79. package/dist-types/ts3.4/EntityResolution.d.ts +187 -0
  80. package/dist-types/ts3.4/EntityResolutionClient.d.ts +68 -2
  81. package/dist-types/ts3.4/commands/CreateIdMappingWorkflowCommand.d.ts +42 -0
  82. package/dist-types/ts3.4/commands/DeleteIdMappingWorkflowCommand.d.ts +42 -0
  83. package/dist-types/ts3.4/commands/GetIdMappingJobCommand.d.ts +38 -0
  84. package/dist-types/ts3.4/commands/GetIdMappingWorkflowCommand.d.ts +42 -0
  85. package/dist-types/ts3.4/commands/GetProviderServiceCommand.d.ts +39 -0
  86. package/dist-types/ts3.4/commands/ListIdMappingJobsCommand.d.ts +38 -0
  87. package/dist-types/ts3.4/commands/ListIdMappingWorkflowsCommand.d.ts +42 -0
  88. package/dist-types/ts3.4/commands/ListProviderServicesCommand.d.ts +42 -0
  89. package/dist-types/ts3.4/commands/StartIdMappingJobCommand.d.ts +38 -0
  90. package/dist-types/ts3.4/commands/UpdateIdMappingWorkflowCommand.d.ts +42 -0
  91. package/dist-types/ts3.4/commands/UpdateSchemaMappingCommand.d.ts +39 -0
  92. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  93. package/dist-types/ts3.4/models/models_0.d.ts +268 -55
  94. package/dist-types/ts3.4/pagination/ListIdMappingJobsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/ListIdMappingWorkflowsPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/ListProviderServicesPaginator.d.ts +11 -0
  97. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  98. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
  99. package/package.json +5 -5
package/README.md CHANGED
@@ -7,17 +7,16 @@
7
7
  AWS SDK for JavaScript EntityResolution Client for Node.js, Browser and React Native.
8
8
 
9
9
  <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
10
- <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
11
- that enable developers and analysts at advertising and marketing companies to build an accurate and
12
- complete view of their consumers.</p>
13
- <p>
14
- With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
15
- and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
16
- Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
17
- with a source record from a marketing system containing campaign information.</p>
10
+ <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity
11
+ resolution capabilities that enable developers and analysts at advertising and marketing
12
+ companies to build an accurate and complete view of their consumers.</p>
13
+ <p> With Entity Resolution, you can match source records containing consumer identifiers,
14
+ such as name, email address, and phone number. This is true even when these records have
15
+ incomplete or conflicting identifiers. For example, Entity Resolution can effectively match
16
+ a source record from a customer relationship management (CRM) system with a source record
17
+ from a marketing system containing campaign information.</p>
18
18
  <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
19
- <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
20
- User Guide</a>.</p>
19
+ <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution User Guide</a>.</p>
21
20
 
22
21
  ## Installing
23
22
 
@@ -34,16 +33,16 @@ using your favorite package manager:
34
33
 
35
34
  The AWS SDK is modulized by clients and commands.
36
35
  To send a request, you only need to import the `EntityResolutionClient` and
37
- the commands you need, for example `ListMatchingJobsCommand`:
36
+ the commands you need, for example `ListIdMappingJobsCommand`:
38
37
 
39
38
  ```js
40
39
  // ES5 example
41
- const { EntityResolutionClient, ListMatchingJobsCommand } = require("@aws-sdk/client-entityresolution");
40
+ const { EntityResolutionClient, ListIdMappingJobsCommand } = require("@aws-sdk/client-entityresolution");
42
41
  ```
43
42
 
44
43
  ```ts
45
44
  // ES6+ example
46
- import { EntityResolutionClient, ListMatchingJobsCommand } from "@aws-sdk/client-entityresolution";
45
+ import { EntityResolutionClient, ListIdMappingJobsCommand } from "@aws-sdk/client-entityresolution";
47
46
  ```
48
47
 
49
48
  ### Usage
@@ -62,7 +61,7 @@ const client = new EntityResolutionClient({ region: "REGION" });
62
61
  const params = {
63
62
  /** input parameters */
64
63
  };
65
- const command = new ListMatchingJobsCommand(params);
64
+ const command = new ListIdMappingJobsCommand(params);
66
65
  ```
67
66
 
68
67
  #### Async/await
@@ -141,7 +140,7 @@ const client = new AWS.EntityResolution({ region: "REGION" });
141
140
 
142
141
  // async/await.
143
142
  try {
144
- const data = await client.listMatchingJobs(params);
143
+ const data = await client.listIdMappingJobs(params);
145
144
  // process data.
146
145
  } catch (error) {
147
146
  // error handling.
@@ -149,7 +148,7 @@ try {
149
148
 
150
149
  // Promises.
151
150
  client
152
- .listMatchingJobs(params)
151
+ .listIdMappingJobs(params)
153
152
  .then((data) => {
154
153
  // process data.
155
154
  })
@@ -158,7 +157,7 @@ client
158
157
  });
159
158
 
160
159
  // callbacks.
161
- client.listMatchingJobs(params, (err, data) => {
160
+ client.listIdMappingJobs(params, (err, data) => {
162
161
  // process err and data.
163
162
  });
164
163
  ```
@@ -214,6 +213,14 @@ see LICENSE for more information.
214
213
 
215
214
  ## Client Commands (Operations List)
216
215
 
216
+ <details>
217
+ <summary>
218
+ CreateIdMappingWorkflow
219
+ </summary>
220
+
221
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/createidmappingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/createidmappingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/createidmappingworkflowcommandoutput.html)
222
+
223
+ </details>
217
224
  <details>
218
225
  <summary>
219
226
  CreateMatchingWorkflow
@@ -229,6 +236,14 @@ CreateSchemaMapping
229
236
 
230
237
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/createschemamappingcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/createschemamappingcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/createschemamappingcommandoutput.html)
231
238
 
239
+ </details>
240
+ <details>
241
+ <summary>
242
+ DeleteIdMappingWorkflow
243
+ </summary>
244
+
245
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/deleteidmappingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/deleteidmappingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/deleteidmappingworkflowcommandoutput.html)
246
+
232
247
  </details>
233
248
  <details>
234
249
  <summary>
@@ -245,6 +260,22 @@ DeleteSchemaMapping
245
260
 
246
261
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/deleteschemamappingcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/deleteschemamappingcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/deleteschemamappingcommandoutput.html)
247
262
 
263
+ </details>
264
+ <details>
265
+ <summary>
266
+ GetIdMappingJob
267
+ </summary>
268
+
269
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/getidmappingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getidmappingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getidmappingjobcommandoutput.html)
270
+
271
+ </details>
272
+ <details>
273
+ <summary>
274
+ GetIdMappingWorkflow
275
+ </summary>
276
+
277
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/getidmappingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getidmappingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getidmappingworkflowcommandoutput.html)
278
+
248
279
  </details>
249
280
  <details>
250
281
  <summary>
@@ -269,6 +300,14 @@ GetMatchingWorkflow
269
300
 
270
301
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/getmatchingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getmatchingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getmatchingworkflowcommandoutput.html)
271
302
 
303
+ </details>
304
+ <details>
305
+ <summary>
306
+ GetProviderService
307
+ </summary>
308
+
309
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/getproviderservicecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getproviderservicecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getproviderservicecommandoutput.html)
310
+
272
311
  </details>
273
312
  <details>
274
313
  <summary>
@@ -277,6 +316,22 @@ GetSchemaMapping
277
316
 
278
317
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/getschemamappingcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getschemamappingcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/getschemamappingcommandoutput.html)
279
318
 
319
+ </details>
320
+ <details>
321
+ <summary>
322
+ ListIdMappingJobs
323
+ </summary>
324
+
325
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/listidmappingjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listidmappingjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listidmappingjobscommandoutput.html)
326
+
327
+ </details>
328
+ <details>
329
+ <summary>
330
+ ListIdMappingWorkflows
331
+ </summary>
332
+
333
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/listidmappingworkflowscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listidmappingworkflowscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listidmappingworkflowscommandoutput.html)
334
+
280
335
  </details>
281
336
  <details>
282
337
  <summary>
@@ -293,6 +348,14 @@ ListMatchingWorkflows
293
348
 
294
349
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/listmatchingworkflowscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listmatchingworkflowscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listmatchingworkflowscommandoutput.html)
295
350
 
351
+ </details>
352
+ <details>
353
+ <summary>
354
+ ListProviderServices
355
+ </summary>
356
+
357
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/listproviderservicescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listproviderservicescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listproviderservicescommandoutput.html)
358
+
296
359
  </details>
297
360
  <details>
298
361
  <summary>
@@ -309,6 +372,14 @@ ListTagsForResource
309
372
 
310
373
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/listtagsforresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listtagsforresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/listtagsforresourcecommandoutput.html)
311
374
 
375
+ </details>
376
+ <details>
377
+ <summary>
378
+ StartIdMappingJob
379
+ </summary>
380
+
381
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/startidmappingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/startidmappingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/startidmappingjobcommandoutput.html)
382
+
312
383
  </details>
313
384
  <details>
314
385
  <summary>
@@ -333,6 +404,14 @@ UntagResource
333
404
 
334
405
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/untagresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/untagresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/untagresourcecommandoutput.html)
335
406
 
407
+ </details>
408
+ <details>
409
+ <summary>
410
+ UpdateIdMappingWorkflow
411
+ </summary>
412
+
413
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/updateidmappingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updateidmappingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updateidmappingworkflowcommandoutput.html)
414
+
336
415
  </details>
337
416
  <details>
338
417
  <summary>
@@ -342,3 +421,11 @@ UpdateMatchingWorkflow
342
421
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/updatematchingworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updatematchingworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updatematchingworkflowcommandoutput.html)
343
422
 
344
423
  </details>
424
+ <details>
425
+ <summary>
426
+ UpdateSchemaMapping
427
+ </summary>
428
+
429
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/classes/updateschemamappingcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updateschemamappingcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-entityresolution/interfaces/updateschemamappingcommandoutput.html)
430
+
431
+ </details>
@@ -2,40 +2,62 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EntityResolution = void 0;
4
4
  const smithy_client_1 = require("@smithy/smithy-client");
5
+ const CreateIdMappingWorkflowCommand_1 = require("./commands/CreateIdMappingWorkflowCommand");
5
6
  const CreateMatchingWorkflowCommand_1 = require("./commands/CreateMatchingWorkflowCommand");
6
7
  const CreateSchemaMappingCommand_1 = require("./commands/CreateSchemaMappingCommand");
8
+ const DeleteIdMappingWorkflowCommand_1 = require("./commands/DeleteIdMappingWorkflowCommand");
7
9
  const DeleteMatchingWorkflowCommand_1 = require("./commands/DeleteMatchingWorkflowCommand");
8
10
  const DeleteSchemaMappingCommand_1 = require("./commands/DeleteSchemaMappingCommand");
11
+ const GetIdMappingJobCommand_1 = require("./commands/GetIdMappingJobCommand");
12
+ const GetIdMappingWorkflowCommand_1 = require("./commands/GetIdMappingWorkflowCommand");
9
13
  const GetMatchIdCommand_1 = require("./commands/GetMatchIdCommand");
10
14
  const GetMatchingJobCommand_1 = require("./commands/GetMatchingJobCommand");
11
15
  const GetMatchingWorkflowCommand_1 = require("./commands/GetMatchingWorkflowCommand");
16
+ const GetProviderServiceCommand_1 = require("./commands/GetProviderServiceCommand");
12
17
  const GetSchemaMappingCommand_1 = require("./commands/GetSchemaMappingCommand");
18
+ const ListIdMappingJobsCommand_1 = require("./commands/ListIdMappingJobsCommand");
19
+ const ListIdMappingWorkflowsCommand_1 = require("./commands/ListIdMappingWorkflowsCommand");
13
20
  const ListMatchingJobsCommand_1 = require("./commands/ListMatchingJobsCommand");
14
21
  const ListMatchingWorkflowsCommand_1 = require("./commands/ListMatchingWorkflowsCommand");
22
+ const ListProviderServicesCommand_1 = require("./commands/ListProviderServicesCommand");
15
23
  const ListSchemaMappingsCommand_1 = require("./commands/ListSchemaMappingsCommand");
16
24
  const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
25
+ const StartIdMappingJobCommand_1 = require("./commands/StartIdMappingJobCommand");
17
26
  const StartMatchingJobCommand_1 = require("./commands/StartMatchingJobCommand");
18
27
  const TagResourceCommand_1 = require("./commands/TagResourceCommand");
19
28
  const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
29
+ const UpdateIdMappingWorkflowCommand_1 = require("./commands/UpdateIdMappingWorkflowCommand");
20
30
  const UpdateMatchingWorkflowCommand_1 = require("./commands/UpdateMatchingWorkflowCommand");
31
+ const UpdateSchemaMappingCommand_1 = require("./commands/UpdateSchemaMappingCommand");
21
32
  const EntityResolutionClient_1 = require("./EntityResolutionClient");
22
33
  const commands = {
34
+ CreateIdMappingWorkflowCommand: CreateIdMappingWorkflowCommand_1.CreateIdMappingWorkflowCommand,
23
35
  CreateMatchingWorkflowCommand: CreateMatchingWorkflowCommand_1.CreateMatchingWorkflowCommand,
24
36
  CreateSchemaMappingCommand: CreateSchemaMappingCommand_1.CreateSchemaMappingCommand,
37
+ DeleteIdMappingWorkflowCommand: DeleteIdMappingWorkflowCommand_1.DeleteIdMappingWorkflowCommand,
25
38
  DeleteMatchingWorkflowCommand: DeleteMatchingWorkflowCommand_1.DeleteMatchingWorkflowCommand,
26
39
  DeleteSchemaMappingCommand: DeleteSchemaMappingCommand_1.DeleteSchemaMappingCommand,
40
+ GetIdMappingJobCommand: GetIdMappingJobCommand_1.GetIdMappingJobCommand,
41
+ GetIdMappingWorkflowCommand: GetIdMappingWorkflowCommand_1.GetIdMappingWorkflowCommand,
27
42
  GetMatchIdCommand: GetMatchIdCommand_1.GetMatchIdCommand,
28
43
  GetMatchingJobCommand: GetMatchingJobCommand_1.GetMatchingJobCommand,
29
44
  GetMatchingWorkflowCommand: GetMatchingWorkflowCommand_1.GetMatchingWorkflowCommand,
45
+ GetProviderServiceCommand: GetProviderServiceCommand_1.GetProviderServiceCommand,
30
46
  GetSchemaMappingCommand: GetSchemaMappingCommand_1.GetSchemaMappingCommand,
47
+ ListIdMappingJobsCommand: ListIdMappingJobsCommand_1.ListIdMappingJobsCommand,
48
+ ListIdMappingWorkflowsCommand: ListIdMappingWorkflowsCommand_1.ListIdMappingWorkflowsCommand,
31
49
  ListMatchingJobsCommand: ListMatchingJobsCommand_1.ListMatchingJobsCommand,
32
50
  ListMatchingWorkflowsCommand: ListMatchingWorkflowsCommand_1.ListMatchingWorkflowsCommand,
51
+ ListProviderServicesCommand: ListProviderServicesCommand_1.ListProviderServicesCommand,
33
52
  ListSchemaMappingsCommand: ListSchemaMappingsCommand_1.ListSchemaMappingsCommand,
34
53
  ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
54
+ StartIdMappingJobCommand: StartIdMappingJobCommand_1.StartIdMappingJobCommand,
35
55
  StartMatchingJobCommand: StartMatchingJobCommand_1.StartMatchingJobCommand,
36
56
  TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
37
57
  UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
58
+ UpdateIdMappingWorkflowCommand: UpdateIdMappingWorkflowCommand_1.UpdateIdMappingWorkflowCommand,
38
59
  UpdateMatchingWorkflowCommand: UpdateMatchingWorkflowCommand_1.UpdateMatchingWorkflowCommand,
60
+ UpdateSchemaMappingCommand: UpdateSchemaMappingCommand_1.UpdateSchemaMappingCommand,
39
61
  };
40
62
  class EntityResolution extends EntityResolutionClient_1.EntityResolutionClient {
41
63
  }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateIdMappingWorkflowCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class CreateIdMappingWorkflowCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateIdMappingWorkflowCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "CreateIdMappingWorkflowCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "CreateIdMappingWorkflow",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_CreateIdMappingWorkflowCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_CreateIdMappingWorkflowCommand)(output, context);
49
+ }
50
+ }
51
+ exports.CreateIdMappingWorkflowCommand = CreateIdMappingWorkflowCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteIdMappingWorkflowCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class DeleteIdMappingWorkflowCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteIdMappingWorkflowCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "DeleteIdMappingWorkflowCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "DeleteIdMappingWorkflow",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_DeleteIdMappingWorkflowCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_DeleteIdMappingWorkflowCommand)(output, context);
49
+ }
50
+ }
51
+ exports.DeleteIdMappingWorkflowCommand = DeleteIdMappingWorkflowCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetIdMappingJobCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetIdMappingJobCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetIdMappingJobCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "GetIdMappingJobCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "GetIdMappingJob",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_GetIdMappingJobCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_GetIdMappingJobCommand)(output, context);
49
+ }
50
+ }
51
+ exports.GetIdMappingJobCommand = GetIdMappingJobCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetIdMappingWorkflowCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetIdMappingWorkflowCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetIdMappingWorkflowCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "GetIdMappingWorkflowCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "GetIdMappingWorkflow",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_GetIdMappingWorkflowCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_GetIdMappingWorkflowCommand)(output, context);
49
+ }
50
+ }
51
+ exports.GetIdMappingWorkflowCommand = GetIdMappingWorkflowCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetProviderServiceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetProviderServiceCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetProviderServiceCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "GetProviderServiceCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "GetProviderService",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_GetProviderServiceCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_GetProviderServiceCommand)(output, context);
49
+ }
50
+ }
51
+ exports.GetProviderServiceCommand = GetProviderServiceCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListIdMappingJobsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class ListIdMappingJobsCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListIdMappingJobsCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "EntityResolutionClient";
29
+ const commandName = "ListIdMappingJobsCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "AWSVeniceService",
38
+ operation: "ListIdMappingJobs",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_restJson1_1.se_ListIdMappingJobsCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_restJson1_1.de_ListIdMappingJobsCommand)(output, context);
49
+ }
50
+ }
51
+ exports.ListIdMappingJobsCommand = ListIdMappingJobsCommand;