@aws-sdk/client-entityresolution 3.552.0 → 3.556.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 (60) hide show
  1. package/README.md +79 -7
  2. package/dist-cjs/index.js +614 -56
  3. package/dist-es/EntityResolution.js +18 -0
  4. package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
  5. package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
  6. package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
  7. package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
  8. package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
  9. package/dist-es/commands/GetPolicyCommand.js +24 -0
  10. package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
  11. package/dist-es/commands/PutPolicyCommand.js +24 -0
  12. package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +40 -32
  15. package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +363 -7
  18. package/dist-types/EntityResolution.d.ts +64 -0
  19. package/dist-types/EntityResolutionClient.d.ts +11 -2
  20. package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
  21. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
  22. package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
  23. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
  25. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
  26. package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
  27. package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
  28. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
  29. package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
  30. package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
  31. package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
  32. package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
  33. package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
  34. package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
  35. package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
  36. package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
  37. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
  38. package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
  39. package/dist-types/commands/index.d.ts +9 -0
  40. package/dist-types/models/models_0.d.ts +876 -83
  41. package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  44. package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
  45. package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
  46. package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
  51. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  52. package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
  53. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +216 -41
  57. package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  60. package/package.json +4 -4
@@ -19,14 +19,76 @@ export declare class AccessDeniedException extends __BaseException {
19
19
  * @public
20
20
  * @enum
21
21
  */
22
- export declare const AttributeMatchingModel: {
23
- readonly MANY_TO_MANY: "MANY_TO_MANY";
24
- readonly ONE_TO_ONE: "ONE_TO_ONE";
22
+ export declare const StatementEffect: {
23
+ readonly Allow: "Allow";
24
+ readonly Deny: "Deny";
25
25
  };
26
26
  /**
27
27
  * @public
28
28
  */
29
- export type AttributeMatchingModel = (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
29
+ export type StatementEffect = (typeof StatementEffect)[keyof typeof StatementEffect];
30
+ /**
31
+ * @public
32
+ */
33
+ export interface AddPolicyStatementInput {
34
+ /**
35
+ * <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the
36
+ * principal.</p>
37
+ * @public
38
+ */
39
+ arn: string | undefined;
40
+ /**
41
+ * <p>A statement identifier that differentiates the statement from others in the same
42
+ * policy.</p>
43
+ * @public
44
+ */
45
+ statementId: string | undefined;
46
+ /**
47
+ * <p>Determines whether the permissions specified in the policy are to be allowed
48
+ * (<code>Allow</code>) or denied (<code>Deny</code>).</p>
49
+ * @public
50
+ */
51
+ effect: StatementEffect | undefined;
52
+ /**
53
+ * <p>The action that the principal can use on the resource. </p>
54
+ * <p>For example, <code>entityresolution:GetIdMappingJob</code>,
55
+ * <code>entityresolution:GetMatchingJob</code>.</p>
56
+ * @public
57
+ */
58
+ action: string[] | undefined;
59
+ /**
60
+ * <p>The Amazon Web Services service or Amazon Web Services account that can access the
61
+ * resource defined as ARN.</p>
62
+ * @public
63
+ */
64
+ principal: string[] | undefined;
65
+ /**
66
+ * <p>A set of condition keys that you can use in key policies.</p>
67
+ * @public
68
+ */
69
+ condition?: string;
70
+ }
71
+ /**
72
+ * @public
73
+ */
74
+ export interface AddPolicyStatementOutput {
75
+ /**
76
+ * <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the
77
+ * principal.</p>
78
+ * @public
79
+ */
80
+ arn: string | undefined;
81
+ /**
82
+ * <p>A unique identifier for the current revision of the policy.</p>
83
+ * @public
84
+ */
85
+ token: string | undefined;
86
+ /**
87
+ * <p>The resource-based policy.</p>
88
+ * @public
89
+ */
90
+ policy?: string;
91
+ }
30
92
  /**
31
93
  * <p>The request could not be processed because of conflict in the current state of the
32
94
  * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
@@ -42,6 +104,77 @@ export declare class ConflictException extends __BaseException {
42
104
  */
43
105
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
44
106
  }
107
+ /**
108
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
109
+ * service. <code>HTTP Status Code: 500</code>
110
+ * </p>
111
+ * @public
112
+ */
113
+ export declare class InternalServerException extends __BaseException {
114
+ readonly name: "InternalServerException";
115
+ readonly $fault: "server";
116
+ $retryable: {};
117
+ /**
118
+ * @internal
119
+ */
120
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
121
+ }
122
+ /**
123
+ * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
124
+ * </p>
125
+ * @public
126
+ */
127
+ export declare class ResourceNotFoundException extends __BaseException {
128
+ readonly name: "ResourceNotFoundException";
129
+ readonly $fault: "client";
130
+ /**
131
+ * @internal
132
+ */
133
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
134
+ }
135
+ /**
136
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
137
+ * 429</code>
138
+ * </p>
139
+ * @public
140
+ */
141
+ export declare class ThrottlingException extends __BaseException {
142
+ readonly name: "ThrottlingException";
143
+ readonly $fault: "client";
144
+ $retryable: {
145
+ throttling: boolean;
146
+ };
147
+ /**
148
+ * @internal
149
+ */
150
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
151
+ }
152
+ /**
153
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
154
+ * Status Code: 400</code>
155
+ * </p>
156
+ * @public
157
+ */
158
+ export declare class ValidationException extends __BaseException {
159
+ readonly name: "ValidationException";
160
+ readonly $fault: "client";
161
+ /**
162
+ * @internal
163
+ */
164
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
165
+ }
166
+ /**
167
+ * @public
168
+ * @enum
169
+ */
170
+ export declare const AttributeMatchingModel: {
171
+ readonly MANY_TO_MANY: "MANY_TO_MANY";
172
+ readonly ONE_TO_ONE: "ONE_TO_ONE";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type AttributeMatchingModel = (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
45
178
  /**
46
179
  * @public
47
180
  * @enum
@@ -106,15 +239,28 @@ export interface IdMappingTechniques {
106
239
  * service.</p>
107
240
  * @public
108
241
  */
109
- providerProperties: ProviderProperties | undefined;
242
+ providerProperties?: ProviderProperties;
110
243
  }
111
244
  /**
112
- * <p>An object containing <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
245
+ * @public
246
+ * @enum
247
+ */
248
+ export declare const IdNamespaceType: {
249
+ readonly SOURCE: "SOURCE";
250
+ readonly TARGET: "TARGET";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
256
+ /**
257
+ * <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and
258
+ * <code>Type</code>.</p>
113
259
  * @public
114
260
  */
115
261
  export interface IdMappingWorkflowInputSource {
116
262
  /**
117
- * <p>An Gluetable ARN for the input source table.</p>
263
+ * <p>An Glue table ARN for the input source table.</p>
118
264
  * @public
119
265
  */
120
266
  inputSourceARN: string | undefined;
@@ -122,7 +268,17 @@ export interface IdMappingWorkflowInputSource {
122
268
  * <p>The name of the schema to be retrieved.</p>
123
269
  * @public
124
270
  */
125
- schemaName: string | undefined;
271
+ schemaName?: string;
272
+ /**
273
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
274
+ * <code>TARGET</code>. </p>
275
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
276
+ * be processed in an ID mapping workflow. </p>
277
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
278
+ * <code>sourceIds</code> will resolve to.</p>
279
+ * @public
280
+ */
281
+ type?: IdNamespaceType;
126
282
  }
127
283
  /**
128
284
  * <p>The output source for the ID mapping workflow.</p>
@@ -167,7 +323,7 @@ export interface CreateIdMappingWorkflowInput {
167
323
  * fields <code>OutputS3Path</code> and <code>Output</code>.</p>
168
324
  * @public
169
325
  */
170
- outputSourceConfig: IdMappingWorkflowOutputSource[] | undefined;
326
+ outputSourceConfig?: IdMappingWorkflowOutputSource[];
171
327
  /**
172
328
  * <p>An object which defines the <code>idMappingType</code> and the
173
329
  * <code>providerProperties</code>.</p>
@@ -217,7 +373,7 @@ export interface CreateIdMappingWorkflowOutput {
217
373
  * fields <code>OutputS3Path</code> and <code>Output</code>.</p>
218
374
  * @public
219
375
  */
220
- outputSourceConfig: IdMappingWorkflowOutputSource[] | undefined;
376
+ outputSourceConfig?: IdMappingWorkflowOutputSource[];
221
377
  /**
222
378
  * <p>An object which defines the <code>idMappingType</code> and the
223
379
  * <code>providerProperties</code>.</p>
@@ -257,50 +413,171 @@ export declare class ExceedsLimitException extends __BaseException {
257
413
  constructor(opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>);
258
414
  }
259
415
  /**
260
- * <p>This exception occurs when there is an internal failure in the Entity Resolution
261
- * service. <code>HTTP Status Code: 500</code>
262
- * </p>
416
+ * <p>An object containing <code>ProviderConfiguration</code> and
417
+ * <code>ProviderServiceArn</code>.</p>
263
418
  * @public
264
419
  */
265
- export declare class InternalServerException extends __BaseException {
266
- readonly name: "InternalServerException";
267
- readonly $fault: "server";
268
- $retryable: {};
420
+ export interface NamespaceProviderProperties {
269
421
  /**
270
- * @internal
422
+ * <p>The Amazon Resource Name (ARN) of the provider service.</p>
423
+ * @public
271
424
  */
272
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
425
+ providerServiceArn: string | undefined;
426
+ /**
427
+ * <p>An object which defines any additional configurations required by the provider
428
+ * service.</p>
429
+ * @public
430
+ */
431
+ providerConfiguration?: __DocumentType;
273
432
  }
274
433
  /**
275
- * <p>The request was denied due to request throttling. <code>HTTP Status Code:
276
- * 429</code>
277
- * </p>
434
+ * <p>An object containing <code>IdMappingType</code> and
435
+ * <code>ProviderProperties</code>.</p>
278
436
  * @public
279
437
  */
280
- export declare class ThrottlingException extends __BaseException {
281
- readonly name: "ThrottlingException";
282
- readonly $fault: "client";
283
- $retryable: {
284
- throttling: boolean;
285
- };
438
+ export interface IdNamespaceIdMappingWorkflowProperties {
286
439
  /**
287
- * @internal
440
+ * <p>The type of ID mapping.</p>
441
+ * @public
288
442
  */
289
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
443
+ idMappingType: IdMappingType | undefined;
444
+ /**
445
+ * <p>An object which defines any additional configurations required by the provider
446
+ * service.</p>
447
+ * @public
448
+ */
449
+ providerProperties?: NamespaceProviderProperties;
290
450
  }
291
451
  /**
292
- * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
293
- * Status Code: 400</code>
294
- * </p>
452
+ * <p>An object containing <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
295
453
  * @public
296
454
  */
297
- export declare class ValidationException extends __BaseException {
298
- readonly name: "ValidationException";
299
- readonly $fault: "client";
455
+ export interface IdNamespaceInputSource {
300
456
  /**
301
- * @internal
457
+ * <p>An Glue table ARN for the input source table.</p>
458
+ * @public
302
459
  */
303
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
460
+ inputSourceARN: string | undefined;
461
+ /**
462
+ * <p>The name of the schema.</p>
463
+ * @public
464
+ */
465
+ schemaName?: string;
466
+ }
467
+ /**
468
+ * @public
469
+ */
470
+ export interface CreateIdNamespaceInput {
471
+ /**
472
+ * <p>The name of the ID namespace.</p>
473
+ * @public
474
+ */
475
+ idNamespaceName: string | undefined;
476
+ /**
477
+ * <p>The description of the ID namespace.</p>
478
+ * @public
479
+ */
480
+ description?: string;
481
+ /**
482
+ * <p>A list of <code>InputSource</code> objects, which have the fields
483
+ * <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
484
+ * @public
485
+ */
486
+ inputSourceConfig?: IdNamespaceInputSource[];
487
+ /**
488
+ * <p>Determines the properties of <code>IdMappingWorflow</code> where this
489
+ * <code>IdNamespace</code> can be used as a <code>Source</code> or a
490
+ * <code>Target</code>.</p>
491
+ * @public
492
+ */
493
+ idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
494
+ /**
495
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
496
+ * <code>TARGET</code>. </p>
497
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
498
+ * be processed in an ID mapping workflow. </p>
499
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
500
+ * <code>sourceIds</code> will resolve to.</p>
501
+ * @public
502
+ */
503
+ type: IdNamespaceType | undefined;
504
+ /**
505
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
506
+ * this role to access the resources defined in this <code>IdNamespace</code> on your behalf
507
+ * as part of the workflow run.</p>
508
+ * @public
509
+ */
510
+ roleArn?: string;
511
+ /**
512
+ * <p>The tags used to organize, track, or control access for this resource.</p>
513
+ * @public
514
+ */
515
+ tags?: Record<string, string>;
516
+ }
517
+ /**
518
+ * @public
519
+ */
520
+ export interface CreateIdNamespaceOutput {
521
+ /**
522
+ * <p>The name of the ID namespace.</p>
523
+ * @public
524
+ */
525
+ idNamespaceName: string | undefined;
526
+ /**
527
+ * <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
528
+ * @public
529
+ */
530
+ idNamespaceArn: string | undefined;
531
+ /**
532
+ * <p>The description of the ID namespace.</p>
533
+ * @public
534
+ */
535
+ description?: string;
536
+ /**
537
+ * <p>A list of <code>InputSource</code> objects, which have the fields
538
+ * <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
539
+ * @public
540
+ */
541
+ inputSourceConfig?: IdNamespaceInputSource[];
542
+ /**
543
+ * <p>Determines the properties of <code>IdMappingWorkflow</code> where this
544
+ * <code>IdNamespace</code> can be used as a <code>Source</code> or a
545
+ * <code>Target</code>.</p>
546
+ * @public
547
+ */
548
+ idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
549
+ /**
550
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
551
+ * <code>TARGET</code>.</p>
552
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
553
+ * be processed in an ID mapping workflow. </p>
554
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
555
+ * <code>sourceIds</code> will resolve to.</p>
556
+ * @public
557
+ */
558
+ type: IdNamespaceType | undefined;
559
+ /**
560
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
561
+ * this role to access the resources defined in <code>inputSourceConfig</code> on your behalf
562
+ * as part of the workflow run.</p>
563
+ * @public
564
+ */
565
+ roleArn?: string;
566
+ /**
567
+ * <p>The timestamp of when the ID namespace was created.</p>
568
+ * @public
569
+ */
570
+ createdAt: Date | undefined;
571
+ /**
572
+ * <p>The timestamp of when the ID namespace was last updated.</p>
573
+ * @public
574
+ */
575
+ updatedAt: Date | undefined;
576
+ /**
577
+ * <p>The tags used to organize, track, or control access for this resource.</p>
578
+ * @public
579
+ */
580
+ tags?: Record<string, string>;
304
581
  }
305
582
  /**
306
583
  * @public
@@ -466,8 +743,8 @@ export interface RuleBasedProperties {
466
743
  */
467
744
  export interface ResolutionTechniques {
468
745
  /**
469
- * <p>The type of matching. There are two types of matching: <code>RULE_MATCHING</code> and
470
- * <code>ML_MATCHING</code>.</p>
746
+ * <p>The type of matching. There are three types of matching: <code>RULE_MATCHING</code>,
747
+ * <code>ML_MATCHING</code>, and <code>PROVIDER</code>.</p>
471
748
  * @public
472
749
  */
473
750
  resolutionType: ResolutionType | undefined;
@@ -619,7 +896,7 @@ export declare const SchemaAttributeType: {
619
896
  export type SchemaAttributeType = (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
620
897
  /**
621
898
  * <p>An object containing <code>FieldName</code>, <code>Type</code>, <code>GroupName</code>,
622
- * and <code>MatchKey</code>.</p>
899
+ * <code>MatchKey</code>, and <code>SubType</code>.</p>
623
900
  * @public
624
901
  */
625
902
  export interface SchemaInputAttribute {
@@ -634,22 +911,23 @@ export interface SchemaInputAttribute {
634
911
  */
635
912
  type: SchemaAttributeType | undefined;
636
913
  /**
637
- * <p>Instruct Entity Resolution to combine several columns into a unified column with the
638
- * identical attribute type. For example, when working with columns such as first_name,
639
- * middle_name, and last_name, assigning them a common <code>GroupName</code> will prompt
640
- * Entity Resolution to concatenate them into a single value.</p>
914
+ * <p>A string that instructs Entity Resolution to combine several columns into a unified
915
+ * column with the identical attribute type. </p>
916
+ * <p>For example, when working with columns such as <code>first_name</code>,
917
+ * <code>middle_name</code>, and <code>last_name</code>, assigning them a common
918
+ * <code>groupName</code> will prompt Entity Resolution to concatenate them into a single
919
+ * value.</p>
641
920
  * @public
642
921
  */
643
922
  groupName?: string;
644
923
  /**
645
924
  * <p>A key that allows grouping of multiple input attributes into a unified matching group.
646
- * For example, let's consider a scenario where the source table contains various addresses,
647
- * such as <code>business_address</code> and <code>shipping_address</code>. By assigning the
648
- * <code>MatchKey</code>
649
- * <i>Address</i> to both attributes, Entity Resolution will match records
650
- * across these fields to create a consolidated matching group. If no <code>MatchKey</code> is
651
- * specified for a column, it won't be utilized for matching purposes but will still be
652
- * included in the output table.</p>
925
+ * For example, consider a scenario where the source table contains various addresses, such as
926
+ * <code>business_address</code> and <code>shipping_address</code>. By assigning a
927
+ * <code>matchKey</code> called <code>address</code> to both attributes, Entity Resolution
928
+ * will match records across these fields to create a consolidated matching group. If no
929
+ * <code>matchKey</code> is specified for a column, it won't be utilized for matching
930
+ * purposes but will still be included in the output table.</p>
653
931
  * @public
654
932
  */
655
933
  matchKey?: string;
@@ -735,6 +1013,26 @@ export interface DeleteIdMappingWorkflowOutput {
735
1013
  */
736
1014
  message: string | undefined;
737
1015
  }
1016
+ /**
1017
+ * @public
1018
+ */
1019
+ export interface DeleteIdNamespaceInput {
1020
+ /**
1021
+ * <p>The name of the ID namespace.</p>
1022
+ * @public
1023
+ */
1024
+ idNamespaceName: string | undefined;
1025
+ }
1026
+ /**
1027
+ * @public
1028
+ */
1029
+ export interface DeleteIdNamespaceOutput {
1030
+ /**
1031
+ * <p>A successful operation message.</p>
1032
+ * @public
1033
+ */
1034
+ message: string | undefined;
1035
+ }
738
1036
  /**
739
1037
  * @public
740
1038
  */
@@ -755,6 +1053,42 @@ export interface DeleteMatchingWorkflowOutput {
755
1053
  */
756
1054
  message: string | undefined;
757
1055
  }
1056
+ /**
1057
+ * @public
1058
+ */
1059
+ export interface DeletePolicyStatementInput {
1060
+ /**
1061
+ * <p>The ARN of the resource for which the policy need to be deleted.</p>
1062
+ * @public
1063
+ */
1064
+ arn: string | undefined;
1065
+ /**
1066
+ * <p>A statement identifier that differentiates the statement from others in the same
1067
+ * policy.</p>
1068
+ * @public
1069
+ */
1070
+ statementId: string | undefined;
1071
+ }
1072
+ /**
1073
+ * @public
1074
+ */
1075
+ export interface DeletePolicyStatementOutput {
1076
+ /**
1077
+ * <p>The ARN of the resource for which the policy need to be deleted.</p>
1078
+ * @public
1079
+ */
1080
+ arn: string | undefined;
1081
+ /**
1082
+ * <p>A unique identifier for the deleted policy.</p>
1083
+ * @public
1084
+ */
1085
+ token: string | undefined;
1086
+ /**
1087
+ * <p>The resource-based policy.</p>
1088
+ * @public
1089
+ */
1090
+ policy?: string;
1091
+ }
758
1092
  /**
759
1093
  * @public
760
1094
  */
@@ -823,6 +1157,31 @@ export interface IdMappingJobMetrics {
823
1157
  */
824
1158
  recordsNotProcessed?: number;
825
1159
  }
1160
+ /**
1161
+ * <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
1162
+ * <code>RoleARN</code>.</p>
1163
+ * @public
1164
+ */
1165
+ export interface IdMappingJobOutputSource {
1166
+ /**
1167
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1168
+ * this role to access Amazon Web Services resources on your behalf as part of workflow
1169
+ * execution.</p>
1170
+ * @public
1171
+ */
1172
+ roleArn: string | undefined;
1173
+ /**
1174
+ * <p>The S3 path to which Entity Resolution will write the output table.</p>
1175
+ * @public
1176
+ */
1177
+ outputS3Path: string | undefined;
1178
+ /**
1179
+ * <p>Customer KMS ARN for encryption at rest. If not provided, system will use
1180
+ * an Entity Resolution managed KMS key.</p>
1181
+ * @public
1182
+ */
1183
+ KMSArn?: string;
1184
+ }
826
1185
  /**
827
1186
  * @public
828
1187
  * @enum
@@ -872,19 +1231,11 @@ export interface GetIdMappingJobOutput {
872
1231
  * @public
873
1232
  */
874
1233
  errorDetails?: ErrorDetails;
875
- }
876
- /**
877
- * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
878
- * </p>
879
- * @public
880
- */
881
- export declare class ResourceNotFoundException extends __BaseException {
882
- readonly name: "ResourceNotFoundException";
883
- readonly $fault: "client";
884
1234
  /**
885
- * @internal
1235
+ * <p>A list of <code>OutputSource</code> objects.</p>
1236
+ * @public
886
1237
  */
887
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1238
+ outputSourceConfig?: IdMappingJobOutputSource[];
888
1239
  }
889
1240
  /**
890
1241
  * @public
@@ -927,29 +1278,104 @@ export interface GetIdMappingWorkflowOutput {
927
1278
  * <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
928
1279
  * @public
929
1280
  */
930
- outputSourceConfig: IdMappingWorkflowOutputSource[] | undefined;
1281
+ outputSourceConfig?: IdMappingWorkflowOutputSource[];
931
1282
  /**
932
1283
  * <p>An object which defines the <code>idMappingType</code> and the
933
1284
  * <code>providerProperties</code>.</p>
934
1285
  * @public
935
1286
  */
936
- idMappingTechniques: IdMappingTechniques | undefined;
1287
+ idMappingTechniques: IdMappingTechniques | undefined;
1288
+ /**
1289
+ * <p>The timestamp of when the workflow was created.</p>
1290
+ * @public
1291
+ */
1292
+ createdAt: Date | undefined;
1293
+ /**
1294
+ * <p>The timestamp of when the workflow was last updated.</p>
1295
+ * @public
1296
+ */
1297
+ updatedAt: Date | undefined;
1298
+ /**
1299
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1300
+ * this role to access Amazon Web Services resources on your behalf.</p>
1301
+ * @public
1302
+ */
1303
+ roleArn: string | undefined;
1304
+ /**
1305
+ * <p>The tags used to organize, track, or control access for this resource.</p>
1306
+ * @public
1307
+ */
1308
+ tags?: Record<string, string>;
1309
+ }
1310
+ /**
1311
+ * @public
1312
+ */
1313
+ export interface GetIdNamespaceInput {
1314
+ /**
1315
+ * <p>The name of the ID namespace.</p>
1316
+ * @public
1317
+ */
1318
+ idNamespaceName: string | undefined;
1319
+ }
1320
+ /**
1321
+ * @public
1322
+ */
1323
+ export interface GetIdNamespaceOutput {
1324
+ /**
1325
+ * <p>The name of the ID namespace.</p>
1326
+ * @public
1327
+ */
1328
+ idNamespaceName: string | undefined;
1329
+ /**
1330
+ * <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
1331
+ * @public
1332
+ */
1333
+ idNamespaceArn: string | undefined;
1334
+ /**
1335
+ * <p>The description of the ID namespace.</p>
1336
+ * @public
1337
+ */
1338
+ description?: string;
1339
+ /**
1340
+ * <p>A list of <code>InputSource</code> objects, which have the fields
1341
+ * <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
1342
+ * @public
1343
+ */
1344
+ inputSourceConfig?: IdNamespaceInputSource[];
1345
+ /**
1346
+ * <p>Determines the properties of <code>IdMappingWorkflow</code> where this
1347
+ * <code>IdNamespace</code> can be used as a <code>Source</code> or a
1348
+ * <code>Target</code>.</p>
1349
+ * @public
1350
+ */
1351
+ idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
1352
+ /**
1353
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
1354
+ * <code>TARGET</code>.</p>
1355
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
1356
+ * be processed in an ID mapping workflow. </p>
1357
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
1358
+ * <code>sourceIds</code> will resolve to.</p>
1359
+ * @public
1360
+ */
1361
+ type: IdNamespaceType | undefined;
1362
+ /**
1363
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1364
+ * this role to access the resources defined in this <code>IdNamespace</code> on your behalf
1365
+ * as part of a workflow run.</p>
1366
+ * @public
1367
+ */
1368
+ roleArn?: string;
937
1369
  /**
938
- * <p>The timestamp of when the workflow was created.</p>
1370
+ * <p>The timestamp of when the ID namespace was created.</p>
939
1371
  * @public
940
1372
  */
941
1373
  createdAt: Date | undefined;
942
1374
  /**
943
- * <p>The timestamp of when the workflow was last updated.</p>
1375
+ * <p>The timestamp of when the ID namespace was last updated.</p>
944
1376
  * @public
945
1377
  */
946
1378
  updatedAt: Date | undefined;
947
- /**
948
- * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
949
- * this role to access resources on your behalf.</p>
950
- * @public
951
- */
952
- roleArn: string | undefined;
953
1379
  /**
954
1380
  * <p>The tags used to organize, track, or control access for this resource.</p>
955
1381
  * @public
@@ -970,6 +1396,14 @@ export interface GetMatchIdInput {
970
1396
  * @public
971
1397
  */
972
1398
  record: Record<string, string> | undefined;
1399
+ /**
1400
+ * <p>Normalizes the attributes defined in the schema in the input data. For example, if an
1401
+ * attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in
1402
+ * the input table is in a format of 1234567890, Entity Resolution will normalize this field
1403
+ * in the output to (123)-456-7890.</p>
1404
+ * @public
1405
+ */
1406
+ applyNormalization?: boolean;
973
1407
  }
974
1408
  /**
975
1409
  * @public
@@ -980,6 +1414,11 @@ export interface GetMatchIdOutput {
980
1414
  * @public
981
1415
  */
982
1416
  matchId?: string;
1417
+ /**
1418
+ * <p>The rule the record matched on.</p>
1419
+ * @public
1420
+ */
1421
+ matchRule?: string;
983
1422
  }
984
1423
  /**
985
1424
  * @public
@@ -1023,6 +1462,31 @@ export interface JobMetrics {
1023
1462
  */
1024
1463
  matchIDs?: number;
1025
1464
  }
1465
+ /**
1466
+ * <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
1467
+ * <code>RoleArn</code>.</p>
1468
+ * @public
1469
+ */
1470
+ export interface JobOutputSource {
1471
+ /**
1472
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1473
+ * this role to access Amazon Web Services resources on your behalf as part of workflow
1474
+ * execution.</p>
1475
+ * @public
1476
+ */
1477
+ roleArn: string | undefined;
1478
+ /**
1479
+ * <p>The S3 path to which Entity Resolution will write the output table.</p>
1480
+ * @public
1481
+ */
1482
+ outputS3Path: string | undefined;
1483
+ /**
1484
+ * <p>Customer KMS ARN for encryption at rest. If not provided, system will use
1485
+ * an Entity Resolution managed KMS key.</p>
1486
+ * @public
1487
+ */
1488
+ KMSArn?: string;
1489
+ }
1026
1490
  /**
1027
1491
  * @public
1028
1492
  */
@@ -1058,6 +1522,11 @@ export interface GetMatchingJobOutput {
1058
1522
  * @public
1059
1523
  */
1060
1524
  errorDetails?: ErrorDetails;
1525
+ /**
1526
+ * <p>A list of <code>OutputSource</code> objects.</p>
1527
+ * @public
1528
+ */
1529
+ outputSourceConfig?: JobOutputSource[];
1061
1530
  }
1062
1531
  /**
1063
1532
  * @public
@@ -1126,7 +1595,7 @@ export interface GetMatchingWorkflowOutput {
1126
1595
  incrementalRunConfig?: IncrementalRunConfig;
1127
1596
  /**
1128
1597
  * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1129
- * this role to access resources on your behalf.</p>
1598
+ * this role to access Amazon Web Services resources on your behalf.</p>
1130
1599
  * @public
1131
1600
  */
1132
1601
  roleArn: string | undefined;
@@ -1136,6 +1605,37 @@ export interface GetMatchingWorkflowOutput {
1136
1605
  */
1137
1606
  tags?: Record<string, string>;
1138
1607
  }
1608
+ /**
1609
+ * @public
1610
+ */
1611
+ export interface GetPolicyInput {
1612
+ /**
1613
+ * <p>The Amazon Resource Name (ARN) of the resource for which the policy need to be
1614
+ * returned.</p>
1615
+ * @public
1616
+ */
1617
+ arn: string | undefined;
1618
+ }
1619
+ /**
1620
+ * @public
1621
+ */
1622
+ export interface GetPolicyOutput {
1623
+ /**
1624
+ * <p>The Entity Resolution resource ARN.</p>
1625
+ * @public
1626
+ */
1627
+ arn: string | undefined;
1628
+ /**
1629
+ * <p>A unique identifier for the current revision of the policy.</p>
1630
+ * @public
1631
+ */
1632
+ token: string | undefined;
1633
+ /**
1634
+ * <p>The resource-based policy.</p>
1635
+ * @public
1636
+ */
1637
+ policy?: string;
1638
+ }
1139
1639
  /**
1140
1640
  * @public
1141
1641
  */
@@ -1151,6 +1651,48 @@ export interface GetProviderServiceInput {
1151
1651
  */
1152
1652
  providerServiceName: string | undefined;
1153
1653
  }
1654
+ /**
1655
+ * <p>The provider schema attribute.</p>
1656
+ * @public
1657
+ */
1658
+ export interface ProviderSchemaAttribute {
1659
+ /**
1660
+ * <p>The field name.</p>
1661
+ * @public
1662
+ */
1663
+ fieldName: string | undefined;
1664
+ /**
1665
+ * <p>The type of the provider schema attribute.</p>
1666
+ * @public
1667
+ */
1668
+ type: SchemaAttributeType | undefined;
1669
+ /**
1670
+ * <p>The sub type of the provider schema attribute.</p>
1671
+ * @public
1672
+ */
1673
+ subType?: string;
1674
+ /**
1675
+ * <p>The hashing attribute of the provider schema.</p>
1676
+ * @public
1677
+ */
1678
+ hashing?: boolean;
1679
+ }
1680
+ /**
1681
+ * <p>The input schema supported by provider service.</p>
1682
+ * @public
1683
+ */
1684
+ export interface ProviderComponentSchema {
1685
+ /**
1686
+ * <p>Input schema for the provider service.</p>
1687
+ * @public
1688
+ */
1689
+ schemas?: string[][];
1690
+ /**
1691
+ * <p>The provider schema attributes.</p>
1692
+ * @public
1693
+ */
1694
+ providerSchemaAttributes?: ProviderSchemaAttribute[];
1695
+ }
1154
1696
  /**
1155
1697
  * <p>The identifiers of the provider service, from Data Exchange.</p>
1156
1698
  * @public
@@ -1207,6 +1749,27 @@ export declare namespace ProviderEndpointConfiguration {
1207
1749
  }
1208
1750
  const visit: <T>(value: ProviderEndpointConfiguration, visitor: Visitor<T>) => T;
1209
1751
  }
1752
+ /**
1753
+ * <p>The provider configuration required for different ID namespace types.</p>
1754
+ * @public
1755
+ */
1756
+ export interface ProviderIdNameSpaceConfiguration {
1757
+ /**
1758
+ * <p>The description of the ID namespace.</p>
1759
+ * @public
1760
+ */
1761
+ description?: string;
1762
+ /**
1763
+ * <p>Configurations required for the target ID namespace.</p>
1764
+ * @public
1765
+ */
1766
+ providerTargetConfigurationDefinition?: __DocumentType;
1767
+ /**
1768
+ * <p>Configurations required for the source ID namespace.</p>
1769
+ * @public
1770
+ */
1771
+ providerSourceConfigurationDefinition?: __DocumentType;
1772
+ }
1210
1773
  /**
1211
1774
  * <p>The required configuration fields to give intermediate access to a provider
1212
1775
  * service.</p>
@@ -1214,10 +1777,8 @@ export declare namespace ProviderEndpointConfiguration {
1214
1777
  */
1215
1778
  export interface ProviderIntermediateDataAccessConfiguration {
1216
1779
  /**
1217
- * <p>The Amazon Web Services account
1218
- * that
1219
- * provider can use to read or write data into the customer's intermediate S3
1220
- * bucket.</p>
1780
+ * <p>The Amazon Web Services account that provider can use to read or write data into the
1781
+ * customer's intermediate S3 bucket.</p>
1221
1782
  * @public
1222
1783
  */
1223
1784
  awsAccountIds?: string[];
@@ -1274,6 +1835,16 @@ export interface GetProviderServiceOutput {
1274
1835
  * @public
1275
1836
  */
1276
1837
  providerConfigurationDefinition?: __DocumentType;
1838
+ /**
1839
+ * <p>The provider configuration required for different ID namespace types.</p>
1840
+ * @public
1841
+ */
1842
+ providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration;
1843
+ /**
1844
+ * <p>Provider service job configurations.</p>
1845
+ * @public
1846
+ */
1847
+ providerJobConfiguration?: __DocumentType;
1277
1848
  /**
1278
1849
  * <p>The required configuration fields to use with the provider service.</p>
1279
1850
  * @public
@@ -1299,6 +1870,11 @@ export interface GetProviderServiceOutput {
1299
1870
  * @public
1300
1871
  */
1301
1872
  providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration;
1873
+ /**
1874
+ * <p>Input schema for the provider service.</p>
1875
+ * @public
1876
+ */
1877
+ providerComponentSchema?: ProviderComponentSchema;
1302
1878
  }
1303
1879
  /**
1304
1880
  * @public
@@ -1479,6 +2055,77 @@ export interface ListIdMappingWorkflowsOutput {
1479
2055
  */
1480
2056
  nextToken?: string;
1481
2057
  }
2058
+ /**
2059
+ * @public
2060
+ */
2061
+ export interface ListIdNamespacesInput {
2062
+ /**
2063
+ * <p>The pagination token from the previous API call.</p>
2064
+ * @public
2065
+ */
2066
+ nextToken?: string;
2067
+ /**
2068
+ * <p>The maximum number of <code>IdNamespace</code> objects returned per page.</p>
2069
+ * @public
2070
+ */
2071
+ maxResults?: number;
2072
+ }
2073
+ /**
2074
+ * <p>A summary of ID namespaces.</p>
2075
+ * @public
2076
+ */
2077
+ export interface IdNamespaceSummary {
2078
+ /**
2079
+ * <p>The name of the ID namespace.</p>
2080
+ * @public
2081
+ */
2082
+ idNamespaceName: string | undefined;
2083
+ /**
2084
+ * <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
2085
+ * @public
2086
+ */
2087
+ idNamespaceArn: string | undefined;
2088
+ /**
2089
+ * <p>The description of the ID namespace.</p>
2090
+ * @public
2091
+ */
2092
+ description?: string;
2093
+ /**
2094
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
2095
+ * <code>TARGET</code>.</p>
2096
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
2097
+ * be processed in an ID mapping workflow. </p>
2098
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
2099
+ * <code>sourceIds</code> will resolve to.</p>
2100
+ * @public
2101
+ */
2102
+ type: IdNamespaceType | undefined;
2103
+ /**
2104
+ * <p>The timestamp of when the ID namespace was created.</p>
2105
+ * @public
2106
+ */
2107
+ createdAt: Date | undefined;
2108
+ /**
2109
+ * <p>The timestamp of when the ID namespace was last updated.</p>
2110
+ * @public
2111
+ */
2112
+ updatedAt: Date | undefined;
2113
+ }
2114
+ /**
2115
+ * @public
2116
+ */
2117
+ export interface ListIdNamespacesOutput {
2118
+ /**
2119
+ * <p>A list of <code>IdNamespaceSummaries</code> objects.</p>
2120
+ * @public
2121
+ */
2122
+ idNamespaceSummaries?: IdNamespaceSummary[];
2123
+ /**
2124
+ * <p>The pagination token from the previous API call.</p>
2125
+ * @public
2126
+ */
2127
+ nextToken?: string;
2128
+ }
1482
2129
  /**
1483
2130
  * @public
1484
2131
  */
@@ -1736,6 +2383,47 @@ export interface ListTagsForResourceOutput {
1736
2383
  */
1737
2384
  tags: Record<string, string> | undefined;
1738
2385
  }
2386
+ /**
2387
+ * @public
2388
+ */
2389
+ export interface PutPolicyInput {
2390
+ /**
2391
+ * <p>The Amazon Resource Name (ARN) of the resource for which the policy needs to be
2392
+ * updated.</p>
2393
+ * @public
2394
+ */
2395
+ arn: string | undefined;
2396
+ /**
2397
+ * <p>A unique identifier for the current revision of the policy.</p>
2398
+ * @public
2399
+ */
2400
+ token?: string;
2401
+ /**
2402
+ * <p>The resource-based policy.</p>
2403
+ * @public
2404
+ */
2405
+ policy: string | undefined;
2406
+ }
2407
+ /**
2408
+ * @public
2409
+ */
2410
+ export interface PutPolicyOutput {
2411
+ /**
2412
+ * <p>The Entity Resolution resource ARN.</p>
2413
+ * @public
2414
+ */
2415
+ arn: string | undefined;
2416
+ /**
2417
+ * <p>A unique identifier for the current revision of the policy.</p>
2418
+ * @public
2419
+ */
2420
+ token: string | undefined;
2421
+ /**
2422
+ * <p>The resource-based policy.</p>
2423
+ * @public
2424
+ */
2425
+ policy?: string;
2426
+ }
1739
2427
  /**
1740
2428
  * @public
1741
2429
  */
@@ -1745,6 +2433,11 @@ export interface StartIdMappingJobInput {
1745
2433
  * @public
1746
2434
  */
1747
2435
  workflowName: string | undefined;
2436
+ /**
2437
+ * <p>A list of <code>OutputSource</code> objects.</p>
2438
+ * @public
2439
+ */
2440
+ outputSourceConfig?: IdMappingJobOutputSource[];
1748
2441
  }
1749
2442
  /**
1750
2443
  * @public
@@ -1755,6 +2448,11 @@ export interface StartIdMappingJobOutput {
1755
2448
  * @public
1756
2449
  */
1757
2450
  jobId: string | undefined;
2451
+ /**
2452
+ * <p>A list of <code>OutputSource</code> objects.</p>
2453
+ * @public
2454
+ */
2455
+ outputSourceConfig?: IdMappingJobOutputSource[];
1758
2456
  }
1759
2457
  /**
1760
2458
  * @public
@@ -1841,7 +2539,7 @@ export interface UpdateIdMappingWorkflowInput {
1841
2539
  * <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
1842
2540
  * @public
1843
2541
  */
1844
- outputSourceConfig: IdMappingWorkflowOutputSource[] | undefined;
2542
+ outputSourceConfig?: IdMappingWorkflowOutputSource[];
1845
2543
  /**
1846
2544
  * <p>An object which defines the <code>idMappingType</code> and the
1847
2545
  * <code>providerProperties</code>.</p>
@@ -1850,7 +2548,7 @@ export interface UpdateIdMappingWorkflowInput {
1850
2548
  idMappingTechniques: IdMappingTechniques | undefined;
1851
2549
  /**
1852
2550
  * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1853
- * this role to access resources on your behalf.</p>
2551
+ * this role to access Amazon Web Services resources on your behalf.</p>
1854
2552
  * @public
1855
2553
  */
1856
2554
  roleArn: string | undefined;
@@ -1866,7 +2564,7 @@ export interface UpdateIdMappingWorkflowOutput {
1866
2564
  workflowName: string | undefined;
1867
2565
  /**
1868
2566
  * <p>The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role
1869
- * to access resources on your behalf.</p>
2567
+ * to access Amazon Web Services resources on your behalf.</p>
1870
2568
  * @public
1871
2569
  */
1872
2570
  workflowArn: string | undefined;
@@ -1886,7 +2584,7 @@ export interface UpdateIdMappingWorkflowOutput {
1886
2584
  * <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
1887
2585
  * @public
1888
2586
  */
1889
- outputSourceConfig: IdMappingWorkflowOutputSource[] | undefined;
2587
+ outputSourceConfig?: IdMappingWorkflowOutputSource[];
1890
2588
  /**
1891
2589
  * <p>An object which defines the <code>idMappingType</code> and the
1892
2590
  * <code>providerProperties</code>.</p>
@@ -1895,11 +2593,106 @@ export interface UpdateIdMappingWorkflowOutput {
1895
2593
  idMappingTechniques: IdMappingTechniques | undefined;
1896
2594
  /**
1897
2595
  * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
1898
- * this role to access resources on your behalf.</p>
2596
+ * this role to access Amazon Web Services resources on your behalf.</p>
1899
2597
  * @public
1900
2598
  */
1901
2599
  roleArn: string | undefined;
1902
2600
  }
2601
+ /**
2602
+ * @public
2603
+ */
2604
+ export interface UpdateIdNamespaceInput {
2605
+ /**
2606
+ * <p>The name of the ID namespace.</p>
2607
+ * @public
2608
+ */
2609
+ idNamespaceName: string | undefined;
2610
+ /**
2611
+ * <p>The description of the ID namespace.</p>
2612
+ * @public
2613
+ */
2614
+ description?: string;
2615
+ /**
2616
+ * <p>A list of <code>InputSource</code> objects, which have the fields
2617
+ * <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
2618
+ * @public
2619
+ */
2620
+ inputSourceConfig?: IdNamespaceInputSource[];
2621
+ /**
2622
+ * <p>Determines the properties of <code>IdMappingWorkflow</code> where this
2623
+ * <code>IdNamespace</code> can be used as a <code>Source</code> or a
2624
+ * <code>Target</code>.</p>
2625
+ * @public
2626
+ */
2627
+ idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
2628
+ /**
2629
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
2630
+ * this role to access the resources defined in this <code>IdNamespace</code> on your behalf
2631
+ * as part of a workflow run.</p>
2632
+ * @public
2633
+ */
2634
+ roleArn?: string;
2635
+ }
2636
+ /**
2637
+ * @public
2638
+ */
2639
+ export interface UpdateIdNamespaceOutput {
2640
+ /**
2641
+ * <p>The name of the ID namespace.</p>
2642
+ * @public
2643
+ */
2644
+ idNamespaceName: string | undefined;
2645
+ /**
2646
+ * <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
2647
+ * @public
2648
+ */
2649
+ idNamespaceArn: string | undefined;
2650
+ /**
2651
+ * <p>The description of the ID namespace.</p>
2652
+ * @public
2653
+ */
2654
+ description?: string;
2655
+ /**
2656
+ * <p>A list of <code>InputSource</code> objects, which have the fields
2657
+ * <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
2658
+ * @public
2659
+ */
2660
+ inputSourceConfig?: IdNamespaceInputSource[];
2661
+ /**
2662
+ * <p>Determines the properties of <code>IdMappingWorkflow</code> where this
2663
+ * <code>IdNamespace</code> can be used as a <code>Source</code> or a
2664
+ * <code>Target</code>.</p>
2665
+ * @public
2666
+ */
2667
+ idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
2668
+ /**
2669
+ * <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
2670
+ * <code>TARGET</code>.</p>
2671
+ * <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
2672
+ * be processed in an ID mapping workflow. </p>
2673
+ * <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
2674
+ * <code>sourceIds</code> will resolve to.</p>
2675
+ * @public
2676
+ */
2677
+ type: IdNamespaceType | undefined;
2678
+ /**
2679
+ * <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
2680
+ * this role to access the resources defined in this <code>IdNamespace</code> on your behalf
2681
+ * as part of a workflow run.</p>
2682
+ * @public
2683
+ */
2684
+ roleArn?: string;
2685
+ /**
2686
+ * <p>The timestamp of when the ID namespace was created.</p>
2687
+ * @public
2688
+ */
2689
+ createdAt: Date | undefined;
2690
+ /**
2691
+ * <p>The timestamp of when the ID namespace was last updated.</p>
2692
+ * @public
2693
+ */
2694
+ updatedAt: Date | undefined;
2695
+ }
1903
2696
  /**
1904
2697
  * @public
1905
2698
  */