@aws-sdk/client-entityresolution 3.933.0 → 3.935.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 +12 -12
- 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,19 +1,23 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
import {
|
|
3
|
+
AttributeMatchingModel,
|
|
4
|
+
DeleteUniqueIdErrorType,
|
|
5
|
+
DeleteUniqueIdStatus,
|
|
6
|
+
IdMappingIncrementalRunType,
|
|
7
|
+
IdMappingType,
|
|
8
|
+
IdMappingWorkflowRuleDefinitionType,
|
|
9
|
+
IdNamespaceType,
|
|
10
|
+
IncrementalRunType,
|
|
11
|
+
JobStatus,
|
|
12
|
+
JobType,
|
|
13
|
+
MatchPurpose,
|
|
14
|
+
ProcessingType,
|
|
15
|
+
RecordMatchingModel,
|
|
16
|
+
ResolutionType,
|
|
17
|
+
SchemaAttributeType,
|
|
18
|
+
ServiceType,
|
|
19
|
+
StatementEffect,
|
|
20
|
+
} from "./enums";
|
|
17
21
|
export interface AddPolicyStatementInput {
|
|
18
22
|
arn: string | undefined;
|
|
19
23
|
statementId: string | undefined;
|
|
@@ -27,49 +31,6 @@ export interface AddPolicyStatementOutput {
|
|
|
27
31
|
token: string | undefined;
|
|
28
32
|
policy?: string | undefined;
|
|
29
33
|
}
|
|
30
|
-
export declare class ConflictException extends __BaseException {
|
|
31
|
-
readonly name: "ConflictException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
34
|
-
}
|
|
35
|
-
export declare class InternalServerException extends __BaseException {
|
|
36
|
-
readonly name: "InternalServerException";
|
|
37
|
-
readonly $fault: "server";
|
|
38
|
-
$retryable: {};
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
41
|
-
);
|
|
42
|
-
}
|
|
43
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
-
readonly name: "ResourceNotFoundException";
|
|
45
|
-
readonly $fault: "client";
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
48
|
-
);
|
|
49
|
-
}
|
|
50
|
-
export declare class ThrottlingException extends __BaseException {
|
|
51
|
-
readonly name: "ThrottlingException";
|
|
52
|
-
readonly $fault: "client";
|
|
53
|
-
$retryable: {
|
|
54
|
-
throttling: boolean;
|
|
55
|
-
};
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
export declare class ValidationException extends __BaseException {
|
|
61
|
-
readonly name: "ValidationException";
|
|
62
|
-
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
|
-
export declare const AttributeMatchingModel: {
|
|
68
|
-
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
69
|
-
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
70
|
-
};
|
|
71
|
-
export type AttributeMatchingModel =
|
|
72
|
-
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
73
34
|
export interface BatchDeleteUniqueIdInput {
|
|
74
35
|
workflowName: string | undefined;
|
|
75
36
|
inputSource?: string | undefined;
|
|
@@ -78,33 +39,16 @@ export interface BatchDeleteUniqueIdInput {
|
|
|
78
39
|
export interface DeletedUniqueId {
|
|
79
40
|
uniqueId: string | undefined;
|
|
80
41
|
}
|
|
81
|
-
export declare const DeleteUniqueIdErrorType: {
|
|
82
|
-
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
83
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
84
|
-
};
|
|
85
|
-
export type DeleteUniqueIdErrorType =
|
|
86
|
-
(typeof DeleteUniqueIdErrorType)[keyof typeof DeleteUniqueIdErrorType];
|
|
87
42
|
export interface DeleteUniqueIdError {
|
|
88
43
|
uniqueId: string | undefined;
|
|
89
44
|
errorType: DeleteUniqueIdErrorType | undefined;
|
|
90
45
|
}
|
|
91
|
-
export declare const DeleteUniqueIdStatus: {
|
|
92
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
93
|
-
readonly COMPLETED: "COMPLETED";
|
|
94
|
-
};
|
|
95
|
-
export type DeleteUniqueIdStatus =
|
|
96
|
-
(typeof DeleteUniqueIdStatus)[keyof typeof DeleteUniqueIdStatus];
|
|
97
46
|
export interface BatchDeleteUniqueIdOutput {
|
|
98
47
|
status: DeleteUniqueIdStatus | undefined;
|
|
99
48
|
errors: DeleteUniqueIdError[] | undefined;
|
|
100
49
|
deleted: DeletedUniqueId[] | undefined;
|
|
101
50
|
disconnectedUniqueIds: string[] | undefined;
|
|
102
51
|
}
|
|
103
|
-
export declare const IdMappingType: {
|
|
104
|
-
readonly PROVIDER: "PROVIDER";
|
|
105
|
-
readonly RULE_BASED: "RULE_BASED";
|
|
106
|
-
};
|
|
107
|
-
export type IdMappingType = (typeof IdMappingType)[keyof typeof IdMappingType];
|
|
108
52
|
export interface IntermediateSourceConfiguration {
|
|
109
53
|
intermediateS3Path: string | undefined;
|
|
110
54
|
}
|
|
@@ -113,18 +57,6 @@ export interface ProviderProperties {
|
|
|
113
57
|
providerConfiguration?: __DocumentType | undefined;
|
|
114
58
|
intermediateSourceConfiguration?: IntermediateSourceConfiguration | undefined;
|
|
115
59
|
}
|
|
116
|
-
export declare const RecordMatchingModel: {
|
|
117
|
-
readonly MANY_SOURCE_TO_ONE_TARGET: "MANY_SOURCE_TO_ONE_TARGET";
|
|
118
|
-
readonly ONE_SOURCE_TO_ONE_TARGET: "ONE_SOURCE_TO_ONE_TARGET";
|
|
119
|
-
};
|
|
120
|
-
export type RecordMatchingModel =
|
|
121
|
-
(typeof RecordMatchingModel)[keyof typeof RecordMatchingModel];
|
|
122
|
-
export declare const IdMappingWorkflowRuleDefinitionType: {
|
|
123
|
-
readonly SOURCE: "SOURCE";
|
|
124
|
-
readonly TARGET: "TARGET";
|
|
125
|
-
};
|
|
126
|
-
export type IdMappingWorkflowRuleDefinitionType =
|
|
127
|
-
(typeof IdMappingWorkflowRuleDefinitionType)[keyof typeof IdMappingWorkflowRuleDefinitionType];
|
|
128
60
|
export interface Rule {
|
|
129
61
|
ruleName: string | undefined;
|
|
130
62
|
matchingKeys: string[] | undefined;
|
|
@@ -140,20 +72,9 @@ export interface IdMappingTechniques {
|
|
|
140
72
|
ruleBasedProperties?: IdMappingRuleBasedProperties | undefined;
|
|
141
73
|
providerProperties?: ProviderProperties | undefined;
|
|
142
74
|
}
|
|
143
|
-
export declare const IdMappingIncrementalRunType: {
|
|
144
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
145
|
-
};
|
|
146
|
-
export type IdMappingIncrementalRunType =
|
|
147
|
-
(typeof IdMappingIncrementalRunType)[keyof typeof IdMappingIncrementalRunType];
|
|
148
75
|
export interface IdMappingIncrementalRunConfig {
|
|
149
76
|
incrementalRunType?: IdMappingIncrementalRunType | undefined;
|
|
150
77
|
}
|
|
151
|
-
export declare const IdNamespaceType: {
|
|
152
|
-
readonly SOURCE: "SOURCE";
|
|
153
|
-
readonly TARGET: "TARGET";
|
|
154
|
-
};
|
|
155
|
-
export type IdNamespaceType =
|
|
156
|
-
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
157
78
|
export interface IdMappingWorkflowInputSource {
|
|
158
79
|
inputSourceARN: string | undefined;
|
|
159
80
|
schemaName?: string | undefined;
|
|
@@ -183,15 +104,6 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
183
104
|
incrementalRunConfig?: IdMappingIncrementalRunConfig | undefined;
|
|
184
105
|
roleArn?: string | undefined;
|
|
185
106
|
}
|
|
186
|
-
export declare class ExceedsLimitException extends __BaseException {
|
|
187
|
-
readonly name: "ExceedsLimitException";
|
|
188
|
-
readonly $fault: "client";
|
|
189
|
-
quotaName?: string | undefined;
|
|
190
|
-
quotaValue?: number | undefined;
|
|
191
|
-
constructor(
|
|
192
|
-
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
193
|
-
);
|
|
194
|
-
}
|
|
195
107
|
export interface NamespaceProviderProperties {
|
|
196
108
|
providerServiceArn: string | undefined;
|
|
197
109
|
providerConfiguration?: __DocumentType | undefined;
|
|
@@ -236,11 +148,6 @@ export interface CreateIdNamespaceOutput {
|
|
|
236
148
|
updatedAt: Date | undefined;
|
|
237
149
|
tags?: Record<string, string> | undefined;
|
|
238
150
|
}
|
|
239
|
-
export declare const IncrementalRunType: {
|
|
240
|
-
readonly IMMEDIATE: "IMMEDIATE";
|
|
241
|
-
};
|
|
242
|
-
export type IncrementalRunType =
|
|
243
|
-
(typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
244
151
|
export interface IncrementalRunConfig {
|
|
245
152
|
incrementalRunType?: IncrementalRunType | undefined;
|
|
246
153
|
}
|
|
@@ -259,18 +166,6 @@ export interface OutputSource {
|
|
|
259
166
|
output: OutputAttribute[] | undefined;
|
|
260
167
|
applyNormalization?: boolean | undefined;
|
|
261
168
|
}
|
|
262
|
-
export declare const ResolutionType: {
|
|
263
|
-
readonly ML_MATCHING: "ML_MATCHING";
|
|
264
|
-
readonly PROVIDER: "PROVIDER";
|
|
265
|
-
readonly RULE_MATCHING: "RULE_MATCHING";
|
|
266
|
-
};
|
|
267
|
-
export type ResolutionType =
|
|
268
|
-
(typeof ResolutionType)[keyof typeof ResolutionType];
|
|
269
|
-
export declare const MatchPurpose: {
|
|
270
|
-
readonly IDENTIFIER_GENERATION: "IDENTIFIER_GENERATION";
|
|
271
|
-
readonly INDEXING: "INDEXING";
|
|
272
|
-
};
|
|
273
|
-
export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
274
169
|
export interface RuleBasedProperties {
|
|
275
170
|
rules: Rule[] | undefined;
|
|
276
171
|
attributeMatchingModel: AttributeMatchingModel | undefined;
|
|
@@ -309,33 +204,6 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
309
204
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
310
205
|
roleArn: string | undefined;
|
|
311
206
|
}
|
|
312
|
-
export declare const SchemaAttributeType: {
|
|
313
|
-
readonly ADDRESS: "ADDRESS";
|
|
314
|
-
readonly ADDRESS_CITY: "ADDRESS_CITY";
|
|
315
|
-
readonly ADDRESS_COUNTRY: "ADDRESS_COUNTRY";
|
|
316
|
-
readonly ADDRESS_POSTALCODE: "ADDRESS_POSTALCODE";
|
|
317
|
-
readonly ADDRESS_STATE: "ADDRESS_STATE";
|
|
318
|
-
readonly ADDRESS_STREET1: "ADDRESS_STREET1";
|
|
319
|
-
readonly ADDRESS_STREET2: "ADDRESS_STREET2";
|
|
320
|
-
readonly ADDRESS_STREET3: "ADDRESS_STREET3";
|
|
321
|
-
readonly DATE: "DATE";
|
|
322
|
-
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
323
|
-
readonly IPV4: "IPV4";
|
|
324
|
-
readonly IPV6: "IPV6";
|
|
325
|
-
readonly MAID: "MAID";
|
|
326
|
-
readonly NAME: "NAME";
|
|
327
|
-
readonly NAME_FIRST: "NAME_FIRST";
|
|
328
|
-
readonly NAME_LAST: "NAME_LAST";
|
|
329
|
-
readonly NAME_MIDDLE: "NAME_MIDDLE";
|
|
330
|
-
readonly PHONE: "PHONE";
|
|
331
|
-
readonly PHONE_COUNTRYCODE: "PHONE_COUNTRYCODE";
|
|
332
|
-
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
333
|
-
readonly PROVIDER_ID: "PROVIDER_ID";
|
|
334
|
-
readonly STRING: "STRING";
|
|
335
|
-
readonly UNIQUE_ID: "UNIQUE_ID";
|
|
336
|
-
};
|
|
337
|
-
export type SchemaAttributeType =
|
|
338
|
-
(typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
339
207
|
export interface SchemaInputAttribute {
|
|
340
208
|
fieldName: string | undefined;
|
|
341
209
|
type: SchemaAttributeType | undefined;
|
|
@@ -389,13 +257,6 @@ export interface DeleteSchemaMappingInput {
|
|
|
389
257
|
export interface DeleteSchemaMappingOutput {
|
|
390
258
|
message: string | undefined;
|
|
391
259
|
}
|
|
392
|
-
export declare const ProcessingType: {
|
|
393
|
-
readonly CONSISTENT: "CONSISTENT";
|
|
394
|
-
readonly EVENTUAL: "EVENTUAL";
|
|
395
|
-
readonly EVENTUAL_NO_LOOKUP: "EVENTUAL_NO_LOOKUP";
|
|
396
|
-
};
|
|
397
|
-
export type ProcessingType =
|
|
398
|
-
(typeof ProcessingType)[keyof typeof ProcessingType];
|
|
399
260
|
export interface _Record {
|
|
400
261
|
inputSourceARN: string | undefined;
|
|
401
262
|
uniqueId: string | undefined;
|
|
@@ -431,12 +292,6 @@ export interface GetIdMappingJobInput {
|
|
|
431
292
|
export interface ErrorDetails {
|
|
432
293
|
errorMessage?: string | undefined;
|
|
433
294
|
}
|
|
434
|
-
export declare const JobType: {
|
|
435
|
-
readonly BATCH: "BATCH";
|
|
436
|
-
readonly DELETE_ONLY: "DELETE_ONLY";
|
|
437
|
-
readonly INCREMENTAL: "INCREMENTAL";
|
|
438
|
-
};
|
|
439
|
-
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
440
295
|
export interface IdMappingJobMetrics {
|
|
441
296
|
inputRecords?: number | undefined;
|
|
442
297
|
totalRecordsProcessed?: number | undefined;
|
|
@@ -459,13 +314,6 @@ export interface IdMappingJobOutputSource {
|
|
|
459
314
|
outputS3Path: string | undefined;
|
|
460
315
|
KMSArn?: string | undefined;
|
|
461
316
|
}
|
|
462
|
-
export declare const JobStatus: {
|
|
463
|
-
readonly FAILED: "FAILED";
|
|
464
|
-
readonly QUEUED: "QUEUED";
|
|
465
|
-
readonly RUNNING: "RUNNING";
|
|
466
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
467
|
-
};
|
|
468
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
469
317
|
export interface GetIdMappingJobOutput {
|
|
470
318
|
jobId: string | undefined;
|
|
471
319
|
status: JobStatus | undefined;
|
|
@@ -613,11 +461,6 @@ export interface ProviderIntermediateDataAccessConfiguration {
|
|
|
613
461
|
awsAccountIds?: string[] | undefined;
|
|
614
462
|
requiredBucketActions?: string[] | undefined;
|
|
615
463
|
}
|
|
616
|
-
export declare const ServiceType: {
|
|
617
|
-
readonly ASSIGNMENT: "ASSIGNMENT";
|
|
618
|
-
readonly ID_MAPPING: "ID_MAPPING";
|
|
619
|
-
};
|
|
620
|
-
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
621
464
|
export interface GetProviderServiceOutput {
|
|
622
465
|
providerName: string | undefined;
|
|
623
466
|
providerServiceName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-entityresolution",
|
|
3
3
|
"description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-entityresolution",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|