@aws-sdk/client-entityresolution 3.427.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 +31 -31
@@ -1,22 +1,39 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "./commands/CreateIdMappingWorkflowCommand";
2
3
  import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "./commands/CreateMatchingWorkflowCommand";
3
4
  import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "./commands/CreateSchemaMappingCommand";
5
+ import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "./commands/DeleteIdMappingWorkflowCommand";
4
6
  import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "./commands/DeleteMatchingWorkflowCommand";
5
7
  import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "./commands/DeleteSchemaMappingCommand";
8
+ import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "./commands/GetIdMappingJobCommand";
9
+ import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "./commands/GetIdMappingWorkflowCommand";
6
10
  import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "./commands/GetMatchIdCommand";
7
11
  import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "./commands/GetMatchingJobCommand";
8
12
  import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "./commands/GetMatchingWorkflowCommand";
13
+ import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "./commands/GetProviderServiceCommand";
9
14
  import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "./commands/GetSchemaMappingCommand";
15
+ import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "./commands/ListIdMappingJobsCommand";
16
+ import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "./commands/ListIdMappingWorkflowsCommand";
10
17
  import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "./commands/ListMatchingJobsCommand";
11
18
  import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "./commands/ListMatchingWorkflowsCommand";
19
+ import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "./commands/ListProviderServicesCommand";
12
20
  import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "./commands/ListSchemaMappingsCommand";
13
21
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
+ import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "./commands/StartIdMappingJobCommand";
14
23
  import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "./commands/StartMatchingJobCommand";
15
24
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
16
25
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
26
+ import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "./commands/UpdateIdMappingWorkflowCommand";
17
27
  import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "./commands/UpdateMatchingWorkflowCommand";
28
+ import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "./commands/UpdateSchemaMappingCommand";
18
29
  import { EntityResolutionClient } from "./EntityResolutionClient";
19
30
  export interface EntityResolution {
31
+ /**
32
+ * @see {@link CreateIdMappingWorkflowCommand}
33
+ */
34
+ createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdMappingWorkflowCommandOutput>;
35
+ createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void): void;
36
+ createIdMappingWorkflow(args: CreateIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdMappingWorkflowCommandOutput) => void): void;
20
37
  /**
21
38
  * @see {@link CreateMatchingWorkflowCommand}
22
39
  */
@@ -29,6 +46,12 @@ export interface EntityResolution {
29
46
  createSchemaMapping(args: CreateSchemaMappingCommandInput, options?: __HttpHandlerOptions): Promise<CreateSchemaMappingCommandOutput>;
30
47
  createSchemaMapping(args: CreateSchemaMappingCommandInput, cb: (err: any, data?: CreateSchemaMappingCommandOutput) => void): void;
31
48
  createSchemaMapping(args: CreateSchemaMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSchemaMappingCommandOutput) => void): void;
49
+ /**
50
+ * @see {@link DeleteIdMappingWorkflowCommand}
51
+ */
52
+ deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdMappingWorkflowCommandOutput>;
53
+ deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void): void;
54
+ deleteIdMappingWorkflow(args: DeleteIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdMappingWorkflowCommandOutput) => void): void;
32
55
  /**
33
56
  * @see {@link DeleteMatchingWorkflowCommand}
34
57
  */
@@ -41,6 +64,18 @@ export interface EntityResolution {
41
64
  deleteSchemaMapping(args: DeleteSchemaMappingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSchemaMappingCommandOutput>;
42
65
  deleteSchemaMapping(args: DeleteSchemaMappingCommandInput, cb: (err: any, data?: DeleteSchemaMappingCommandOutput) => void): void;
43
66
  deleteSchemaMapping(args: DeleteSchemaMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSchemaMappingCommandOutput) => void): void;
67
+ /**
68
+ * @see {@link GetIdMappingJobCommand}
69
+ */
70
+ getIdMappingJob(args: GetIdMappingJobCommandInput, options?: __HttpHandlerOptions): Promise<GetIdMappingJobCommandOutput>;
71
+ getIdMappingJob(args: GetIdMappingJobCommandInput, cb: (err: any, data?: GetIdMappingJobCommandOutput) => void): void;
72
+ getIdMappingJob(args: GetIdMappingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdMappingJobCommandOutput) => void): void;
73
+ /**
74
+ * @see {@link GetIdMappingWorkflowCommand}
75
+ */
76
+ getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetIdMappingWorkflowCommandOutput>;
77
+ getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void): void;
78
+ getIdMappingWorkflow(args: GetIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdMappingWorkflowCommandOutput) => void): void;
44
79
  /**
45
80
  * @see {@link GetMatchIdCommand}
46
81
  */
