@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
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const StatementEffect: {
|
|
6
|
+
readonly Allow: "Allow";
|
|
7
|
+
readonly Deny: "Deny";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type StatementEffect = (typeof StatementEffect)[keyof typeof StatementEffect];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const AttributeMatchingModel: {
|
|
18
|
+
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
19
|
+
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type AttributeMatchingModel = (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const DeleteUniqueIdErrorType: {
|
|
30
|
+
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
31
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type DeleteUniqueIdErrorType = (typeof DeleteUniqueIdErrorType)[keyof typeof DeleteUniqueIdErrorType];
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* @enum
|
|
40
|
+
*/
|
|
41
|
+
export declare const DeleteUniqueIdStatus: {
|
|
42
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
43
|
+
readonly COMPLETED: "COMPLETED";
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export type DeleteUniqueIdStatus = (typeof DeleteUniqueIdStatus)[keyof typeof DeleteUniqueIdStatus];
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* @enum
|
|
52
|
+
*/
|
|
53
|
+
export declare const IdMappingType: {
|
|
54
|
+
readonly PROVIDER: "PROVIDER";
|
|
55
|
+
readonly RULE_BASED: "RULE_BASED";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export type IdMappingType = (typeof IdMappingType)[keyof typeof IdMappingType];
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* @enum
|
|
64
|
+
*/
|
|
65
|
+
export declare const RecordMatchingModel: {
|
|
66
|
+
readonly MANY_SOURCE_TO_ONE_TARGET: "MANY_SOURCE_TO_ONE_TARGET";
|
|
67
|
+
readonly ONE_SOURCE_TO_ONE_TARGET: "ONE_SOURCE_TO_ONE_TARGET";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type RecordMatchingModel = (typeof RecordMatchingModel)[keyof typeof RecordMatchingModel];
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const IdMappingWorkflowRuleDefinitionType: {
|
|
78
|
+
readonly SOURCE: "SOURCE";
|
|
79
|
+
readonly TARGET: "TARGET";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export type IdMappingWorkflowRuleDefinitionType = (typeof IdMappingWorkflowRuleDefinitionType)[keyof typeof IdMappingWorkflowRuleDefinitionType];
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* @enum
|
|
88
|
+
*/
|
|
89
|
+
export declare const IdMappingIncrementalRunType: {
|
|
90
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export type IdMappingIncrementalRunType = (typeof IdMappingIncrementalRunType)[keyof typeof IdMappingIncrementalRunType];
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
* @enum
|
|
99
|
+
*/
|
|
100
|
+
export declare const IdNamespaceType: {
|
|
101
|
+
readonly SOURCE: "SOURCE";
|
|
102
|
+
readonly TARGET: "TARGET";
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
* @enum
|
|
111
|
+
*/
|
|
112
|
+
export declare const IncrementalRunType: {
|
|
113
|
+
readonly IMMEDIATE: "IMMEDIATE";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type IncrementalRunType = (typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const ResolutionType: {
|
|
124
|
+
readonly ML_MATCHING: "ML_MATCHING";
|
|
125
|
+
readonly PROVIDER: "PROVIDER";
|
|
126
|
+
readonly RULE_MATCHING: "RULE_MATCHING";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export type ResolutionType = (typeof ResolutionType)[keyof typeof ResolutionType];
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* @enum
|
|
135
|
+
*/
|
|
136
|
+
export declare const MatchPurpose: {
|
|
137
|
+
readonly IDENTIFIER_GENERATION: "IDENTIFIER_GENERATION";
|
|
138
|
+
readonly INDEXING: "INDEXING";
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
* @enum
|
|
147
|
+
*/
|
|
148
|
+
export declare const SchemaAttributeType: {
|
|
149
|
+
readonly ADDRESS: "ADDRESS";
|
|
150
|
+
readonly ADDRESS_CITY: "ADDRESS_CITY";
|
|
151
|
+
readonly ADDRESS_COUNTRY: "ADDRESS_COUNTRY";
|
|
152
|
+
readonly ADDRESS_POSTALCODE: "ADDRESS_POSTALCODE";
|
|
153
|
+
readonly ADDRESS_STATE: "ADDRESS_STATE";
|
|
154
|
+
readonly ADDRESS_STREET1: "ADDRESS_STREET1";
|
|
155
|
+
readonly ADDRESS_STREET2: "ADDRESS_STREET2";
|
|
156
|
+
readonly ADDRESS_STREET3: "ADDRESS_STREET3";
|
|
157
|
+
readonly DATE: "DATE";
|
|
158
|
+
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
159
|
+
readonly IPV4: "IPV4";
|
|
160
|
+
readonly IPV6: "IPV6";
|
|
161
|
+
readonly MAID: "MAID";
|
|
162
|
+
readonly NAME: "NAME";
|
|
163
|
+
readonly NAME_FIRST: "NAME_FIRST";
|
|
164
|
+
readonly NAME_LAST: "NAME_LAST";
|
|
165
|
+
readonly NAME_MIDDLE: "NAME_MIDDLE";
|
|
166
|
+
readonly PHONE: "PHONE";
|
|
167
|
+
readonly PHONE_COUNTRYCODE: "PHONE_COUNTRYCODE";
|
|
168
|
+
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
169
|
+
readonly PROVIDER_ID: "PROVIDER_ID";
|
|
170
|
+
readonly STRING: "STRING";
|
|
171
|
+
readonly UNIQUE_ID: "UNIQUE_ID";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export type SchemaAttributeType = (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* @enum
|
|
180
|
+
*/
|
|
181
|
+
export declare const ProcessingType: {
|
|
182
|
+
readonly CONSISTENT: "CONSISTENT";
|
|
183
|
+
readonly EVENTUAL: "EVENTUAL";
|
|
184
|
+
readonly EVENTUAL_NO_LOOKUP: "EVENTUAL_NO_LOOKUP";
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
export type ProcessingType = (typeof ProcessingType)[keyof typeof ProcessingType];
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
* @enum
|
|
193
|
+
*/
|
|
194
|
+
export declare const JobType: {
|
|
195
|
+
readonly BATCH: "BATCH";
|
|
196
|
+
readonly DELETE_ONLY: "DELETE_ONLY";
|
|
197
|
+
readonly INCREMENTAL: "INCREMENTAL";
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* @enum
|
|
206
|
+
*/
|
|
207
|
+
export declare const JobStatus: {
|
|
208
|
+
readonly FAILED: "FAILED";
|
|
209
|
+
readonly QUEUED: "QUEUED";
|
|
210
|
+
readonly RUNNING: "RUNNING";
|
|
211
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* @enum
|
|
220
|
+
*/
|
|
221
|
+
export declare const ServiceType: {
|
|
222
|
+
readonly ASSIGNMENT: "ASSIGNMENT";
|
|
223
|
+
readonly ID_MAPPING: "ID_MAPPING";
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EntityResolutionServiceException as __BaseException } from "./EntityResolutionServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <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>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. </p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InternalServerException extends __BaseException {
|
|
32
|
+
readonly name: "InternalServerException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
$retryable: {};
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The resource couldn't be found. </p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceNotFoundException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>The request was denied due to request throttling. </p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class ThrottlingException extends __BaseException {
|
|
57
|
+
readonly name: "ThrottlingException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
$retryable: {
|
|
60
|
+
throttling: boolean;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class ValidationException extends __BaseException {
|
|
72
|
+
readonly name: "ValidationException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <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>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ExceedsLimitException extends __BaseException {
|
|
84
|
+
readonly name: "ExceedsLimitException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* <p>The name of the quota that has been breached.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
quotaName?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The current quota value for the customers.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
quotaValue?: number | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>);
|
|
100
|
+
}
|