@aws-sdk/client-entityresolution 3.554.0 → 3.562.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/README.md +87 -7
- package/dist-cjs/index.js +683 -56
- package/dist-es/EntityResolution.js +20 -0
- package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
- package/dist-es/commands/BatchDeleteUniqueIdCommand.js +24 -0
- package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
- package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
- package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
- package/dist-es/commands/GetPolicyCommand.js +24 -0
- package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
- package/dist-es/commands/PutPolicyCommand.js +24 -0
- package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +48 -32
- package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +399 -7
- package/dist-types/EntityResolution.d.ts +71 -0
- package/dist-types/EntityResolutionClient.d.ts +12 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
- package/dist-types/commands/BatchDeleteUniqueIdCommand.d.ts +91 -0
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
- package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
- package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
- package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
- package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
- package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
- package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
- package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
- package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +972 -83
- package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +171 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/BatchDeleteUniqueIdCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +245 -40
- package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- 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
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
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
|
|
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,173 @@ 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];
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
export interface BatchDeleteUniqueIdInput {
|
|
182
|
+
/**
|
|
183
|
+
* <p>The name of the workflow.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
workflowName: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The input source for the batch delete unique ID operation.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
inputSource?: string;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The unique IDs to delete.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
uniqueIds: string[] | undefined;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* <p>The deleted unique ID.</p>
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export interface DeletedUniqueId {
|
|
203
|
+
/**
|
|
204
|
+
* <p> The unique ID of the deleted item.</p>
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
uniqueId: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
* @enum
|
|
212
|
+
*/
|
|
213
|
+
export declare const DeleteUniqueIdErrorType: {
|
|
214
|
+
readonly SERVICE_ERROR: "SERVICE_ERROR";
|
|
215
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
export type DeleteUniqueIdErrorType = (typeof DeleteUniqueIdErrorType)[keyof typeof DeleteUniqueIdErrorType];
|
|
221
|
+
/**
|
|
222
|
+
* <p>The Delete Unique Id error.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export interface DeleteUniqueIdError {
|
|
226
|
+
/**
|
|
227
|
+
* <p>The unique ID that could not be deleted.</p>
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
uniqueId: string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p> The error type for the batch delete unique ID operation.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
errorType: DeleteUniqueIdErrorType | undefined;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
* @enum
|
|
240
|
+
*/
|
|
241
|
+
export declare const DeleteUniqueIdStatus: {
|
|
242
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
243
|
+
readonly COMPLETED: "COMPLETED";
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
export type DeleteUniqueIdStatus = (typeof DeleteUniqueIdStatus)[keyof typeof DeleteUniqueIdStatus];
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export interface BatchDeleteUniqueIdOutput {
|
|
253
|
+
/**
|
|
254
|
+
* <p>The status of the batch delete unique ID operation.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
status: DeleteUniqueIdStatus | undefined;
|
|
258
|
+
/**
|
|
259
|
+
* <p> The errors from deleting multiple unique IDs.</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
errors: DeleteUniqueIdError[] | undefined;
|
|
263
|
+
/**
|
|
264
|
+
* <p>The unique IDs that were deleted.</p>
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
deleted: DeletedUniqueId[] | undefined;
|
|
268
|
+
/**
|
|
269
|
+
* <p>The unique IDs that were disconnected.</p>
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
disconnectedUniqueIds: string[] | undefined;
|
|
273
|
+
}
|
|
45
274
|
/**
|
|
46
275
|
* @public
|
|
47
276
|
* @enum
|
|
@@ -106,15 +335,28 @@ export interface IdMappingTechniques {
|
|
|
106
335
|
* service.</p>
|
|
107
336
|
* @public
|
|
108
337
|
*/
|
|
109
|
-
providerProperties
|
|
338
|
+
providerProperties?: ProviderProperties;
|
|
110
339
|
}
|
|
111
340
|
/**
|
|
112
|
-
*
|
|
341
|
+
* @public
|
|
342
|
+
* @enum
|
|
343
|
+
*/
|
|
344
|
+
export declare const IdNamespaceType: {
|
|
345
|
+
readonly SOURCE: "SOURCE";
|
|
346
|
+
readonly TARGET: "TARGET";
|
|
347
|
+
};
|
|
348
|
+
/**
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
351
|
+
export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
352
|
+
/**
|
|
353
|
+
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and
|
|
354
|
+
* <code>Type</code>.</p>
|
|
113
355
|
* @public
|
|
114
356
|
*/
|
|
115
357
|
export interface IdMappingWorkflowInputSource {
|
|
116
358
|
/**
|
|
117
|
-
* <p>An
|
|
359
|
+
* <p>An Glue table ARN for the input source table.</p>
|
|
118
360
|
* @public
|
|
119
361
|
*/
|
|
120
362
|
inputSourceARN: string | undefined;
|
|
@@ -122,7 +364,17 @@ export interface IdMappingWorkflowInputSource {
|
|
|
122
364
|
* <p>The name of the schema to be retrieved.</p>
|
|
123
365
|
* @public
|
|
124
366
|
*/
|
|
125
|
-
schemaName
|
|
367
|
+
schemaName?: string;
|
|
368
|
+
/**
|
|
369
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
370
|
+
* <code>TARGET</code>. </p>
|
|
371
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
372
|
+
* be processed in an ID mapping workflow. </p>
|
|
373
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
374
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
type?: IdNamespaceType;
|
|
126
378
|
}
|
|
127
379
|
/**
|
|
128
380
|
* <p>The output source for the ID mapping workflow.</p>
|
|
@@ -167,7 +419,7 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
167
419
|
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
168
420
|
* @public
|
|
169
421
|
*/
|
|
170
|
-
outputSourceConfig
|
|
422
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
171
423
|
/**
|
|
172
424
|
* <p>An object which defines the <code>idMappingType</code> and the
|
|
173
425
|
* <code>providerProperties</code>.</p>
|
|
@@ -217,7 +469,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
217
469
|
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
218
470
|
* @public
|
|
219
471
|
*/
|
|
220
|
-
outputSourceConfig
|
|
472
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
221
473
|
/**
|
|
222
474
|
* <p>An object which defines the <code>idMappingType</code> and the
|
|
223
475
|
* <code>providerProperties</code>.</p>
|
|
@@ -257,50 +509,171 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
257
509
|
constructor(opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>);
|
|
258
510
|
}
|
|
259
511
|
/**
|
|
260
|
-
* <p>
|
|
261
|
-
*
|
|
262
|
-
* </p>
|
|
512
|
+
* <p>An object containing <code>ProviderConfiguration</code> and
|
|
513
|
+
* <code>ProviderServiceArn</code>.</p>
|
|
263
514
|
* @public
|
|
264
515
|
*/
|
|
265
|
-
export
|
|
266
|
-
readonly name: "InternalServerException";
|
|
267
|
-
readonly $fault: "server";
|
|
268
|
-
$retryable: {};
|
|
516
|
+
export interface NamespaceProviderProperties {
|
|
269
517
|
/**
|
|
270
|
-
*
|
|
518
|
+
* <p>The Amazon Resource Name (ARN) of the provider service.</p>
|
|
519
|
+
* @public
|
|
271
520
|
*/
|
|
272
|
-
|
|
521
|
+
providerServiceArn: string | undefined;
|
|
522
|
+
/**
|
|
523
|
+
* <p>An object which defines any additional configurations required by the provider
|
|
524
|
+
* service.</p>
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
527
|
+
providerConfiguration?: __DocumentType;
|
|
273
528
|
}
|
|
274
529
|
/**
|
|
275
|
-
* <p>
|
|
276
|
-
*
|
|
277
|
-
* </p>
|
|
530
|
+
* <p>An object containing <code>IdMappingType</code> and
|
|
531
|
+
* <code>ProviderProperties</code>.</p>
|
|
278
532
|
* @public
|
|
279
533
|
*/
|
|
280
|
-
export
|
|
281
|
-
readonly name: "ThrottlingException";
|
|
282
|
-
readonly $fault: "client";
|
|
283
|
-
$retryable: {
|
|
284
|
-
throttling: boolean;
|
|
285
|
-
};
|
|
534
|
+
export interface IdNamespaceIdMappingWorkflowProperties {
|
|
286
535
|
/**
|
|
287
|
-
*
|
|
536
|
+
* <p>The type of ID mapping.</p>
|
|
537
|
+
* @public
|
|
288
538
|
*/
|
|
289
|
-
|
|
539
|
+
idMappingType: IdMappingType | undefined;
|
|
540
|
+
/**
|
|
541
|
+
* <p>An object which defines any additional configurations required by the provider
|
|
542
|
+
* service.</p>
|
|
543
|
+
* @public
|
|
544
|
+
*/
|
|
545
|
+
providerProperties?: NamespaceProviderProperties;
|
|
290
546
|
}
|
|
291
547
|
/**
|
|
292
|
-
* <p>
|
|
293
|
-
* Status Code: 400</code>
|
|
294
|
-
* </p>
|
|
548
|
+
* <p>An object containing <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
295
549
|
* @public
|
|
296
550
|
*/
|
|
297
|
-
export
|
|
298
|
-
readonly name: "ValidationException";
|
|
299
|
-
readonly $fault: "client";
|
|
551
|
+
export interface IdNamespaceInputSource {
|
|
300
552
|
/**
|
|
301
|
-
*
|
|
553
|
+
* <p>An Glue table ARN for the input source table.</p>
|
|
554
|
+
* @public
|
|
302
555
|
*/
|
|
303
|
-
|
|
556
|
+
inputSourceARN: string | undefined;
|
|
557
|
+
/**
|
|
558
|
+
* <p>The name of the schema.</p>
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
schemaName?: string;
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
export interface CreateIdNamespaceInput {
|
|
567
|
+
/**
|
|
568
|
+
* <p>The name of the ID namespace.</p>
|
|
569
|
+
* @public
|
|
570
|
+
*/
|
|
571
|
+
idNamespaceName: string | undefined;
|
|
572
|
+
/**
|
|
573
|
+
* <p>The description of the ID namespace.</p>
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
576
|
+
description?: string;
|
|
577
|
+
/**
|
|
578
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
579
|
+
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
583
|
+
/**
|
|
584
|
+
* <p>Determines the properties of <code>IdMappingWorflow</code> where this
|
|
585
|
+
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
586
|
+
* <code>Target</code>.</p>
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
590
|
+
/**
|
|
591
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
592
|
+
* <code>TARGET</code>. </p>
|
|
593
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
594
|
+
* be processed in an ID mapping workflow. </p>
|
|
595
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
596
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
type: IdNamespaceType | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
602
|
+
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
603
|
+
* as part of the workflow run.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
roleArn?: string;
|
|
607
|
+
/**
|
|
608
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
tags?: Record<string, string>;
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
export interface CreateIdNamespaceOutput {
|
|
617
|
+
/**
|
|
618
|
+
* <p>The name of the ID namespace.</p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
idNamespaceName: string | undefined;
|
|
622
|
+
/**
|
|
623
|
+
* <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
|
|
624
|
+
* @public
|
|
625
|
+
*/
|
|
626
|
+
idNamespaceArn: string | undefined;
|
|
627
|
+
/**
|
|
628
|
+
* <p>The description of the ID namespace.</p>
|
|
629
|
+
* @public
|
|
630
|
+
*/
|
|
631
|
+
description?: string;
|
|
632
|
+
/**
|
|
633
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
634
|
+
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
638
|
+
/**
|
|
639
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
640
|
+
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
641
|
+
* <code>Target</code>.</p>
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
644
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
645
|
+
/**
|
|
646
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
647
|
+
* <code>TARGET</code>.</p>
|
|
648
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
649
|
+
* be processed in an ID mapping workflow. </p>
|
|
650
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
651
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
652
|
+
* @public
|
|
653
|
+
*/
|
|
654
|
+
type: IdNamespaceType | undefined;
|
|
655
|
+
/**
|
|
656
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
657
|
+
* this role to access the resources defined in <code>inputSourceConfig</code> on your behalf
|
|
658
|
+
* as part of the workflow run.</p>
|
|
659
|
+
* @public
|
|
660
|
+
*/
|
|
661
|
+
roleArn?: string;
|
|
662
|
+
/**
|
|
663
|
+
* <p>The timestamp of when the ID namespace was created.</p>
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
666
|
+
createdAt: Date | undefined;
|
|
667
|
+
/**
|
|
668
|
+
* <p>The timestamp of when the ID namespace was last updated.</p>
|
|
669
|
+
* @public
|
|
670
|
+
*/
|
|
671
|
+
updatedAt: Date | undefined;
|
|
672
|
+
/**
|
|
673
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
676
|
+
tags?: Record<string, string>;
|
|
304
677
|
}
|
|
305
678
|
/**
|
|
306
679
|
* @public
|
|
@@ -466,8 +839,8 @@ export interface RuleBasedProperties {
|
|
|
466
839
|
*/
|
|
467
840
|
export interface ResolutionTechniques {
|
|
468
841
|
/**
|
|
469
|
-
* <p>The type of matching. There are
|
|
470
|
-
* <code>ML_MATCHING</code>.</p>
|
|
842
|
+
* <p>The type of matching. There are three types of matching: <code>RULE_MATCHING</code>,
|
|
843
|
+
* <code>ML_MATCHING</code>, and <code>PROVIDER</code>.</p>
|
|
471
844
|
* @public
|
|
472
845
|
*/
|
|
473
846
|
resolutionType: ResolutionType | undefined;
|
|
@@ -619,7 +992,7 @@ export declare const SchemaAttributeType: {
|
|
|
619
992
|
export type SchemaAttributeType = (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
620
993
|
/**
|
|
621
994
|
* <p>An object containing <code>FieldName</code>, <code>Type</code>, <code>GroupName</code>,
|
|
622
|
-
* and <code>
|
|
995
|
+
* <code>MatchKey</code>, and <code>SubType</code>.</p>
|
|
623
996
|
* @public
|
|
624
997
|
*/
|
|
625
998
|
export interface SchemaInputAttribute {
|
|
@@ -634,22 +1007,23 @@ export interface SchemaInputAttribute {
|
|
|
634
1007
|
*/
|
|
635
1008
|
type: SchemaAttributeType | undefined;
|
|
636
1009
|
/**
|
|
637
|
-
* <p>
|
|
638
|
-
* identical attribute type.
|
|
639
|
-
*
|
|
640
|
-
*
|
|
1010
|
+
* <p>A string that instructs Entity Resolution to combine several columns into a unified
|
|
1011
|
+
* column with the identical attribute type. </p>
|
|
1012
|
+
* <p>For example, when working with columns such as <code>first_name</code>,
|
|
1013
|
+
* <code>middle_name</code>, and <code>last_name</code>, assigning them a common
|
|
1014
|
+
* <code>groupName</code> will prompt Entity Resolution to concatenate them into a single
|
|
1015
|
+
* value.</p>
|
|
641
1016
|
* @public
|
|
642
1017
|
*/
|
|
643
1018
|
groupName?: string;
|
|
644
1019
|
/**
|
|
645
1020
|
* <p>A key that allows grouping of multiple input attributes into a unified matching group.
|
|
646
|
-
* For example,
|
|
647
|
-
*
|
|
648
|
-
* <code>
|
|
649
|
-
*
|
|
650
|
-
*
|
|
651
|
-
*
|
|
652
|
-
* included in the output table.</p>
|
|
1021
|
+
* For example, consider a scenario where the source table contains various addresses, such as
|
|
1022
|
+
* <code>business_address</code> and <code>shipping_address</code>. By assigning a
|
|
1023
|
+
* <code>matchKey</code> called <code>address</code> to both attributes, Entity Resolution
|
|
1024
|
+
* will match records across these fields to create a consolidated matching group. If no
|
|
1025
|
+
* <code>matchKey</code> is specified for a column, it won't be utilized for matching
|
|
1026
|
+
* purposes but will still be included in the output table.</p>
|
|
653
1027
|
* @public
|
|
654
1028
|
*/
|
|
655
1029
|
matchKey?: string;
|
|
@@ -735,6 +1109,26 @@ export interface DeleteIdMappingWorkflowOutput {
|
|
|
735
1109
|
*/
|
|
736
1110
|
message: string | undefined;
|
|
737
1111
|
}
|
|
1112
|
+
/**
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
export interface DeleteIdNamespaceInput {
|
|
1116
|
+
/**
|
|
1117
|
+
* <p>The name of the ID namespace.</p>
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
1120
|
+
idNamespaceName: string | undefined;
|
|
1121
|
+
}
|
|
1122
|
+
/**
|
|
1123
|
+
* @public
|
|
1124
|
+
*/
|
|
1125
|
+
export interface DeleteIdNamespaceOutput {
|
|
1126
|
+
/**
|
|
1127
|
+
* <p>A successful operation message.</p>
|
|
1128
|
+
* @public
|
|
1129
|
+
*/
|
|
1130
|
+
message: string | undefined;
|
|
1131
|
+
}
|
|
738
1132
|
/**
|
|
739
1133
|
* @public
|
|
740
1134
|
*/
|
|
@@ -755,6 +1149,42 @@ export interface DeleteMatchingWorkflowOutput {
|
|
|
755
1149
|
*/
|
|
756
1150
|
message: string | undefined;
|
|
757
1151
|
}
|
|
1152
|
+
/**
|
|
1153
|
+
* @public
|
|
1154
|
+
*/
|
|
1155
|
+
export interface DeletePolicyStatementInput {
|
|
1156
|
+
/**
|
|
1157
|
+
* <p>The ARN of the resource for which the policy need to be deleted.</p>
|
|
1158
|
+
* @public
|
|
1159
|
+
*/
|
|
1160
|
+
arn: string | undefined;
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>A statement identifier that differentiates the statement from others in the same
|
|
1163
|
+
* policy.</p>
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1166
|
+
statementId: string | undefined;
|
|
1167
|
+
}
|
|
1168
|
+
/**
|
|
1169
|
+
* @public
|
|
1170
|
+
*/
|
|
1171
|
+
export interface DeletePolicyStatementOutput {
|
|
1172
|
+
/**
|
|
1173
|
+
* <p>The ARN of the resource for which the policy need to be deleted.</p>
|
|
1174
|
+
* @public
|
|
1175
|
+
*/
|
|
1176
|
+
arn: string | undefined;
|
|
1177
|
+
/**
|
|
1178
|
+
* <p>A unique identifier for the deleted policy.</p>
|
|
1179
|
+
* @public
|
|
1180
|
+
*/
|
|
1181
|
+
token: string | undefined;
|
|
1182
|
+
/**
|
|
1183
|
+
* <p>The resource-based policy.</p>
|
|
1184
|
+
* @public
|
|
1185
|
+
*/
|
|
1186
|
+
policy?: string;
|
|
1187
|
+
}
|
|
758
1188
|
/**
|
|
759
1189
|
* @public
|
|
760
1190
|
*/
|
|
@@ -823,6 +1253,31 @@ export interface IdMappingJobMetrics {
|
|
|
823
1253
|
*/
|
|
824
1254
|
recordsNotProcessed?: number;
|
|
825
1255
|
}
|
|
1256
|
+
/**
|
|
1257
|
+
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
1258
|
+
* <code>RoleARN</code>.</p>
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1261
|
+
export interface IdMappingJobOutputSource {
|
|
1262
|
+
/**
|
|
1263
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1264
|
+
* this role to access Amazon Web Services resources on your behalf as part of workflow
|
|
1265
|
+
* execution.</p>
|
|
1266
|
+
* @public
|
|
1267
|
+
*/
|
|
1268
|
+
roleArn: string | undefined;
|
|
1269
|
+
/**
|
|
1270
|
+
* <p>The S3 path to which Entity Resolution will write the output table.</p>
|
|
1271
|
+
* @public
|
|
1272
|
+
*/
|
|
1273
|
+
outputS3Path: string | undefined;
|
|
1274
|
+
/**
|
|
1275
|
+
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use
|
|
1276
|
+
* an Entity Resolution managed KMS key.</p>
|
|
1277
|
+
* @public
|
|
1278
|
+
*/
|
|
1279
|
+
KMSArn?: string;
|
|
1280
|
+
}
|
|
826
1281
|
/**
|
|
827
1282
|
* @public
|
|
828
1283
|
* @enum
|
|
@@ -872,19 +1327,11 @@ export interface GetIdMappingJobOutput {
|
|
|
872
1327
|
* @public
|
|
873
1328
|
*/
|
|
874
1329
|
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
1330
|
/**
|
|
885
|
-
*
|
|
1331
|
+
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
1332
|
+
* @public
|
|
886
1333
|
*/
|
|
887
|
-
|
|
1334
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
888
1335
|
}
|
|
889
1336
|
/**
|
|
890
1337
|
* @public
|
|
@@ -927,29 +1374,104 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
927
1374
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
928
1375
|
* @public
|
|
929
1376
|
*/
|
|
930
|
-
outputSourceConfig
|
|
1377
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
931
1378
|
/**
|
|
932
1379
|
* <p>An object which defines the <code>idMappingType</code> and the
|
|
933
1380
|
* <code>providerProperties</code>.</p>
|
|
934
1381
|
* @public
|
|
935
1382
|
*/
|
|
936
|
-
idMappingTechniques: IdMappingTechniques | undefined;
|
|
1383
|
+
idMappingTechniques: IdMappingTechniques | undefined;
|
|
1384
|
+
/**
|
|
1385
|
+
* <p>The timestamp of when the workflow was created.</p>
|
|
1386
|
+
* @public
|
|
1387
|
+
*/
|
|
1388
|
+
createdAt: Date | undefined;
|
|
1389
|
+
/**
|
|
1390
|
+
* <p>The timestamp of when the workflow was last updated.</p>
|
|
1391
|
+
* @public
|
|
1392
|
+
*/
|
|
1393
|
+
updatedAt: Date | undefined;
|
|
1394
|
+
/**
|
|
1395
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1396
|
+
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1397
|
+
* @public
|
|
1398
|
+
*/
|
|
1399
|
+
roleArn: string | undefined;
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1404
|
+
tags?: Record<string, string>;
|
|
1405
|
+
}
|
|
1406
|
+
/**
|
|
1407
|
+
* @public
|
|
1408
|
+
*/
|
|
1409
|
+
export interface GetIdNamespaceInput {
|
|
1410
|
+
/**
|
|
1411
|
+
* <p>The name of the ID namespace.</p>
|
|
1412
|
+
* @public
|
|
1413
|
+
*/
|
|
1414
|
+
idNamespaceName: string | undefined;
|
|
1415
|
+
}
|
|
1416
|
+
/**
|
|
1417
|
+
* @public
|
|
1418
|
+
*/
|
|
1419
|
+
export interface GetIdNamespaceOutput {
|
|
1420
|
+
/**
|
|
1421
|
+
* <p>The name of the ID namespace.</p>
|
|
1422
|
+
* @public
|
|
1423
|
+
*/
|
|
1424
|
+
idNamespaceName: string | undefined;
|
|
1425
|
+
/**
|
|
1426
|
+
* <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
|
|
1427
|
+
* @public
|
|
1428
|
+
*/
|
|
1429
|
+
idNamespaceArn: string | undefined;
|
|
1430
|
+
/**
|
|
1431
|
+
* <p>The description of the ID namespace.</p>
|
|
1432
|
+
* @public
|
|
1433
|
+
*/
|
|
1434
|
+
description?: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1437
|
+
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1438
|
+
* @public
|
|
1439
|
+
*/
|
|
1440
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
1441
|
+
/**
|
|
1442
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
1443
|
+
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
1444
|
+
* <code>Target</code>.</p>
|
|
1445
|
+
* @public
|
|
1446
|
+
*/
|
|
1447
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
1448
|
+
/**
|
|
1449
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
1450
|
+
* <code>TARGET</code>.</p>
|
|
1451
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
1452
|
+
* be processed in an ID mapping workflow. </p>
|
|
1453
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
1454
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
1455
|
+
* @public
|
|
1456
|
+
*/
|
|
1457
|
+
type: IdNamespaceType | undefined;
|
|
1458
|
+
/**
|
|
1459
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1460
|
+
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
1461
|
+
* as part of a workflow run.</p>
|
|
1462
|
+
* @public
|
|
1463
|
+
*/
|
|
1464
|
+
roleArn?: string;
|
|
937
1465
|
/**
|
|
938
|
-
* <p>The timestamp of when the
|
|
1466
|
+
* <p>The timestamp of when the ID namespace was created.</p>
|
|
939
1467
|
* @public
|
|
940
1468
|
*/
|
|
941
1469
|
createdAt: Date | undefined;
|
|
942
1470
|
/**
|
|
943
|
-
* <p>The timestamp of when the
|
|
1471
|
+
* <p>The timestamp of when the ID namespace was last updated.</p>
|
|
944
1472
|
* @public
|
|
945
1473
|
*/
|
|
946
1474
|
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
1475
|
/**
|
|
954
1476
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
955
1477
|
* @public
|
|
@@ -970,6 +1492,14 @@ export interface GetMatchIdInput {
|
|
|
970
1492
|
* @public
|
|
971
1493
|
*/
|
|
972
1494
|
record: Record<string, string> | undefined;
|
|
1495
|
+
/**
|
|
1496
|
+
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an
|
|
1497
|
+
* attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in
|
|
1498
|
+
* the input table is in a format of 1234567890, Entity Resolution will normalize this field
|
|
1499
|
+
* in the output to (123)-456-7890.</p>
|
|
1500
|
+
* @public
|
|
1501
|
+
*/
|
|
1502
|
+
applyNormalization?: boolean;
|
|
973
1503
|
}
|
|
974
1504
|
/**
|
|
975
1505
|
* @public
|
|
@@ -980,6 +1510,11 @@ export interface GetMatchIdOutput {
|
|
|
980
1510
|
* @public
|
|
981
1511
|
*/
|
|
982
1512
|
matchId?: string;
|
|
1513
|
+
/**
|
|
1514
|
+
* <p>The rule the record matched on.</p>
|
|
1515
|
+
* @public
|
|
1516
|
+
*/
|
|
1517
|
+
matchRule?: string;
|
|
983
1518
|
}
|
|
984
1519
|
/**
|
|
985
1520
|
* @public
|
|
@@ -1023,6 +1558,31 @@ export interface JobMetrics {
|
|
|
1023
1558
|
*/
|
|
1024
1559
|
matchIDs?: number;
|
|
1025
1560
|
}
|
|
1561
|
+
/**
|
|
1562
|
+
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
1563
|
+
* <code>RoleArn</code>.</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
export interface JobOutputSource {
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1569
|
+
* this role to access Amazon Web Services resources on your behalf as part of workflow
|
|
1570
|
+
* execution.</p>
|
|
1571
|
+
* @public
|
|
1572
|
+
*/
|
|
1573
|
+
roleArn: string | undefined;
|
|
1574
|
+
/**
|
|
1575
|
+
* <p>The S3 path to which Entity Resolution will write the output table.</p>
|
|
1576
|
+
* @public
|
|
1577
|
+
*/
|
|
1578
|
+
outputS3Path: string | undefined;
|
|
1579
|
+
/**
|
|
1580
|
+
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use
|
|
1581
|
+
* an Entity Resolution managed KMS key.</p>
|
|
1582
|
+
* @public
|
|
1583
|
+
*/
|
|
1584
|
+
KMSArn?: string;
|
|
1585
|
+
}
|
|
1026
1586
|
/**
|
|
1027
1587
|
* @public
|
|
1028
1588
|
*/
|
|
@@ -1058,6 +1618,11 @@ export interface GetMatchingJobOutput {
|
|
|
1058
1618
|
* @public
|
|
1059
1619
|
*/
|
|
1060
1620
|
errorDetails?: ErrorDetails;
|
|
1621
|
+
/**
|
|
1622
|
+
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1625
|
+
outputSourceConfig?: JobOutputSource[];
|
|
1061
1626
|
}
|
|
1062
1627
|
/**
|
|
1063
1628
|
* @public
|
|
@@ -1126,7 +1691,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1126
1691
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
1127
1692
|
/**
|
|
1128
1693
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1129
|
-
* this role to access resources on your behalf.</p>
|
|
1694
|
+
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1130
1695
|
* @public
|
|
1131
1696
|
*/
|
|
1132
1697
|
roleArn: string | undefined;
|
|
@@ -1136,6 +1701,37 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1136
1701
|
*/
|
|
1137
1702
|
tags?: Record<string, string>;
|
|
1138
1703
|
}
|
|
1704
|
+
/**
|
|
1705
|
+
* @public
|
|
1706
|
+
*/
|
|
1707
|
+
export interface GetPolicyInput {
|
|
1708
|
+
/**
|
|
1709
|
+
* <p>The Amazon Resource Name (ARN) of the resource for which the policy need to be
|
|
1710
|
+
* returned.</p>
|
|
1711
|
+
* @public
|
|
1712
|
+
*/
|
|
1713
|
+
arn: string | undefined;
|
|
1714
|
+
}
|
|
1715
|
+
/**
|
|
1716
|
+
* @public
|
|
1717
|
+
*/
|
|
1718
|
+
export interface GetPolicyOutput {
|
|
1719
|
+
/**
|
|
1720
|
+
* <p>The Entity Resolution resource ARN.</p>
|
|
1721
|
+
* @public
|
|
1722
|
+
*/
|
|
1723
|
+
arn: string | undefined;
|
|
1724
|
+
/**
|
|
1725
|
+
* <p>A unique identifier for the current revision of the policy.</p>
|
|
1726
|
+
* @public
|
|
1727
|
+
*/
|
|
1728
|
+
token: string | undefined;
|
|
1729
|
+
/**
|
|
1730
|
+
* <p>The resource-based policy.</p>
|
|
1731
|
+
* @public
|
|
1732
|
+
*/
|
|
1733
|
+
policy?: string;
|
|
1734
|
+
}
|
|
1139
1735
|
/**
|
|
1140
1736
|
* @public
|
|
1141
1737
|
*/
|
|
@@ -1151,6 +1747,48 @@ export interface GetProviderServiceInput {
|
|
|
1151
1747
|
*/
|
|
1152
1748
|
providerServiceName: string | undefined;
|
|
1153
1749
|
}
|
|
1750
|
+
/**
|
|
1751
|
+
* <p>The provider schema attribute.</p>
|
|
1752
|
+
* @public
|
|
1753
|
+
*/
|
|
1754
|
+
export interface ProviderSchemaAttribute {
|
|
1755
|
+
/**
|
|
1756
|
+
* <p>The field name.</p>
|
|
1757
|
+
* @public
|
|
1758
|
+
*/
|
|
1759
|
+
fieldName: string | undefined;
|
|
1760
|
+
/**
|
|
1761
|
+
* <p>The type of the provider schema attribute.</p>
|
|
1762
|
+
* @public
|
|
1763
|
+
*/
|
|
1764
|
+
type: SchemaAttributeType | undefined;
|
|
1765
|
+
/**
|
|
1766
|
+
* <p>The sub type of the provider schema attribute.</p>
|
|
1767
|
+
* @public
|
|
1768
|
+
*/
|
|
1769
|
+
subType?: string;
|
|
1770
|
+
/**
|
|
1771
|
+
* <p>The hashing attribute of the provider schema.</p>
|
|
1772
|
+
* @public
|
|
1773
|
+
*/
|
|
1774
|
+
hashing?: boolean;
|
|
1775
|
+
}
|
|
1776
|
+
/**
|
|
1777
|
+
* <p>The input schema supported by provider service.</p>
|
|
1778
|
+
* @public
|
|
1779
|
+
*/
|
|
1780
|
+
export interface ProviderComponentSchema {
|
|
1781
|
+
/**
|
|
1782
|
+
* <p>Input schema for the provider service.</p>
|
|
1783
|
+
* @public
|
|
1784
|
+
*/
|
|
1785
|
+
schemas?: string[][];
|
|
1786
|
+
/**
|
|
1787
|
+
* <p>The provider schema attributes.</p>
|
|
1788
|
+
* @public
|
|
1789
|
+
*/
|
|
1790
|
+
providerSchemaAttributes?: ProviderSchemaAttribute[];
|
|
1791
|
+
}
|
|
1154
1792
|
/**
|
|
1155
1793
|
* <p>The identifiers of the provider service, from Data Exchange.</p>
|
|
1156
1794
|
* @public
|
|
@@ -1207,6 +1845,27 @@ export declare namespace ProviderEndpointConfiguration {
|
|
|
1207
1845
|
}
|
|
1208
1846
|
const visit: <T>(value: ProviderEndpointConfiguration, visitor: Visitor<T>) => T;
|
|
1209
1847
|
}
|
|
1848
|
+
/**
|
|
1849
|
+
* <p>The provider configuration required for different ID namespace types.</p>
|
|
1850
|
+
* @public
|
|
1851
|
+
*/
|
|
1852
|
+
export interface ProviderIdNameSpaceConfiguration {
|
|
1853
|
+
/**
|
|
1854
|
+
* <p>The description of the ID namespace.</p>
|
|
1855
|
+
* @public
|
|
1856
|
+
*/
|
|
1857
|
+
description?: string;
|
|
1858
|
+
/**
|
|
1859
|
+
* <p>Configurations required for the target ID namespace.</p>
|
|
1860
|
+
* @public
|
|
1861
|
+
*/
|
|
1862
|
+
providerTargetConfigurationDefinition?: __DocumentType;
|
|
1863
|
+
/**
|
|
1864
|
+
* <p>Configurations required for the source ID namespace.</p>
|
|
1865
|
+
* @public
|
|
1866
|
+
*/
|
|
1867
|
+
providerSourceConfigurationDefinition?: __DocumentType;
|
|
1868
|
+
}
|
|
1210
1869
|
/**
|
|
1211
1870
|
* <p>The required configuration fields to give intermediate access to a provider
|
|
1212
1871
|
* service.</p>
|
|
@@ -1214,10 +1873,8 @@ export declare namespace ProviderEndpointConfiguration {
|
|
|
1214
1873
|
*/
|
|
1215
1874
|
export interface ProviderIntermediateDataAccessConfiguration {
|
|
1216
1875
|
/**
|
|
1217
|
-
* <p>The Amazon Web Services account
|
|
1218
|
-
*
|
|
1219
|
-
* provider can use to read or write data into the customer's intermediate S3
|
|
1220
|
-
* bucket.</p>
|
|
1876
|
+
* <p>The Amazon Web Services account that provider can use to read or write data into the
|
|
1877
|
+
* customer's intermediate S3 bucket.</p>
|
|
1221
1878
|
* @public
|
|
1222
1879
|
*/
|
|
1223
1880
|
awsAccountIds?: string[];
|
|
@@ -1274,6 +1931,16 @@ export interface GetProviderServiceOutput {
|
|
|
1274
1931
|
* @public
|
|
1275
1932
|
*/
|
|
1276
1933
|
providerConfigurationDefinition?: __DocumentType;
|
|
1934
|
+
/**
|
|
1935
|
+
* <p>The provider configuration required for different ID namespace types.</p>
|
|
1936
|
+
* @public
|
|
1937
|
+
*/
|
|
1938
|
+
providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration;
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>Provider service job configurations.</p>
|
|
1941
|
+
* @public
|
|
1942
|
+
*/
|
|
1943
|
+
providerJobConfiguration?: __DocumentType;
|
|
1277
1944
|
/**
|
|
1278
1945
|
* <p>The required configuration fields to use with the provider service.</p>
|
|
1279
1946
|
* @public
|
|
@@ -1299,6 +1966,11 @@ export interface GetProviderServiceOutput {
|
|
|
1299
1966
|
* @public
|
|
1300
1967
|
*/
|
|
1301
1968
|
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration;
|
|
1969
|
+
/**
|
|
1970
|
+
* <p>Input schema for the provider service.</p>
|
|
1971
|
+
* @public
|
|
1972
|
+
*/
|
|
1973
|
+
providerComponentSchema?: ProviderComponentSchema;
|
|
1302
1974
|
}
|
|
1303
1975
|
/**
|
|
1304
1976
|
* @public
|
|
@@ -1479,6 +2151,77 @@ export interface ListIdMappingWorkflowsOutput {
|
|
|
1479
2151
|
*/
|
|
1480
2152
|
nextToken?: string;
|
|
1481
2153
|
}
|
|
2154
|
+
/**
|
|
2155
|
+
* @public
|
|
2156
|
+
*/
|
|
2157
|
+
export interface ListIdNamespacesInput {
|
|
2158
|
+
/**
|
|
2159
|
+
* <p>The pagination token from the previous API call.</p>
|
|
2160
|
+
* @public
|
|
2161
|
+
*/
|
|
2162
|
+
nextToken?: string;
|
|
2163
|
+
/**
|
|
2164
|
+
* <p>The maximum number of <code>IdNamespace</code> objects returned per page.</p>
|
|
2165
|
+
* @public
|
|
2166
|
+
*/
|
|
2167
|
+
maxResults?: number;
|
|
2168
|
+
}
|
|
2169
|
+
/**
|
|
2170
|
+
* <p>A summary of ID namespaces.</p>
|
|
2171
|
+
* @public
|
|
2172
|
+
*/
|
|
2173
|
+
export interface IdNamespaceSummary {
|
|
2174
|
+
/**
|
|
2175
|
+
* <p>The name of the ID namespace.</p>
|
|
2176
|
+
* @public
|
|
2177
|
+
*/
|
|
2178
|
+
idNamespaceName: string | undefined;
|
|
2179
|
+
/**
|
|
2180
|
+
* <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
|
|
2181
|
+
* @public
|
|
2182
|
+
*/
|
|
2183
|
+
idNamespaceArn: string | undefined;
|
|
2184
|
+
/**
|
|
2185
|
+
* <p>The description of the ID namespace.</p>
|
|
2186
|
+
* @public
|
|
2187
|
+
*/
|
|
2188
|
+
description?: string;
|
|
2189
|
+
/**
|
|
2190
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
2191
|
+
* <code>TARGET</code>.</p>
|
|
2192
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
2193
|
+
* be processed in an ID mapping workflow. </p>
|
|
2194
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
2195
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
2196
|
+
* @public
|
|
2197
|
+
*/
|
|
2198
|
+
type: IdNamespaceType | undefined;
|
|
2199
|
+
/**
|
|
2200
|
+
* <p>The timestamp of when the ID namespace was created.</p>
|
|
2201
|
+
* @public
|
|
2202
|
+
*/
|
|
2203
|
+
createdAt: Date | undefined;
|
|
2204
|
+
/**
|
|
2205
|
+
* <p>The timestamp of when the ID namespace was last updated.</p>
|
|
2206
|
+
* @public
|
|
2207
|
+
*/
|
|
2208
|
+
updatedAt: Date | undefined;
|
|
2209
|
+
}
|
|
2210
|
+
/**
|
|
2211
|
+
* @public
|
|
2212
|
+
*/
|
|
2213
|
+
export interface ListIdNamespacesOutput {
|
|
2214
|
+
/**
|
|
2215
|
+
* <p>A list of <code>IdNamespaceSummaries</code> objects.</p>
|
|
2216
|
+
* @public
|
|
2217
|
+
*/
|
|
2218
|
+
idNamespaceSummaries?: IdNamespaceSummary[];
|
|
2219
|
+
/**
|
|
2220
|
+
* <p>The pagination token from the previous API call.</p>
|
|
2221
|
+
* @public
|
|
2222
|
+
*/
|
|
2223
|
+
nextToken?: string;
|
|
2224
|
+
}
|
|
1482
2225
|
/**
|
|
1483
2226
|
* @public
|
|
1484
2227
|
*/
|
|
@@ -1736,6 +2479,47 @@ export interface ListTagsForResourceOutput {
|
|
|
1736
2479
|
*/
|
|
1737
2480
|
tags: Record<string, string> | undefined;
|
|
1738
2481
|
}
|
|
2482
|
+
/**
|
|
2483
|
+
* @public
|
|
2484
|
+
*/
|
|
2485
|
+
export interface PutPolicyInput {
|
|
2486
|
+
/**
|
|
2487
|
+
* <p>The Amazon Resource Name (ARN) of the resource for which the policy needs to be
|
|
2488
|
+
* updated.</p>
|
|
2489
|
+
* @public
|
|
2490
|
+
*/
|
|
2491
|
+
arn: string | undefined;
|
|
2492
|
+
/**
|
|
2493
|
+
* <p>A unique identifier for the current revision of the policy.</p>
|
|
2494
|
+
* @public
|
|
2495
|
+
*/
|
|
2496
|
+
token?: string;
|
|
2497
|
+
/**
|
|
2498
|
+
* <p>The resource-based policy.</p>
|
|
2499
|
+
* @public
|
|
2500
|
+
*/
|
|
2501
|
+
policy: string | undefined;
|
|
2502
|
+
}
|
|
2503
|
+
/**
|
|
2504
|
+
* @public
|
|
2505
|
+
*/
|
|
2506
|
+
export interface PutPolicyOutput {
|
|
2507
|
+
/**
|
|
2508
|
+
* <p>The Entity Resolution resource ARN.</p>
|
|
2509
|
+
* @public
|
|
2510
|
+
*/
|
|
2511
|
+
arn: string | undefined;
|
|
2512
|
+
/**
|
|
2513
|
+
* <p>A unique identifier for the current revision of the policy.</p>
|
|
2514
|
+
* @public
|
|
2515
|
+
*/
|
|
2516
|
+
token: string | undefined;
|
|
2517
|
+
/**
|
|
2518
|
+
* <p>The resource-based policy.</p>
|
|
2519
|
+
* @public
|
|
2520
|
+
*/
|
|
2521
|
+
policy?: string;
|
|
2522
|
+
}
|
|
1739
2523
|
/**
|
|
1740
2524
|
* @public
|
|
1741
2525
|
*/
|
|
@@ -1745,6 +2529,11 @@ export interface StartIdMappingJobInput {
|
|
|
1745
2529
|
* @public
|
|
1746
2530
|
*/
|
|
1747
2531
|
workflowName: string | undefined;
|
|
2532
|
+
/**
|
|
2533
|
+
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
2534
|
+
* @public
|
|
2535
|
+
*/
|
|
2536
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
1748
2537
|
}
|
|
1749
2538
|
/**
|
|
1750
2539
|
* @public
|
|
@@ -1755,6 +2544,11 @@ export interface StartIdMappingJobOutput {
|
|
|
1755
2544
|
* @public
|
|
1756
2545
|
*/
|
|
1757
2546
|
jobId: string | undefined;
|
|
2547
|
+
/**
|
|
2548
|
+
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
2549
|
+
* @public
|
|
2550
|
+
*/
|
|
2551
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
1758
2552
|
}
|
|
1759
2553
|
/**
|
|
1760
2554
|
* @public
|
|
@@ -1841,7 +2635,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
1841
2635
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
1842
2636
|
* @public
|
|
1843
2637
|
*/
|
|
1844
|
-
outputSourceConfig
|
|
2638
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
1845
2639
|
/**
|
|
1846
2640
|
* <p>An object which defines the <code>idMappingType</code> and the
|
|
1847
2641
|
* <code>providerProperties</code>.</p>
|
|
@@ -1850,7 +2644,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
1850
2644
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
1851
2645
|
/**
|
|
1852
2646
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1853
|
-
* this role to access resources on your behalf.</p>
|
|
2647
|
+
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1854
2648
|
* @public
|
|
1855
2649
|
*/
|
|
1856
2650
|
roleArn: string | undefined;
|
|
@@ -1866,7 +2660,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
1866
2660
|
workflowName: string | undefined;
|
|
1867
2661
|
/**
|
|
1868
2662
|
* <p>The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role
|
|
1869
|
-
* to access resources on your behalf.</p>
|
|
2663
|
+
* to access Amazon Web Services resources on your behalf.</p>
|
|
1870
2664
|
* @public
|
|
1871
2665
|
*/
|
|
1872
2666
|
workflowArn: string | undefined;
|
|
@@ -1886,7 +2680,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
1886
2680
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
1887
2681
|
* @public
|
|
1888
2682
|
*/
|
|
1889
|
-
outputSourceConfig
|
|
2683
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
1890
2684
|
/**
|
|
1891
2685
|
* <p>An object which defines the <code>idMappingType</code> and the
|
|
1892
2686
|
* <code>providerProperties</code>.</p>
|
|
@@ -1895,11 +2689,106 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
1895
2689
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
1896
2690
|
/**
|
|
1897
2691
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1898
|
-
* this role to access resources on your behalf.</p>
|
|
2692
|
+
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1899
2693
|
* @public
|
|
1900
2694
|
*/
|
|
1901
2695
|
roleArn: string | undefined;
|
|
1902
2696
|
}
|
|
2697
|
+
/**
|
|
2698
|
+
* @public
|
|
2699
|
+
*/
|
|
2700
|
+
export interface UpdateIdNamespaceInput {
|
|
2701
|
+
/**
|
|
2702
|
+
* <p>The name of the ID namespace.</p>
|
|
2703
|
+
* @public
|
|
2704
|
+
*/
|
|
2705
|
+
idNamespaceName: string | undefined;
|
|
2706
|
+
/**
|
|
2707
|
+
* <p>The description of the ID namespace.</p>
|
|
2708
|
+
* @public
|
|
2709
|
+
*/
|
|
2710
|
+
description?: string;
|
|
2711
|
+
/**
|
|
2712
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2713
|
+
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2714
|
+
* @public
|
|
2715
|
+
*/
|
|
2716
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
2717
|
+
/**
|
|
2718
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
2719
|
+
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
2720
|
+
* <code>Target</code>.</p>
|
|
2721
|
+
* @public
|
|
2722
|
+
*/
|
|
2723
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
2724
|
+
/**
|
|
2725
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2726
|
+
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
2727
|
+
* as part of a workflow run.</p>
|
|
2728
|
+
* @public
|
|
2729
|
+
*/
|
|
2730
|
+
roleArn?: string;
|
|
2731
|
+
}
|
|
2732
|
+
/**
|
|
2733
|
+
* @public
|
|
2734
|
+
*/
|
|
2735
|
+
export interface UpdateIdNamespaceOutput {
|
|
2736
|
+
/**
|
|
2737
|
+
* <p>The name of the ID namespace.</p>
|
|
2738
|
+
* @public
|
|
2739
|
+
*/
|
|
2740
|
+
idNamespaceName: string | undefined;
|
|
2741
|
+
/**
|
|
2742
|
+
* <p>The Amazon Resource Name (ARN) of the ID namespace.</p>
|
|
2743
|
+
* @public
|
|
2744
|
+
*/
|
|
2745
|
+
idNamespaceArn: string | undefined;
|
|
2746
|
+
/**
|
|
2747
|
+
* <p>The description of the ID namespace.</p>
|
|
2748
|
+
* @public
|
|
2749
|
+
*/
|
|
2750
|
+
description?: string;
|
|
2751
|
+
/**
|
|
2752
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2753
|
+
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
2757
|
+
/**
|
|
2758
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
2759
|
+
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
2760
|
+
* <code>Target</code>.</p>
|
|
2761
|
+
* @public
|
|
2762
|
+
*/
|
|
2763
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
2764
|
+
/**
|
|
2765
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
2766
|
+
* <code>TARGET</code>.</p>
|
|
2767
|
+
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
2768
|
+
* be processed in an ID mapping workflow. </p>
|
|
2769
|
+
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
2770
|
+
* <code>sourceIds</code> will resolve to.</p>
|
|
2771
|
+
* @public
|
|
2772
|
+
*/
|
|
2773
|
+
type: IdNamespaceType | undefined;
|
|
2774
|
+
/**
|
|
2775
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2776
|
+
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
2777
|
+
* as part of a workflow run.</p>
|
|
2778
|
+
* @public
|
|
2779
|
+
*/
|
|
2780
|
+
roleArn?: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* <p>The timestamp of when the ID namespace was created.</p>
|
|
2783
|
+
* @public
|
|
2784
|
+
*/
|
|
2785
|
+
createdAt: Date | undefined;
|
|
2786
|
+
/**
|
|
2787
|
+
* <p>The timestamp of when the ID namespace was last updated.</p>
|
|
2788
|
+
* @public
|
|
2789
|
+
*/
|
|
2790
|
+
updatedAt: Date | undefined;
|
|
2791
|
+
}
|
|
1903
2792
|
/**
|
|
1904
2793
|
* @public
|
|
1905
2794
|
*/
|