@@ -59,12 +94,30 @@ export interface EntityResolution {
59
94
  getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetMatchingWorkflowCommandOutput>;
60
95
  getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void): void;
61
96
  getMatchingWorkflow(args: GetMatchingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMatchingWorkflowCommandOutput) => void): void;
97
+ /**
98
+ * @see {@link GetProviderServiceCommand}
99
+ */
100
+ getProviderService(args: GetProviderServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetProviderServiceCommandOutput>;
101
+ getProviderService(args: GetProviderServiceCommandInput, cb: (err: any, data?: GetProviderServiceCommandOutput) => void): void;
102
+ getProviderService(args: GetProviderServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProviderServiceCommandOutput) => void): void;
62
103
  /**
63
104
  * @see {@link GetSchemaMappingCommand}
64
105
  */
65
106
  getSchemaMapping(args: GetSchemaMappingCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaMappingCommandOutput>;
66
107
  getSchemaMapping(args: GetSchemaMappingCommandInput, cb: (err: any, data?: GetSchemaMappingCommandOutput) => void): void;
67
108
  getSchemaMapping(args: GetSchemaMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaMappingCommandOutput) => void): void;
109
+ /**
110
+ * @see {@link ListIdMappingJobsCommand}
111
+ */
112
+ listIdMappingJobs(args: ListIdMappingJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListIdMappingJobsCommandOutput>;
113
+ listIdMappingJobs(args: ListIdMappingJobsCommandInput, cb: (err: any, data?: ListIdMappingJobsCommandOutput) => void): void;
114
+ listIdMappingJobs(args: ListIdMappingJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdMappingJobsCommandOutput) => void): void;
115
+ /**
116
+ * @see {@link ListIdMappingWorkflowsCommand}
117
+ */
118
+ listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListIdMappingWorkflowsCommandOutput>;
119
+ listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void): void;
120
+ listIdMappingWorkflows(args: ListIdMappingWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdMappingWorkflowsCommandOutput) => void): void;
68
121
  /**
69
122
  * @see {@link ListMatchingJobsCommand}
70
123
  */
@@ -77,6 +130,12 @@ export interface EntityResolution {
77
130
  listMatchingWorkflows(args: ListMatchingWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListMatchingWorkflowsCommandOutput>;
78
131
  listMatchingWorkflows(args: ListMatchingWorkflowsCommandInput, cb: (err: any, data?: ListMatchingWorkflowsCommandOutput) => void): void;
79
132
  listMatchingWorkflows(args: ListMatchingWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMatchingWorkflowsCommandOutput) => void): void;
133
+ /**
134
+ * @see {@link ListProviderServicesCommand}
135
+ */
136
+ listProviderServices(args: ListProviderServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListProviderServicesCommandOutput>;
137
+ listProviderServices(args: ListProviderServicesCommandInput, cb: (err: any, data?: ListProviderServicesCommandOutput) => void): void;
138
+ listProviderServices(args: ListProviderServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProviderServicesCommandOutput) => void): void;
80
139
  /**
81
140
  * @see {@link ListSchemaMappingsCommand}
82
141
  */
@@ -89,6 +148,12 @@ export interface EntityResolution {
89
148
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
90
149
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
91
150
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
151
+ /**
152
+ * @see {@link StartIdMappingJobCommand}
153
+ */
154
+ startIdMappingJob(args: StartIdMappingJobCommandInput, options?: __HttpHandlerOptions): Promise<StartIdMappingJobCommandOutput>;
155
+ startIdMappingJob(args: StartIdMappingJobCommandInput, cb: (err: any, data?: StartIdMappingJobCommandOutput) => void): void;
156
+ startIdMappingJob(args: StartIdMappingJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartIdMappingJobCommandOutput) => void): void;
92
157
  /**
93
158
  * @see {@link StartMatchingJobCommand}
94
159
  */
@@ -107,27 +172,38 @@ export interface EntityResolution {
107
172
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
108
173
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
109
174
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
175
+ /**
176
+ * @see {@link UpdateIdMappingWorkflowCommand}
177
+ */
178
+ updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdMappingWorkflowCommandOutput>;
179
+ updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void): void;
180
+ updateIdMappingWorkflow(args: UpdateIdMappingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdMappingWorkflowCommandOutput) => void): void;
110
181
  /**
111
182
  * @see {@link UpdateMatchingWorkflowCommand}
112
183
  */
