@aws-sdk/client-entityresolution 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +93 -92
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +92 -0
- package/dist-es/models/errors.js +93 -0
- package/dist-es/models/models_0.js +1 -185
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +228 -0
- package/dist-types/models/errors.d.ts +100 -0
- package/dist-types/models/models_0.d.ts +1 -328
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +121 -0
- package/dist-types/ts3.4/models/errors.d.ts +55 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -176
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,30 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
/**
|
|
5
|
-
* <p>You do not have sufficient access to perform this action. </p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
-
readonly name: "AccessDeniedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
* @enum
|
|
19
|
-
*/
|
|
20
|
-
export declare const StatementEffect: {
|
|
21
|
-
readonly Allow: "Allow";
|
|
22
|
-
readonly Deny: "Deny";
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* @public
|
|
26
|
-
*/
|
|
27
|
-
export type StatementEffect = (typeof StatementEffect)[keyof typeof StatementEffect];
|
|
2
|
+
import { AttributeMatchingModel, DeleteUniqueIdErrorType, DeleteUniqueIdStatus, IdMappingIncrementalRunType, IdMappingType, IdMappingWorkflowRuleDefinitionType, IdNamespaceType, IncrementalRunType, JobStatus, JobType, MatchPurpose, ProcessingType, RecordMatchingModel, ResolutionType, SchemaAttributeType, ServiceType, StatementEffect } from "./enums";
|
|
28
3
|
/**
|
|
29
4
|
* @public
|
|
30
5
|
*/
|
|
@@ -80,82 +55,6 @@ export interface AddPolicyStatementOutput {
|
|
|
80
55
|
*/
|
|
81
56
|
policy?: string | undefined;
|
|
82
57
|
}
|
|
83
|
-
/**
|
|
84
|
-
* <p>The request couldn't be processed because of conflict in the current state of the resource. Example: Workflow already exists, Schema already exists, Workflow is currently running, etc. </p>
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
export declare class ConflictException extends __BaseException {
|
|
88
|
-
readonly name: "ConflictException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. </p>
|
|
97
|
-
* @public
|
|
98
|
-
*/
|
|
99
|
-
export declare class InternalServerException extends __BaseException {
|
|
100
|
-
readonly name: "InternalServerException";
|
|
101
|
-
readonly $fault: "server";
|
|
102
|
-
$retryable: {};
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
* <p>The resource couldn't be found. </p>
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
113
|
-
readonly name: "ResourceNotFoundException";
|
|
114
|
-
readonly $fault: "client";
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* <p>The request was denied due to request throttling. </p>
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
export declare class ThrottlingException extends __BaseException {
|
|
125
|
-
readonly name: "ThrottlingException";
|
|
126
|
-
readonly $fault: "client";
|
|
127
|
-
$retryable: {
|
|
128
|
-
throttling: boolean;
|
|
129
|
-
};
|
|
130
|
-
/**
|
|
131
|
-
* @internal
|
|
132
|
-
*/
|
|
133
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
137
|
-
* @public
|
|
138
|
-
*/
|
|
139
|
-
export declare class ValidationException extends __BaseException {
|
|
140
|
-
readonly name: "ValidationException";
|
|
141
|
-
readonly $fault: "client";
|
|
142
|
-
/**
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
145
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
146
|
-
}
|
|
147
|
-
/**
|
|
148
|
-
* @public
|
|
149
|
-
* @enum
|
|
150
|
-
*/
|
|
151
|
-
export declare const AttributeMatchingModel: {
|
|
152
|
-
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
153
|
-
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
154
|
-
};
|
|
155
|
-
/**
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
export type AttributeMatchingModel = (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
159
58
|
/**
|
|
160
59
|
* @public
|
|
161
60
|
*/
|
|
@@ -187,18 +86,6 @@ export interface DeletedUniqueId {
|
|
|
187
86
|
*/
|
|
188
87
|
uniqueId: string | undefined;
|
|
189
88
|
}
|
|
190
|
-
/**
|
|
191
|
-
* @public
|
|
192
|
-
* @enum
|
|
193
|
-
*/
|
|
194
|
-
export declare const DeleteUniqueIdErrorType: {
|
|
195
|
-
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
196
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
197
|
-
};
|
|
198
|
-
/**
|
|
199
|
-
* @public
|
|
200
|
-
*/
|
|
201
|
-
export type DeleteUniqueIdErrorType = (typeof DeleteUniqueIdErrorType)[keyof typeof DeleteUniqueIdErrorType];
|
|
202
89
|
/**
|
|
203
90
|
* <p>The error information provided when the delete unique ID operation doesn't complete.</p>
|
|
204
91
|
* @public
|
|
@@ -215,18 +102,6 @@ export interface DeleteUniqueIdError {
|
|
|
215
102
|
*/
|
|
216
103
|
errorType: DeleteUniqueIdErrorType | undefined;
|
|
217
104
|
}
|
|
218
|
-
/**
|
|
219
|
-
* @public
|
|
220
|
-
* @enum
|
|
221
|
-
*/
|
|
222
|
-
export declare const DeleteUniqueIdStatus: {
|
|
223
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
224
|
-
readonly COMPLETED: "COMPLETED";
|
|
225
|
-
};
|
|
226
|
-
/**
|
|
227
|
-
* @public
|
|
228
|
-
*/
|
|
229
|
-
export type DeleteUniqueIdStatus = (typeof DeleteUniqueIdStatus)[keyof typeof DeleteUniqueIdStatus];
|
|
230
105
|
/**
|
|
231
106
|
* @public
|
|
232
107
|
*/
|
|
@@ -252,18 +127,6 @@ export interface BatchDeleteUniqueIdOutput {
|
|
|
252
127
|
*/
|
|
253
128
|
disconnectedUniqueIds: string[] | undefined;
|
|
254
129
|
}
|
|
255
|
-
/**
|
|
256
|
-
* @public
|
|
257
|
-
* @enum
|
|
258
|
-
*/
|
|
259
|
-
export declare const IdMappingType: {
|
|
260
|
-
readonly PROVIDER: "PROVIDER";
|
|
261
|
-
readonly RULE_BASED: "RULE_BASED";
|
|
262
|
-
};
|
|
263
|
-
/**
|
|
264
|
-
* @public
|
|
265
|
-
*/
|
|
266
|
-
export type IdMappingType = (typeof IdMappingType)[keyof typeof IdMappingType];
|
|
267
130
|
/**
|
|
268
131
|
* <p>The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.</p>
|
|
269
132
|
* @public
|
|
@@ -296,30 +159,6 @@ export interface ProviderProperties {
|
|
|
296
159
|
*/
|
|
297
160
|
intermediateSourceConfiguration?: IntermediateSourceConfiguration | undefined;
|
|
298
161
|
}
|
|
299
|
-
/**
|
|
300
|
-
* @public
|
|
301
|
-
* @enum
|
|
302
|
-
*/
|
|
303
|
-
export declare const RecordMatchingModel: {
|
|
304
|
-
readonly MANY_SOURCE_TO_ONE_TARGET: "MANY_SOURCE_TO_ONE_TARGET";
|
|
305
|
-
readonly ONE_SOURCE_TO_ONE_TARGET: "ONE_SOURCE_TO_ONE_TARGET";
|
|
306
|
-
};
|
|
307
|
-
/**
|
|
308
|
-
* @public
|
|
309
|
-
*/
|
|
310
|
-
export type RecordMatchingModel = (typeof RecordMatchingModel)[keyof typeof RecordMatchingModel];
|
|
311
|
-
/**
|
|
312
|
-
* @public
|
|
313
|
-
* @enum
|
|
314
|
-
*/
|
|
315
|
-
export declare const IdMappingWorkflowRuleDefinitionType: {
|
|
316
|
-
readonly SOURCE: "SOURCE";
|
|
317
|
-
readonly TARGET: "TARGET";
|
|
318
|
-
};
|
|
319
|
-
/**
|
|
320
|
-
* @public
|
|
321
|
-
*/
|
|
322
|
-
export type IdMappingWorkflowRuleDefinitionType = (typeof IdMappingWorkflowRuleDefinitionType)[keyof typeof IdMappingWorkflowRuleDefinitionType];
|
|
323
162
|
/**
|
|
324
163
|
* <p>An object containing the <code>ruleName</code> and <code>matchingKeys</code>.</p>
|
|
325
164
|
* @public
|
|
@@ -383,17 +222,6 @@ export interface IdMappingTechniques {
|
|
|
383
222
|
*/
|
|
384
223
|
providerProperties?: ProviderProperties | undefined;
|
|
385
224
|
}
|
|
386
|
-
/**
|
|
387
|
-
* @public
|
|
388
|
-
* @enum
|
|
389
|
-
*/
|
|
390
|
-
export declare const IdMappingIncrementalRunType: {
|
|
391
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
392
|
-
};
|
|
393
|
-
/**
|
|
394
|
-
* @public
|
|
395
|
-
*/
|
|
396
|
-
export type IdMappingIncrementalRunType = (typeof IdMappingIncrementalRunType)[keyof typeof IdMappingIncrementalRunType];
|
|
397
225
|
/**
|
|
398
226
|
* <p> Incremental run configuration for an ID mapping workflow.</p>
|
|
399
227
|
* @public
|
|
@@ -405,18 +233,6 @@ export interface IdMappingIncrementalRunConfig {
|
|
|
405
233
|
*/
|
|
406
234
|
incrementalRunType?: IdMappingIncrementalRunType | undefined;
|
|
407
235
|
}
|
|
408
|
-
/**
|
|
409
|
-
* @public
|
|
410
|
-
* @enum
|
|
411
|
-
*/
|
|
412
|
-
export declare const IdNamespaceType: {
|
|
413
|
-
readonly SOURCE: "SOURCE";
|
|
414
|
-
readonly TARGET: "TARGET";
|
|
415
|
-
};
|
|
416
|
-
/**
|
|
417
|
-
* @public
|
|
418
|
-
*/
|
|
419
|
-
export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
420
236
|
/**
|
|
421
237
|
* <p>An object containing <code>inputSourceARN</code>, <code>schemaName</code>, and <code>type</code>.</p>
|
|
422
238
|
* @public
|
|
@@ -544,28 +360,6 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
544
360
|
*/
|
|
545
361
|
roleArn?: string | undefined;
|
|
546
362
|
}
|
|
547
|
-
/**
|
|
548
|
-
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits. The error message describes the limit exceeded. </p>
|
|
549
|
-
* @public
|
|
550
|
-
*/
|
|
551
|
-
export declare class ExceedsLimitException extends __BaseException {
|
|
552
|
-
readonly name: "ExceedsLimitException";
|
|
553
|
-
readonly $fault: "client";
|
|
554
|
-
/**
|
|
555
|
-
* <p>The name of the quota that has been breached.</p>
|
|
556
|
-
* @public
|
|
557
|
-
*/
|
|
558
|
-
quotaName?: string | undefined;
|
|
559
|
-
/**
|
|
560
|
-
* <p>The current quota value for the customers.</p>
|
|
561
|
-
* @public
|
|
562
|
-
*/
|
|
563
|
-
quotaValue?: number | undefined;
|
|
564
|
-
/**
|
|
565
|
-
* @internal
|
|
566
|
-
*/
|
|
567
|
-
constructor(opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>);
|
|
568
|
-
}
|
|
569
363
|
/**
|
|
570
364
|
* <p>An object containing <code>providerConfiguration</code> and <code>providerServiceArn</code>.</p>
|
|
571
365
|
* @public
|
|
@@ -740,17 +534,6 @@ export interface CreateIdNamespaceOutput {
|
|
|
740
534
|
*/
|
|
741
535
|
tags?: Record<string, string> | undefined;
|
|
742
536
|
}
|
|
743
|
-
/**
|
|
744
|
-
* @public
|
|
745
|
-
* @enum
|
|
746
|
-
*/
|
|
747
|
-
export declare const IncrementalRunType: {
|
|
748
|
-
readonly IMMEDIATE: "IMMEDIATE";
|
|
749
|
-
};
|
|
750
|
-
/**
|
|
751
|
-
* @public
|
|
752
|
-
*/
|
|
753
|
-
export type IncrementalRunType = (typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
754
537
|
/**
|
|
755
538
|
* <p>Optional. An object that defines the incremental run type. This object contains only the <code>incrementalRunType</code> field, which appears as "Automatic" in the console. </p> <important> <p>For workflows where <code>resolutionType</code> is <code>ML_MATCHING</code> or <code>PROVIDER</code>, incremental processing is not supported. </p> </important>
|
|
756
539
|
* @public
|
|
@@ -825,31 +608,6 @@ export interface OutputSource {
|
|
|
825
608
|
*/
|
|
826
609
|
applyNormalization?: boolean | undefined;
|
|
827
610
|
}
|
|
828
|
-
/**
|
|
829
|
-
* @public
|
|
830
|
-
* @enum
|
|
831
|
-
*/
|
|
832
|
-
export declare const ResolutionType: {
|
|
833
|
-
readonly ML_MATCHING: "ML_MATCHING";
|
|
834
|
-
readonly PROVIDER: "PROVIDER";
|
|
835
|
-
readonly RULE_MATCHING: "RULE_MATCHING";
|
|
836
|
-
};
|
|
837
|
-
/**
|
|
838
|
-
* @public
|
|
839
|
-
*/
|
|
840
|
-
export type ResolutionType = (typeof ResolutionType)[keyof typeof ResolutionType];
|
|
841
|
-
/**
|
|
842
|
-
* @public
|
|
843
|
-
* @enum
|
|
844
|
-
*/
|
|
845
|
-
export declare const MatchPurpose: {
|
|
846
|
-
readonly IDENTIFIER_GENERATION: "IDENTIFIER_GENERATION";
|
|
847
|
-
readonly INDEXING: "INDEXING";
|
|
848
|
-
};
|
|
849
|
-
/**
|
|
850
|
-
* @public
|
|
851
|
-
*/
|
|
852
|
-
export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
853
611
|
/**
|
|
854
612
|
* <p>An object which defines the list of matching rules to run in a matching workflow. </p>
|
|
855
613
|
* @public
|
|
@@ -1014,39 +772,6 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
1014
772
|
*/
|
|
1015
773
|
roleArn: string | undefined;
|
|
1016
774
|
}
|
|
1017
|
-
/**
|
|
1018
|
-
* @public
|
|
1019
|
-
* @enum
|
|
1020
|
-
*/
|
|
1021
|
-
export declare const SchemaAttributeType: {
|
|
1022
|
-
readonly ADDRESS: "ADDRESS";
|
|
1023
|
-
readonly ADDRESS_CITY: "ADDRESS_CITY";
|
|
1024
|
-
readonly ADDRESS_COUNTRY: "ADDRESS_COUNTRY";
|
|
1025
|
-
readonly ADDRESS_POSTALCODE: "ADDRESS_POSTALCODE";
|
|
1026
|
-
readonly ADDRESS_STATE: "ADDRESS_STATE";
|
|
1027
|
-
readonly ADDRESS_STREET1: "ADDRESS_STREET1";
|
|
1028
|
-
readonly ADDRESS_STREET2: "ADDRESS_STREET2";
|
|
1029
|
-
readonly ADDRESS_STREET3: "ADDRESS_STREET3";
|
|
1030
|
-
readonly DATE: "DATE";
|
|
1031
|
-
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
1032
|
-
readonly IPV4: "IPV4";
|
|
1033
|
-
readonly IPV6: "IPV6";
|
|
1034
|
-
readonly MAID: "MAID";
|
|
1035
|
-
readonly NAME: "NAME";
|
|
1036
|
-
readonly NAME_FIRST: "NAME_FIRST";
|
|
1037
|
-
readonly NAME_LAST: "NAME_LAST";
|
|
1038
|
-
readonly NAME_MIDDLE: "NAME_MIDDLE";
|
|
1039
|
-
readonly PHONE: "PHONE";
|
|
1040
|
-
readonly PHONE_COUNTRYCODE: "PHONE_COUNTRYCODE";
|
|
1041
|
-
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
1042
|
-
readonly PROVIDER_ID: "PROVIDER_ID";
|
|
1043
|
-
readonly STRING: "STRING";
|
|
1044
|
-
readonly UNIQUE_ID: "UNIQUE_ID";
|
|
1045
|
-
};
|
|
1046
|
-
/**
|
|
1047
|
-
* @public
|
|
1048
|
-
*/
|
|
1049
|
-
export type SchemaAttributeType = (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
1050
775
|
/**
|
|
1051
776
|
* <p>A configuration object for defining input data fields in Entity Resolution. The <code>SchemaInputAttribute</code> specifies how individual fields in your input data should be processed and matched.</p>
|
|
1052
777
|
* @public
|
|
@@ -1248,19 +973,6 @@ export interface DeleteSchemaMappingOutput {
|
|
|
1248
973
|
*/
|
|
1249
974
|
message: string | undefined;
|
|
1250
975
|
}
|
|
1251
|
-
/**
|
|
1252
|
-
* @public
|
|
1253
|
-
* @enum
|
|
1254
|
-
*/
|
|
1255
|
-
export declare const ProcessingType: {
|
|
1256
|
-
readonly CONSISTENT: "CONSISTENT";
|
|
1257
|
-
readonly EVENTUAL: "EVENTUAL";
|
|
1258
|
-
readonly EVENTUAL_NO_LOOKUP: "EVENTUAL_NO_LOOKUP";
|
|
1259
|
-
};
|
|
1260
|
-
/**
|
|
1261
|
-
* @public
|
|
1262
|
-
*/
|
|
1263
|
-
export type ProcessingType = (typeof ProcessingType)[keyof typeof ProcessingType];
|
|
1264
976
|
/**
|
|
1265
977
|
* <p> The record.</p>
|
|
1266
978
|
* @public
|
|
@@ -1401,19 +1113,6 @@ export interface ErrorDetails {
|
|
|
1401
1113
|
*/
|
|
1402
1114
|
errorMessage?: string | undefined;
|
|
1403
1115
|
}
|
|
1404
|
-
/**
|
|
1405
|
-
* @public
|
|
1406
|
-
* @enum
|
|
1407
|
-
*/
|
|
1408
|
-
export declare const JobType: {
|
|
1409
|
-
readonly BATCH: "BATCH";
|
|
1410
|
-
readonly DELETE_ONLY: "DELETE_ONLY";
|
|
1411
|
-
readonly INCREMENTAL: "INCREMENTAL";
|
|
1412
|
-
};
|
|
1413
|
-
/**
|
|
1414
|
-
* @public
|
|
1415
|
-
*/
|
|
1416
|
-
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
1417
1116
|
/**
|
|
1418
1117
|
* <p>An object that contains metrics about an ID mapping job, including counts of input records, processed records, and mapped records between source and target identifiers. </p>
|
|
1419
1118
|
* @public
|
|
@@ -1516,20 +1215,6 @@ export interface IdMappingJobOutputSource {
|
|
|
1516
1215
|
*/
|
|
1517
1216
|
KMSArn?: string | undefined;
|
|
1518
1217
|
}
|
|
1519
|
-
/**
|
|
1520
|
-
* @public
|
|
1521
|
-
* @enum
|
|
1522
|
-
*/
|
|
1523
|
-
export declare const JobStatus: {
|
|
1524
|
-
readonly FAILED: "FAILED";
|
|
1525
|
-
readonly QUEUED: "QUEUED";
|
|
1526
|
-
readonly RUNNING: "RUNNING";
|
|
1527
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1528
|
-
};
|
|
1529
|
-
/**
|
|
1530
|
-
* @public
|
|
1531
|
-
*/
|
|
1532
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
1533
1218
|
/**
|
|
1534
1219
|
* @public
|
|
1535
1220
|
*/
|
|
@@ -2105,18 +1790,6 @@ export interface ProviderIntermediateDataAccessConfiguration {
|
|
|
2105
1790
|
*/
|
|
2106
1791
|
requiredBucketActions?: string[] | undefined;
|
|
2107
1792
|
}
|
|
2108
|
-
/**
|
|
2109
|
-
* @public
|
|
2110
|
-
* @enum
|
|
2111
|
-
*/
|
|
2112
|
-
export declare const ServiceType: {
|
|
2113
|
-
readonly ASSIGNMENT: "ASSIGNMENT";
|
|
2114
|
-
readonly ID_MAPPING: "ID_MAPPING";
|
|
2115
|
-
};
|
|
2116
|
-
/**
|
|
2117
|
-
* @public
|
|
2118
|
-
*/
|
|
2119
|
-
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
2120
1793
|
/**
|
|
2121
1794
|
* @public
|
|
2122
1795
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { EntityResolutionExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { EntityResolutionServiceException } from "./models/EntityResolutionServiceException";
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export declare const StatementEffect: {
|
|
2
|
+
readonly Allow: "Allow";
|
|
3
|
+
readonly Deny: "Deny";
|
|
4
|
+
};
|
|
5
|
+
export type StatementEffect =
|
|
6
|
+
(typeof StatementEffect)[keyof typeof StatementEffect];
|
|
7
|
+
export declare const AttributeMatchingModel: {
|
|
8
|
+
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
9
|
+
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
10
|
+
};
|
|
11
|
+
export type AttributeMatchingModel =
|
|
12
|
+
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
13
|
+
export declare const DeleteUniqueIdErrorType: {
|
|
14
|
+
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
15
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
16
|
+
};
|
|
17
|
+
export type DeleteUniqueIdErrorType =
|
|
18
|
+
(typeof DeleteUniqueIdErrorType)[keyof typeof DeleteUniqueIdErrorType];
|
|
19
|
+
export declare const DeleteUniqueIdStatus: {
|
|
20
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
21
|
+
readonly COMPLETED: "COMPLETED";
|
|
22
|
+
};
|
|
23
|
+
export type DeleteUniqueIdStatus =
|
|
24
|
+
(typeof DeleteUniqueIdStatus)[keyof typeof DeleteUniqueIdStatus];
|
|
25
|
+
export declare const IdMappingType: {
|
|
26
|
+
readonly PROVIDER: "PROVIDER";
|
|
27
|
+
readonly RULE_BASED: "RULE_BASED";
|
|
28
|
+
};
|
|
29
|
+
export type IdMappingType = (typeof IdMappingType)[keyof typeof IdMappingType];
|
|
30
|
+
export declare const RecordMatchingModel: {
|
|
31
|
+
readonly MANY_SOURCE_TO_ONE_TARGET: "MANY_SOURCE_TO_ONE_TARGET";
|
|
32
|
+
readonly ONE_SOURCE_TO_ONE_TARGET: "ONE_SOURCE_TO_ONE_TARGET";
|
|
33
|
+
};
|
|
34
|
+
export type RecordMatchingModel =
|
|
35
|
+
(typeof RecordMatchingModel)[keyof typeof RecordMatchingModel];
|
|
36
|
+
export declare const IdMappingWorkflowRuleDefinitionType: {
|
|
37
|
+
readonly SOURCE: "SOURCE";
|
|
38
|
+
readonly TARGET: "TARGET";
|
|
39
|
+
};
|
|
40
|
+
export type IdMappingWorkflowRuleDefinitionType =
|
|
41
|
+
(typeof IdMappingWorkflowRuleDefinitionType)[keyof typeof IdMappingWorkflowRuleDefinitionType];
|
|
42
|
+
export declare const IdMappingIncrementalRunType: {
|
|
43
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
44
|
+
};
|
|
45
|
+
export type IdMappingIncrementalRunType =
|
|
46
|
+
(typeof IdMappingIncrementalRunType)[keyof typeof IdMappingIncrementalRunType];
|
|
47
|
+
export declare const IdNamespaceType: {
|
|
48
|
+
readonly SOURCE: "SOURCE";
|
|
49
|
+
readonly TARGET: "TARGET";
|
|
50
|
+
};
|
|
51
|
+
export type IdNamespaceType =
|
|
52
|
+
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
53
|
+
export declare const IncrementalRunType: {
|
|
54
|
+
readonly IMMEDIATE: "IMMEDIATE";
|
|
55
|
+
};
|
|
56
|
+
export type IncrementalRunType =
|
|
57
|
+
(typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
58
|
+
export declare const ResolutionType: {
|
|
59
|
+
readonly ML_MATCHING: "ML_MATCHING";
|
|
60
|
+
readonly PROVIDER: "PROVIDER";
|
|
61
|
+
readonly RULE_MATCHING: "RULE_MATCHING";
|
|
62
|
+
};
|
|
63
|
+
export type ResolutionType =
|
|
64
|
+
(typeof ResolutionType)[keyof typeof ResolutionType];
|
|
65
|
+
export declare const MatchPurpose: {
|
|
66
|
+
readonly IDENTIFIER_GENERATION: "IDENTIFIER_GENERATION";
|
|
67
|
+
readonly INDEXING: "INDEXING";
|
|
68
|
+
};
|
|
69
|
+
export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
70
|
+
export declare const SchemaAttributeType: {
|
|
71
|
+
readonly ADDRESS: "ADDRESS";
|
|
72
|
+
readonly ADDRESS_CITY: "ADDRESS_CITY";
|
|
73
|
+
readonly ADDRESS_COUNTRY: "ADDRESS_COUNTRY";
|
|
74
|
+
readonly ADDRESS_POSTALCODE: "ADDRESS_POSTALCODE";
|
|
75
|
+
readonly ADDRESS_STATE: "ADDRESS_STATE";
|
|
76
|
+
readonly ADDRESS_STREET1: "ADDRESS_STREET1";
|
|
77
|
+
readonly ADDRESS_STREET2: "ADDRESS_STREET2";
|
|
78
|
+
readonly ADDRESS_STREET3: "ADDRESS_STREET3";
|
|
79
|
+
readonly DATE: "DATE";
|
|
80
|
+
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
81
|
+
readonly IPV4: "IPV4";
|
|
82
|
+
readonly IPV6: "IPV6";
|
|
83
|
+
readonly MAID: "MAID";
|
|
84
|
+
readonly NAME: "NAME";
|
|
85
|
+
readonly NAME_FIRST: "NAME_FIRST";
|
|
86
|
+
readonly NAME_LAST: "NAME_LAST";
|
|
87
|
+
readonly NAME_MIDDLE: "NAME_MIDDLE";
|
|
88
|
+
readonly PHONE: "PHONE";
|
|
89
|
+
readonly PHONE_COUNTRYCODE: "PHONE_COUNTRYCODE";
|
|
90
|
+
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
91
|
+
readonly PROVIDER_ID: "PROVIDER_ID";
|
|
92
|
+
readonly STRING: "STRING";
|
|
93
|
+
readonly UNIQUE_ID: "UNIQUE_ID";
|
|
94
|
+
};
|
|
95
|
+
export type SchemaAttributeType =
|
|
96
|
+
(typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
97
|
+
export declare const ProcessingType: {
|
|
98
|
+
readonly CONSISTENT: "CONSISTENT";
|
|
99
|
+
readonly EVENTUAL: "EVENTUAL";
|
|
100
|
+
readonly EVENTUAL_NO_LOOKUP: "EVENTUAL_NO_LOOKUP";
|
|
101
|
+
};
|
|
102
|
+
export type ProcessingType =
|
|
103
|
+
(typeof ProcessingType)[keyof typeof ProcessingType];
|
|
104
|
+
export declare const JobType: {
|
|
105
|
+
readonly BATCH: "BATCH";
|
|
106
|
+
readonly DELETE_ONLY: "DELETE_ONLY";
|
|
107
|
+
readonly INCREMENTAL: "INCREMENTAL";
|
|
108
|
+
};
|
|
109
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
110
|
+
export declare const JobStatus: {
|
|
111
|
+
readonly FAILED: "FAILED";
|
|
112
|
+
readonly QUEUED: "QUEUED";
|
|
113
|
+
readonly RUNNING: "RUNNING";
|
|
114
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
115
|
+
};
|
|
116
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
117
|
+
export declare const ServiceType: {
|
|
118
|
+
readonly ASSIGNMENT: "ASSIGNMENT";
|
|
119
|
+
readonly ID_MAPPING: "ID_MAPPING";
|
|
120
|
+
};
|
|
121
|
+
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EntityResolutionServiceException as __BaseException } from "./EntityResolutionServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
export declare class InternalServerException extends __BaseException {
|
|
16
|
+
readonly name: "InternalServerException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
$retryable: {};
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
24
|
+
readonly name: "ResourceNotFoundException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export declare class ThrottlingException extends __BaseException {
|
|
31
|
+
readonly name: "ThrottlingException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
$retryable: {
|
|
34
|
+
throttling: boolean;
|
|
35
|
+
};
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class ValidationException extends __BaseException {
|
|
41
|
+
readonly name: "ValidationException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
export declare class ExceedsLimitException extends __BaseException {
|
|
48
|
+
readonly name: "ExceedsLimitException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
quotaName?: string | undefined;
|
|
51
|
+
quotaValue?: number | undefined;
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
54
|
+
);
|
|
55
|
+
}
|