113
184
  updateMatchingWorkflow(args: UpdateMatchingWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMatchingWorkflowCommandOutput>;
114
185
  updateMatchingWorkflow(args: UpdateMatchingWorkflowCommandInput, cb: (err: any, data?: UpdateMatchingWorkflowCommandOutput) => void): void;
115
186
  updateMatchingWorkflow(args: UpdateMatchingWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMatchingWorkflowCommandOutput) => void): void;
187
+ /**
188
+ * @see {@link UpdateSchemaMappingCommand}
189
+ */
190
+ updateSchemaMapping(args: UpdateSchemaMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaMappingCommandOutput>;
191
+ updateSchemaMapping(args: UpdateSchemaMappingCommandInput, cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void): void;
192
+ updateSchemaMapping(args: UpdateSchemaMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaMappingCommandOutput) => void): void;
116
193
  }
117
194
  /**
118
195
  * @public
119
196
  * <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
120
- * <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
121
- * that enable developers and analysts at advertising and marketing companies to build an accurate and
122
- * complete view of their consumers.</p>
123
- * <p>
124
- * With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
125
- * and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
126
- * Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
127
- * with a source record from a marketing system containing campaign information.</p>
197
+ * <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity
198
+ * resolution capabilities that enable developers and analysts at advertising and marketing
199
+ * companies to build an accurate and complete view of their consumers.</p>
200
+ * <p> With Entity Resolution, you can match source records containing consumer identifiers,
201
+ * such as name, email address, and phone number. This is true even when these records have
202
+ * incomplete or conflicting identifiers. For example, Entity Resolution can effectively match
203
+ * a source record from a customer relationship management (CRM) system with a source record
204
+ * from a marketing system containing campaign information.</p>
128
205
  * <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
129
- * <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
130
- * User Guide</a>.</p>
206
+ * <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution User Guide</a>.</p>
131
207
  */
132
208
  export declare class EntityResolution extends EntityResolutionClient implements EntityResolution {
133
209
  }
@@ -8,33 +8,44 @@ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"
8
8
  import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
9
9
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
10
10
  import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
11
+ import { CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput } from "./commands/CreateIdMappingWorkflowCommand";
11
12
  import { CreateMatchingWorkflowCommandInput, CreateMatchingWorkflowCommandOutput } from "./commands/CreateMatchingWorkflowCommand";
12
13
  import { CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput } from "./commands/CreateSchemaMappingCommand";
14
+ import { DeleteIdMappingWorkflowCommandInput, DeleteIdMappingWorkflowCommandOutput } from "./commands/DeleteIdMappingWorkflowCommand";
13
15
  import { DeleteMatchingWorkflowCommandInput, DeleteMatchingWorkflowCommandOutput } from "./commands/DeleteMatchingWorkflowCommand";
14
16
  import { DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput } from "./commands/DeleteSchemaMappingCommand";
17
+ import { GetIdMappingJobCommandInput, GetIdMappingJobCommandOutput } from "./commands/GetIdMappingJobCommand";
18
+ import { GetIdMappingWorkflowCommandInput, GetIdMappingWorkflowCommandOutput } from "./commands/GetIdMappingWorkflowCommand";
15
19
  import { GetMatchIdCommandInput, GetMatchIdCommandOutput } from "./commands/GetMatchIdCommand";
16
20
  import { GetMatchingJobCommandInput, GetMatchingJobCommandOutput } from "./commands/GetMatchingJobCommand";
17
21
  import { GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput } from "./commands/GetMatchingWorkflowCommand";
22
+ import { GetProviderServiceCommandInput, GetProviderServiceCommandOutput } from "./commands/GetProviderServiceCommand";
18
23
  import { GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput } from "./commands/GetSchemaMappingCommand";
24
+ import { ListIdMappingJobsCommandInput, ListIdMappingJobsCommandOutput } from "./commands/ListIdMappingJobsCommand";
25
+ import { ListIdMappingWorkflowsCommandInput, ListIdMappingWorkflowsCommandOutput } from "./commands/ListIdMappingWorkflowsCommand";
19
26
  import { ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput } from "./commands/ListMatchingJobsCommand";
20
27
  import { ListMatchingWorkflowsCommandInput, ListMatchingWorkflowsCommandOutput } from "./commands/ListMatchingWorkflowsCommand";
28
+ import { ListProviderServicesCommandInput, ListProviderServicesCommandOutput } from "./commands/ListProviderServicesCommand";
21
29
  import { ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput } from "./commands/ListSchemaMappingsCommand";
22
30
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
31
+ import { StartIdMappingJobCommandInput, StartIdMappingJobCommandOutput } from "./commands/StartIdMappingJobCommand";
23
32
  import { StartMatchingJobCommandInput, StartMatchingJobCommandOutput } from "./commands/StartMatchingJobCommand";
24
33
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
25
34
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
35
+ import { UpdateIdMappingWorkflowCommandInput, UpdateIdMappingWorkflowCommandOutput } from "./commands/UpdateIdMappingWorkflowCommand";
26
36
  import { UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput } from "./commands/UpdateMatchingWorkflowCommand";
37
+ import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput } from "./commands/UpdateSchemaMappingCommand";
27
38
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
28
39
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
29
40
  export { __Client };
30
41
  /**
31
42
  * @public
32
43
  */
33
- export type ServiceInputTypes = CreateMatchingWorkflowCommandInput | CreateSchemaMappingCommandInput | DeleteMatchingWorkflowCommandInput | DeleteSchemaMappingCommandInput | GetMatchIdCommandInput | GetMatchingJobCommandInput | GetMatchingWorkflowCommandInput | GetSchemaMappingCommandInput | ListMatchingJobsCommandInput | ListMatchingWorkflowsCommandInput | ListSchemaMappingsCommandInput | ListTagsForResourceCommandInput | StartMatchingJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateMatchingWorkflowCommandInput;
44
+ export type ServiceInputTypes = CreateIdMappingWorkflowCommandInput | CreateMatchingWorkflowCommandInput | CreateSchemaMappingCommandInput | DeleteIdMappingWorkflowCommandInput | DeleteMatchingWorkflowCommandInput | DeleteSchemaMappingCommandInput | GetIdMappingJobCommandInput | GetIdMappingWorkflowCommandInput | GetMatchIdCommandInput | GetMatchingJobCommandInput | GetMatchingWorkflowCommandInput | GetProviderServiceCommandInput | GetSchemaMappingCommandInput | ListIdMappingJobsCommandInput | ListIdMappingWorkflowsCommandInput | ListMatchingJobsCommandInput | ListMatchingWorkflowsCommandInput | ListProviderServicesCommandInput | ListSchemaMappingsCommandInput | ListTagsForResourceCommandInput | StartIdMappingJobCommandInput | StartMatchingJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIdMappingWorkflowCommandInput | UpdateMatchingWorkflowCommandInput | UpdateSchemaMappingCommandInput;
34
45
  /**
35
46
  * @public
36
47
  */
37
- export type ServiceOutputTypes = CreateMatchingWorkflowCommandOutput | CreateSchemaMappingCommandOutput | DeleteMatchingWorkflowCommandOutput | DeleteSchemaMappingCommandOutput | GetMatchIdCommandOutput | GetMatchingJobCommandOutput | GetMatchingWorkflowCommandOutput | GetSchemaMappingCommandOutput | ListMatchingJobsCommandOutput | ListMatchingWorkflowsCommandOutput | ListSchemaMappingsCommandOutput | ListTagsForResourceCommandOutput | StartMatchingJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateMatchingWorkflowCommandOutput;
48
+ export type ServiceOutputTypes = CreateIdMappingWorkflowCommandOutput | CreateMatchingWorkflowCommandOutput | CreateSchemaMappingCommandOutput | DeleteIdMappingWorkflowCommandOutput | DeleteMatchingWorkflowCommandOutput | DeleteSchemaMappingCommandOutput | GetIdMappingJobCommandOutput | GetIdMappingWorkflowCommandOutput | GetMatchIdCommandOutput | GetMatchingJobCommandOutput | GetMatchingWorkflowCommandOutput | GetProviderServiceCommandOutput | GetSchemaMappingCommandOutput | ListIdMappingJobsCommandOutput | ListIdMappingWorkflowsCommandOutput | ListMatchingJobsCommandOutput | ListMatchingWorkflowsCommandOutput | ListProviderServicesCommandOutput | ListSchemaMappingsCommandOutput | ListTagsForResourceCommandOutput | StartIdMappingJobCommandOutput | StartMatchingJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIdMappingWorkflowCommandOutput | UpdateMatchingWorkflowCommandOutput | UpdateSchemaMappingCommandOutput;
38
49
  /**
39
50
  * @public
40
51
  */
@@ -169,17 +180,16 @@ export interface EntityResolutionClientResolvedConfig extends EntityResolutionCl
169
180
  /**
170
181
  * @public
171
182
  * <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
172
- * <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
173
- * that enable developers and analysts at advertising and marketing companies to build an accurate and
174
- * complete view of their consumers.</p>
175
- * <p>
176
- * With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
177
- * and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
178
- * Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
179
- * with a source record from a marketing system containing campaign information.</p>
183
+ * <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity
184
+ * resolution capabilities that enable developers and analysts at advertising and marketing
185
+ * companies to build an accurate and complete view of their consumers.</p>
186
+ * <p> With Entity Resolution, you can match source records containing consumer identifiers,
187
+ * such as name, email address, and phone number. This is true even when these records have
188
+ * incomplete or conflicting identifiers. For example, Entity Resolution can effectively match
189
+ * a source record from a customer relationship management (CRM) system with a source record
190
+ * from a marketing system containing campaign information.</p>
180
191
  * <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
181
- * <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
182
- * User Guide</a>.</p>
192
+ * <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution User Guide</a>.</p>
183
193
  */
184
194
  export declare class EntityResolutionClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EntityResolutionClientResolvedConfig> {
185
195
  /**
@@ -0,0 +1,160 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
5
+ import { CreateIdMappingWorkflowInput, CreateIdMappingWorkflowOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateIdMappingWorkflowCommand}.
14
+ */
15
+ export interface CreateIdMappingWorkflowCommandInput extends CreateIdMappingWorkflowInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateIdMappingWorkflowCommand}.
21
+ */
22
+ export interface CreateIdMappingWorkflowCommandOutput extends CreateIdMappingWorkflowOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates an <code>IdMappingWorkflow</code> object which stores the configuration of the
27
+ * data processing job to be run. Each <code>IdMappingWorkflow</code> must have a unique
28
+ * workflow name. To modify an existing workflow, use the <code>UpdateIdMappingWorkflow</code>
29
+ * API.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, CreateIdMappingWorkflowCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, CreateIdMappingWorkflowCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // CreateIdMappingWorkflowInput
37
+ * workflowName: "STRING_VALUE", // required
38
+ * description: "STRING_VALUE",
39
+ * inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
40
+ * { // IdMappingWorkflowInputSource
41
+ * inputSourceARN: "STRING_VALUE", // required
42
+ * schemaName: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig // required
46
+ * { // IdMappingWorkflowOutputSource
47
+ * outputS3Path: "STRING_VALUE", // required
48
+ * KMSArn: "STRING_VALUE",
49
+ * },
50
+ * ],
51
+ * idMappingTechniques: { // IdMappingTechniques
52
+ * idMappingType: "PROVIDER", // required
53
+ * providerProperties: { // ProviderProperties
54
+ * providerServiceArn: "STRING_VALUE", // required
55
+ * providerConfiguration: "DOCUMENT_VALUE",
56
+ * intermediateSourceConfiguration: { // IntermediateSourceConfiguration
57
+ * intermediateS3Path: "STRING_VALUE", // required
58
+ * },
59
+ * },
60
+ * },
61
+ * roleArn: "STRING_VALUE", // required
62
+ * tags: { // TagMap
63
+ * "<keys>": "STRING_VALUE",
64
+ * },
65
+ * };
66
+ * const command = new CreateIdMappingWorkflowCommand(input);
67
+ * const response = await client.send(command);
68
+ * // { // CreateIdMappingWorkflowOutput
69
+ * // workflowName: "STRING_VALUE", // required
70
+ * // workflowArn: "STRING_VALUE", // required
71
+ * // description: "STRING_VALUE",
72
+ * // inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
73
+ * // { // IdMappingWorkflowInputSource
74
+ * // inputSourceARN: "STRING_VALUE", // required
75
+ * // schemaName: "STRING_VALUE", // required
76
+ * // },
77
+ * // ],
78
+ * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig // required
79
+ * // { // IdMappingWorkflowOutputSource
80
+ * // outputS3Path: "STRING_VALUE", // required
81
+ * // KMSArn: "STRING_VALUE",
82
+ * // },
83
+ * // ],
84
+ * // idMappingTechniques: { // IdMappingTechniques
85
+ * // idMappingType: "PROVIDER", // required
86
+ * // providerProperties: { // ProviderProperties
87
+ * // providerServiceArn: "STRING_VALUE", // required
88
+ * // providerConfiguration: "DOCUMENT_VALUE",
89
+ * // intermediateSourceConfiguration: { // IntermediateSourceConfiguration
90
+ * // intermediateS3Path: "STRING_VALUE", // required
91
+ * // },
92
+ * // },
93
+ * // },
94
+ * // roleArn: "STRING_VALUE", // required
95
+ * // };
96
+ *
97
+ * ```
98
+ *
99
+ * @param CreateIdMappingWorkflowCommandInput - {@link CreateIdMappingWorkflowCommandInput}
100
+ * @returns {@link CreateIdMappingWorkflowCommandOutput}
101
+ * @see {@link CreateIdMappingWorkflowCommandInput} for command's `input` shape.
102
+ * @see {@link CreateIdMappingWorkflowCommandOutput} for command's `response` shape.
103
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
104
+ *
105
+ * @throws {@link AccessDeniedException} (client fault)
106
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
107
+ * 403</code>
108
+ * </p>
109
+ *
110
+ * @throws {@link ConflictException} (client fault)
111
+ * <p>The request could not be processed because of conflict in the current state of the
112
+ * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
113
+ * running, etc. <code>HTTP Status Code: 400</code>
114
+ * </p>
115
+ *
116
+ * @throws {@link ExceedsLimitException} (client fault)
117
+ * <p>The request was rejected because it attempted to create resources beyond the current
118
+ * Entity Resolution account limits. The error message describes the limit exceeded.
119
+ * <code>HTTP Status Code: 402</code>
120
+ * </p>
121
+ *
122
+ * @throws {@link InternalServerException} (server fault)
123
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
124
+ * service. <code>HTTP Status Code: 500</code>
125
+ * </p>
126
+ *
127
+ * @throws {@link ThrottlingException} (client fault)
128
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
129
+ * 429</code>
130
+ * </p>
131
+ *
132
+ * @throws {@link ValidationException} (client fault)
133
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
134
+ * Status Code: 400</code>
135
+ * </p>
136
+ *
137
+ * @throws {@link EntityResolutionServiceException}
138
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
139
+ *
140
+ */
141
+ export declare class CreateIdMappingWorkflowCommand extends $Command<CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput, EntityResolutionClientResolvedConfig> {
142
+ readonly input: CreateIdMappingWorkflowCommandInput;
143
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
144
+ /**
145
+ * @public
146
+ */
147
+ constructor(input: CreateIdMappingWorkflowCommandInput);
148
+ /**
149
+ * @internal
150
+ */
151
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EntityResolutionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIdMappingWorkflowCommandInput, CreateIdMappingWorkflowCommandOutput>;
152
+ /**
153
+ * @internal
154
+ */
155
+ private serialize;
156
+ /**
157
+ * @internal
158
+ */
159
+ private deserialize;
160
+ }
@@ -23,9 +23,10 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Creates a <code>MatchingWorkflow</code> object which stores the configuration of the data processing job
27
- * to be run. It is important to note that there should not be a pre-existing <code>MatchingWorkflow</code>
28
- * with the same name. To modify an existing workflow, utilize the <code>UpdateMatchingWorkflow</code> API.</p>
26
+ * <p>Creates a <code>MatchingWorkflow</code> object which stores the configuration of the
27
+ * data processing job to be run. It is important to note that there should not be a
28
+ * pre-existing <code>MatchingWorkflow</code> with the same name. To modify an existing
29
+ * workflow, utilize the <code>UpdateMatchingWorkflow</code> API.</p>
29
30
  * @example
30
31
  * Use a bare-bones client and the command you need to make an API call.
31
32
  * ```javascript
@@ -56,7 +57,7 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
56
57
  * },
57
58
  * ],
58
59
  * resolutionTechniques: { // ResolutionTechniques
59
- * resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
60
+ * resolutionType: "RULE_MATCHING" || "ML_MATCHING" || "PROVIDER", // required
60
61
  * ruleBasedProperties: { // RuleBasedProperties
61
62
  * rules: [ // RuleList // required
62
63
  * { // Rule
@@ -68,6 +69,13 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
68
69
  * ],
69
70
  * attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
70
71
  * },
72
+ * providerProperties: { // ProviderProperties
73
+ * providerServiceArn: "STRING_VALUE", // required
74
+ * providerConfiguration: "DOCUMENT_VALUE",
75
+ * intermediateSourceConfiguration: { // IntermediateSourceConfiguration
76
+ * intermediateS3Path: "STRING_VALUE", // required
77
+ * },
78
+ * },
71
79
  * },
72
80
  * incrementalRunConfig: { // IncrementalRunConfig
73
81
  * incrementalRunType: "IMMEDIATE",
@@ -104,7 +112,7 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
104
112
  * // },
105
113
  * // ],
106
114
  * // resolutionTechniques: { // ResolutionTechniques
107
- * // resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
115
+ * // resolutionType: "RULE_MATCHING" || "ML_MATCHING" || "PROVIDER", // required
108
116
  * // ruleBasedProperties: { // RuleBasedProperties
109
117
  * // rules: [ // RuleList // required
110
118
  * // { // Rule
@@ -116,6 +124,13 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
116
124
  * // ],
117
125
  * // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
118
126
  * // },
127
+ * // providerProperties: { // ProviderProperties
128
+ * // providerServiceArn: "STRING_VALUE", // required
129
+ * // providerConfiguration: "DOCUMENT_VALUE",
130
+ * // intermediateSourceConfiguration: { // IntermediateSourceConfiguration
131
+ * // intermediateS3Path: "STRING_VALUE", // required
132
+ * // },
133
+ * // },
119
134
  * // },
120
135
  * // incrementalRunConfig: { // IncrementalRunConfig
121
136
  * // incrementalRunType: "IMMEDIATE",
@@ -132,29 +147,35 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
132
147
  * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
133
148
  *
134
149
  * @throws {@link AccessDeniedException} (client fault)
135
- * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code: 403</code>
150
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
151
+ * 403</code>
136
152
  * </p>
137
153
  *
138
154
  * @throws {@link ConflictException} (client fault)
139
- * <p>The request could not be processed because of conflict in the current state of the resource. Example: Workflow already exists,
140
- * Schema already exists, Workflow is currently running, etc. <code>HTTP Status Code: 400</code>
155
+ * <p>The request could not be processed because of conflict in the current state of the
156
+ * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
157
+ * running, etc. <code>HTTP Status Code: 400</code>
141
158
  * </p>
142
159
  *
143
160
  * @throws {@link ExceedsLimitException} (client fault)
144
- * <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
145
- * The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
161
+ * <p>The request was rejected because it attempted to create resources beyond the current
162
+ * Entity Resolution account limits. The error message describes the limit exceeded.
163
+ * <code>HTTP Status Code: 402</code>
146
164
  * </p>
147
165
  *
148
166
  * @throws {@link InternalServerException} (server fault)
149
- * <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
167
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
168
+ * service. <code>HTTP Status Code: 500</code>
150
169
  * </p>
151
170
  *
152
171
  * @throws {@link ThrottlingException} (client fault)
153
- * <p>The request was denied due to request throttling. <code>HTTP Status Code: 429</code>
172
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
173
+ * 429</code>
154
174
  * </p>
155
175
  *
156
176
  * @throws {@link ValidationException} (client fault)
157
- * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
177
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
178
+ * Status Code: 400</code>
158
179
  * </p>
159
180
  *
160
181
  * @throws {@link EntityResolutionServiceException}
@@ -38,9 +38,10 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
38
38
  * mappedInputFields: [ // SchemaInputAttributes // required
39
39
  * { // SchemaInputAttribute
40
40
  * fieldName: "STRING_VALUE", // required
41
- * type: "NAME" || "NAME_FIRST" || "NAME_MIDDLE" || "NAME_LAST" || "ADDRESS" || "ADDRESS_STREET1" || "ADDRESS_STREET2" || "ADDRESS_STREET3" || "ADDRESS_CITY" || "ADDRESS_STATE" || "ADDRESS_COUNTRY" || "ADDRESS_POSTALCODE" || "PHONE" || "PHONE_NUMBER" || "PHONE_COUNTRYCODE" || "EMAIL_ADDRESS" || "UNIQUE_ID" || "DATE" || "STRING", // required
41
+ * type: "NAME" || "NAME_FIRST" || "NAME_MIDDLE" || "NAME_LAST" || "ADDRESS" || "ADDRESS_STREET1" || "ADDRESS_STREET2" || "ADDRESS_STREET3" || "ADDRESS_CITY" || "ADDRESS_STATE" || "ADDRESS_COUNTRY" || "ADDRESS_POSTALCODE" || "PHONE" || "PHONE_NUMBER" || "PHONE_COUNTRYCODE" || "EMAIL_ADDRESS" || "UNIQUE_ID" || "DATE" || "STRING" || "PROVIDER_ID", // required
42
42
  * groupName: "STRING_VALUE",
43
43
  * matchKey: "STRING_VALUE",
44
+ * subType: "STRING_VALUE",
44
45
  * },
45
46
  * ],
46
47
  * tags: { // TagMap
@@ -56,9 +57,10 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
56
57
  * // mappedInputFields: [ // SchemaInputAttributes // required
57
58
  * // { // SchemaInputAttribute
58
59
  * // fieldName: "STRING_VALUE", // required
59
- * // type: "NAME" || "NAME_FIRST" || "NAME_MIDDLE" || "NAME_LAST" || "ADDRESS" || "ADDRESS_STREET1" || "ADDRESS_STREET2" || "ADDRESS_STREET3" || "ADDRESS_CITY" || "ADDRESS_STATE" || "ADDRESS_COUNTRY" || "ADDRESS_POSTALCODE" || "PHONE" || "PHONE_NUMBER" || "PHONE_COUNTRYCODE" || "EMAIL_ADDRESS" || "UNIQUE_ID" || "DATE" || "STRING", // required
60
+ * // type: "NAME" || "NAME_FIRST" || "NAME_MIDDLE" || "NAME_LAST" || "ADDRESS" || "ADDRESS_STREET1" || "ADDRESS_STREET2" || "ADDRESS_STREET3" || "ADDRESS_CITY" || "ADDRESS_STATE" || "ADDRESS_COUNTRY" || "ADDRESS_POSTALCODE" || "PHONE" || "PHONE_NUMBER" || "PHONE_COUNTRYCODE" || "EMAIL_ADDRESS" || "UNIQUE_ID" || "DATE" || "STRING" || "PROVIDER_ID", // required
60
61
  * // groupName: "STRING_VALUE",
61
62
  * // matchKey: "STRING_VALUE",
63
+ * // subType: "STRING_VALUE",
62
64
  * // },
63
65
  * // ],
64
66
  * // };
@@ -72,29 +74,35 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
72
74
  * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
73
75
  *
74
76
  * @throws {@link AccessDeniedException} (client fault)
75
- * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code: 403</code>
77
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
78
+ * 403</code>
76
79
  * </p>
77
80
  *
78
81
  * @throws {@link ConflictException} (client fault)
79
- * <p>The request could not be processed because of conflict in the current state of the resource. Example: Workflow already exists,
80
- * Schema already exists, Workflow is currently running, etc. <code>HTTP Status Code: 400</code>
82
+ * <p>The request could not be processed because of conflict in the current state of the
83
+ * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
84
+ * running, etc. <code>HTTP Status Code: 400</code>
81
85
  * </p>
82
86
  *
83
87
  * @throws {@link ExceedsLimitException} (client fault)
84
- * <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
85
- * The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
88
+ * <p>The request was rejected because it attempted to create resources beyond the current
89
+ * Entity Resolution account limits. The error message describes the limit exceeded.
90
+ * <code>HTTP Status Code: 402</code>
86
91
  * </p>
87
92
  *
88
93
  * @throws {@link InternalServerException} (server fault)
89
- * <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
94
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
95
+ * service. <code>HTTP Status Code: 500</code>
90
96
  * </p>
91
97
  *
92
98
  * @throws {@link ThrottlingException} (client fault)
93
- * <p>The request was denied due to request throttling. <code>HTTP Status Code: 429</code>
99
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
100
+ * 429</code>
94
101
  * </p>
95
102
  *
96
103
  * @throws {@link ValidationException} (client fault)
97
- * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
104
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
105
+ * Status Code: 400</code>
98
106
  * </p>
99
107
  *
100
108
  * @throws {@link EntityResolutionServiceException}