@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
|
@@ -8,16 +8,97 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare const StatementEffect: {
|
|
12
|
+
readonly Allow: "Allow";
|
|
13
|
+
readonly Deny: "Deny";
|
|
14
|
+
};
|
|
15
|
+
export type StatementEffect =
|
|
16
|
+
(typeof StatementEffect)[keyof typeof StatementEffect];
|
|
17
|
+
export interface AddPolicyStatementInput {
|
|
18
|
+
arn: string | undefined;
|
|
19
|
+
statementId: string | undefined;
|
|
20
|
+
effect: StatementEffect | undefined;
|
|
21
|
+
action: string[] | undefined;
|
|
22
|
+
principal: string[] | undefined;
|
|
23
|
+
condition?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface AddPolicyStatementOutput {
|
|
26
|
+
arn: string | undefined;
|
|
27
|
+
token: string | undefined;
|
|
28
|
+
policy?: string;
|
|
29
|
+
}
|
|
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
|
+
}
|
|
11
67
|
export declare const AttributeMatchingModel: {
|
|
12
68
|
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
13
69
|
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
14
70
|
};
|
|
15
71
|
export type AttributeMatchingModel =
|
|
16
72
|
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
17
|
-
export
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
73
|
+
export interface BatchDeleteUniqueIdInput {
|
|
74
|
+
workflowName: string | undefined;
|
|
75
|
+
inputSource?: string;
|
|
76
|
+
uniqueIds: string[] | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface DeletedUniqueId {
|
|
79
|
+
uniqueId: string | undefined;
|
|
80
|
+
}
|
|
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
|
+
export interface DeleteUniqueIdError {
|
|
88
|
+
uniqueId: string | undefined;
|
|
89
|
+
errorType: DeleteUniqueIdErrorType | undefined;
|
|
90
|
+
}
|
|
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
|
+
export interface BatchDeleteUniqueIdOutput {
|
|
98
|
+
status: DeleteUniqueIdStatus | undefined;
|
|
99
|
+
errors: DeleteUniqueIdError[] | undefined;
|
|
100
|
+
deleted: DeletedUniqueId[] | undefined;
|
|
101
|
+
disconnectedUniqueIds: string[] | undefined;
|
|
21
102
|
}
|
|
22
103
|
export declare const IdMappingType: {
|
|
23
104
|
readonly PROVIDER: "PROVIDER";
|
|
@@ -33,11 +114,18 @@ export interface ProviderProperties {
|
|
|
33
114
|
}
|
|
34
115
|
export interface IdMappingTechniques {
|
|
35
116
|
idMappingType: IdMappingType | undefined;
|
|
36
|
-
providerProperties
|
|
117
|
+
providerProperties?: ProviderProperties;
|
|
37
118
|
}
|
|
119
|
+
export declare const IdNamespaceType: {
|
|
120
|
+
readonly SOURCE: "SOURCE";
|
|
121
|
+
readonly TARGET: "TARGET";
|
|
122
|
+
};
|
|
123
|
+
export type IdNamespaceType =
|
|
124
|
+
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
38
125
|
export interface IdMappingWorkflowInputSource {
|
|
39
126
|
inputSourceARN: string | undefined;
|
|
40
|
-
schemaName
|
|
127
|
+
schemaName?: string;
|
|
128
|
+
type?: IdNamespaceType;
|
|
41
129
|
}
|
|
42
130
|
export interface IdMappingWorkflowOutputSource {
|
|
43
131
|
outputS3Path: string | undefined;
|
|
@@ -47,7 +135,7 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
47
135
|
workflowName: string | undefined;
|
|
48
136
|
description?: string;
|
|
49
137
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
50
|
-
outputSourceConfig
|
|
138
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
51
139
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
52
140
|
roleArn: string | undefined;
|
|
53
141
|
tags?: Record<string, string>;
|
|
@@ -57,7 +145,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
57
145
|
workflowArn: string | undefined;
|
|
58
146
|
description?: string;
|
|
59
147
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
60
|
-
outputSourceConfig
|
|
148
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
61
149
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
62
150
|
roleArn: string | undefined;
|
|
63
151
|
}
|
|
@@ -70,30 +158,38 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
70
158
|
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
71
159
|
);
|
|
72
160
|
}
|
|
73
|
-
export
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
$retryable: {};
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
79
|
-
);
|
|
161
|
+
export interface NamespaceProviderProperties {
|
|
162
|
+
providerServiceArn: string | undefined;
|
|
163
|
+
providerConfiguration?: __DocumentType;
|
|
80
164
|
}
|
|
81
|
-
export
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
$retryable: {
|
|
85
|
-
throttling: boolean;
|
|
86
|
-
};
|
|
87
|
-
constructor(
|
|
88
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
89
|
-
);
|
|
165
|
+
export interface IdNamespaceIdMappingWorkflowProperties {
|
|
166
|
+
idMappingType: IdMappingType | undefined;
|
|
167
|
+
providerProperties?: NamespaceProviderProperties;
|
|
90
168
|
}
|
|
91
|
-
export
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
169
|
+
export interface IdNamespaceInputSource {
|
|
170
|
+
inputSourceARN: string | undefined;
|
|
171
|
+
schemaName?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface CreateIdNamespaceInput {
|
|
174
|
+
idNamespaceName: string | undefined;
|
|
175
|
+
description?: string;
|
|
176
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
177
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
178
|
+
type: IdNamespaceType | undefined;
|
|
179
|
+
roleArn?: string;
|
|
180
|
+
tags?: Record<string, string>;
|
|
181
|
+
}
|
|
182
|
+
export interface CreateIdNamespaceOutput {
|
|
183
|
+
idNamespaceName: string | undefined;
|
|
184
|
+
idNamespaceArn: string | undefined;
|
|
185
|
+
description?: string;
|
|
186
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
187
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
188
|
+
type: IdNamespaceType | undefined;
|
|
189
|
+
roleArn?: string;
|
|
190
|
+
createdAt: Date | undefined;
|
|
191
|
+
updatedAt: Date | undefined;
|
|
192
|
+
tags?: Record<string, string>;
|
|
97
193
|
}
|
|
98
194
|
export declare const IncrementalRunType: {
|
|
99
195
|
readonly IMMEDIATE: "IMMEDIATE";
|
|
@@ -207,12 +303,27 @@ export interface DeleteIdMappingWorkflowInput {
|
|
|
207
303
|
export interface DeleteIdMappingWorkflowOutput {
|
|
208
304
|
message: string | undefined;
|
|
209
305
|
}
|
|
306
|
+
export interface DeleteIdNamespaceInput {
|
|
307
|
+
idNamespaceName: string | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface DeleteIdNamespaceOutput {
|
|
310
|
+
message: string | undefined;
|
|
311
|
+
}
|
|
210
312
|
export interface DeleteMatchingWorkflowInput {
|
|
211
313
|
workflowName: string | undefined;
|
|
212
314
|
}
|
|
213
315
|
export interface DeleteMatchingWorkflowOutput {
|
|
214
316
|
message: string | undefined;
|
|
215
317
|
}
|
|
318
|
+
export interface DeletePolicyStatementInput {
|
|
319
|
+
arn: string | undefined;
|
|
320
|
+
statementId: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface DeletePolicyStatementOutput {
|
|
323
|
+
arn: string | undefined;
|
|
324
|
+
token: string | undefined;
|
|
325
|
+
policy?: string;
|
|
326
|
+
}
|
|
216
327
|
export interface DeleteSchemaMappingInput {
|
|
217
328
|
schemaName: string | undefined;
|
|
218
329
|
}
|
|
@@ -231,6 +342,11 @@ export interface IdMappingJobMetrics {
|
|
|
231
342
|
totalRecordsProcessed?: number;
|
|
232
343
|
recordsNotProcessed?: number;
|
|
233
344
|
}
|
|
345
|
+
export interface IdMappingJobOutputSource {
|
|
346
|
+
roleArn: string | undefined;
|
|
347
|
+
outputS3Path: string | undefined;
|
|
348
|
+
KMSArn?: string;
|
|
349
|
+
}
|
|
234
350
|
export declare const JobStatus: {
|
|
235
351
|
readonly FAILED: "FAILED";
|
|
236
352
|
readonly QUEUED: "QUEUED";
|
|
@@ -245,13 +361,7 @@ export interface GetIdMappingJobOutput {
|
|
|
245
361
|
endTime?: Date;
|
|
246
362
|
metrics?: IdMappingJobMetrics;
|
|
247
363
|
errorDetails?: ErrorDetails;
|
|
248
|
-
|
|
249
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
250
|
-
readonly name: "ResourceNotFoundException";
|
|
251
|
-
readonly $fault: "client";
|
|
252
|
-
constructor(
|
|
253
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
254
|
-
);
|
|
364
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
255
365
|
}
|
|
256
366
|
export interface GetIdMappingWorkflowInput {
|
|
257
367
|
workflowName: string | undefined;
|
|
@@ -261,19 +371,36 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
261
371
|
workflowArn: string | undefined;
|
|
262
372
|
description?: string;
|
|
263
373
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
264
|
-
outputSourceConfig
|
|
374
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
265
375
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
266
376
|
createdAt: Date | undefined;
|
|
267
377
|
updatedAt: Date | undefined;
|
|
268
378
|
roleArn: string | undefined;
|
|
269
379
|
tags?: Record<string, string>;
|
|
270
380
|
}
|
|
381
|
+
export interface GetIdNamespaceInput {
|
|
382
|
+
idNamespaceName: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface GetIdNamespaceOutput {
|
|
385
|
+
idNamespaceName: string | undefined;
|
|
386
|
+
idNamespaceArn: string | undefined;
|
|
387
|
+
description?: string;
|
|
388
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
389
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
390
|
+
type: IdNamespaceType | undefined;
|
|
391
|
+
roleArn?: string;
|
|
392
|
+
createdAt: Date | undefined;
|
|
393
|
+
updatedAt: Date | undefined;
|
|
394
|
+
tags?: Record<string, string>;
|
|
395
|
+
}
|
|
271
396
|
export interface GetMatchIdInput {
|
|
272
397
|
workflowName: string | undefined;
|
|
273
398
|
record: Record<string, string> | undefined;
|
|
399
|
+
applyNormalization?: boolean;
|
|
274
400
|
}
|
|
275
401
|
export interface GetMatchIdOutput {
|
|
276
402
|
matchId?: string;
|
|
403
|
+
matchRule?: string;
|
|
277
404
|
}
|
|
278
405
|
export interface GetMatchingJobInput {
|
|
279
406
|
workflowName: string | undefined;
|
|
@@ -285,6 +412,11 @@ export interface JobMetrics {
|
|
|
285
412
|
recordsNotProcessed?: number;
|
|
286
413
|
matchIDs?: number;
|
|
287
414
|
}
|
|
415
|
+
export interface JobOutputSource {
|
|
416
|
+
roleArn: string | undefined;
|
|
417
|
+
outputS3Path: string | undefined;
|
|
418
|
+
KMSArn?: string;
|
|
419
|
+
}
|
|
288
420
|
export interface GetMatchingJobOutput {
|
|
289
421
|
jobId: string | undefined;
|
|
290
422
|
status: JobStatus | undefined;
|
|
@@ -292,6 +424,7 @@ export interface GetMatchingJobOutput {
|
|
|
292
424
|
endTime?: Date;
|
|
293
425
|
metrics?: JobMetrics;
|
|
294
426
|
errorDetails?: ErrorDetails;
|
|
427
|
+
outputSourceConfig?: JobOutputSource[];
|
|
295
428
|
}
|
|
296
429
|
export interface GetMatchingWorkflowInput {
|
|
297
430
|
workflowName: string | undefined;
|
|
@@ -309,10 +442,28 @@ export interface GetMatchingWorkflowOutput {
|
|
|
309
442
|
roleArn: string | undefined;
|
|
310
443
|
tags?: Record<string, string>;
|
|
311
444
|
}
|
|
445
|
+
export interface GetPolicyInput {
|
|
446
|
+
arn: string | undefined;
|
|
447
|
+
}
|
|
448
|
+
export interface GetPolicyOutput {
|
|
449
|
+
arn: string | undefined;
|
|
450
|
+
token: string | undefined;
|
|
451
|
+
policy?: string;
|
|
452
|
+
}
|
|
312
453
|
export interface GetProviderServiceInput {
|
|
313
454
|
providerName: string | undefined;
|
|
314
455
|
providerServiceName: string | undefined;
|
|
315
456
|
}
|
|
457
|
+
export interface ProviderSchemaAttribute {
|
|
458
|
+
fieldName: string | undefined;
|
|
459
|
+
type: SchemaAttributeType | undefined;
|
|
460
|
+
subType?: string;
|
|
461
|
+
hashing?: boolean;
|
|
462
|
+
}
|
|
463
|
+
export interface ProviderComponentSchema {
|
|
464
|
+
schemas?: string[][];
|
|
465
|
+
providerSchemaAttributes?: ProviderSchemaAttribute[];
|
|
466
|
+
}
|
|
316
467
|
export interface ProviderMarketplaceConfiguration {
|
|
317
468
|
dataSetId: string | undefined;
|
|
318
469
|
revisionId: string | undefined;
|
|
@@ -340,6 +491,11 @@ export declare namespace ProviderEndpointConfiguration {
|
|
|
340
491
|
visitor: Visitor<T>
|
|
341
492
|
) => T;
|
|
342
493
|
}
|
|
494
|
+
export interface ProviderIdNameSpaceConfiguration {
|
|
495
|
+
description?: string;
|
|
496
|
+
providerTargetConfigurationDefinition?: __DocumentType;
|
|
497
|
+
providerSourceConfigurationDefinition?: __DocumentType;
|
|
498
|
+
}
|
|
343
499
|
export interface ProviderIntermediateDataAccessConfiguration {
|
|
344
500
|
awsAccountIds?: string[];
|
|
345
501
|
requiredBucketActions?: string[];
|
|
@@ -356,10 +512,13 @@ export interface GetProviderServiceOutput {
|
|
|
356
512
|
providerServiceType: ServiceType | undefined;
|
|
357
513
|
providerServiceArn: string | undefined;
|
|
358
514
|
providerConfigurationDefinition?: __DocumentType;
|
|
515
|
+
providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration;
|
|
516
|
+
providerJobConfiguration?: __DocumentType;
|
|
359
517
|
providerEndpointConfiguration: ProviderEndpointConfiguration | undefined;
|
|
360
518
|
anonymizedOutput: boolean | undefined;
|
|
361
519
|
providerEntityOutputDefinition: __DocumentType | undefined;
|
|
362
520
|
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration;
|
|
521
|
+
providerComponentSchema?: ProviderComponentSchema;
|
|
363
522
|
}
|
|
364
523
|
export interface GetSchemaMappingInput {
|
|
365
524
|
schemaName: string | undefined;
|
|
@@ -403,6 +562,22 @@ export interface ListIdMappingWorkflowsOutput {
|
|
|
403
562
|
workflowSummaries?: IdMappingWorkflowSummary[];
|
|
404
563
|
nextToken?: string;
|
|
405
564
|
}
|
|
565
|
+
export interface ListIdNamespacesInput {
|
|
566
|
+
nextToken?: string;
|
|
567
|
+
maxResults?: number;
|
|
568
|
+
}
|
|
569
|
+
export interface IdNamespaceSummary {
|
|
570
|
+
idNamespaceName: string | undefined;
|
|
571
|
+
idNamespaceArn: string | undefined;
|
|
572
|
+
description?: string;
|
|
573
|
+
type: IdNamespaceType | undefined;
|
|
574
|
+
createdAt: Date | undefined;
|
|
575
|
+
updatedAt: Date | undefined;
|
|
576
|
+
}
|
|
577
|
+
export interface ListIdNamespacesOutput {
|
|
578
|
+
idNamespaceSummaries?: IdNamespaceSummary[];
|
|
579
|
+
nextToken?: string;
|
|
580
|
+
}
|
|
406
581
|
export interface ListMatchingJobsInput {
|
|
407
582
|
workflowName: string | undefined;
|
|
408
583
|
nextToken?: string;
|
|
@@ -464,11 +639,23 @@ export interface ListTagsForResourceInput {
|
|
|
464
639
|
export interface ListTagsForResourceOutput {
|
|
465
640
|
tags: Record<string, string> | undefined;
|
|
466
641
|
}
|
|
642
|
+
export interface PutPolicyInput {
|
|
643
|
+
arn: string | undefined;
|
|
644
|
+
token?: string;
|
|
645
|
+
policy: string | undefined;
|
|
646
|
+
}
|
|
647
|
+
export interface PutPolicyOutput {
|
|
648
|
+
arn: string | undefined;
|
|
649
|
+
token: string | undefined;
|
|
650
|
+
policy?: string;
|
|
651
|
+
}
|
|
467
652
|
export interface StartIdMappingJobInput {
|
|
468
653
|
workflowName: string | undefined;
|
|
654
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
469
655
|
}
|
|
470
656
|
export interface StartIdMappingJobOutput {
|
|
471
657
|
jobId: string | undefined;
|
|
658
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
472
659
|
}
|
|
473
660
|
export interface StartMatchingJobInput {
|
|
474
661
|
workflowName: string | undefined;
|
|
@@ -490,7 +677,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
490
677
|
workflowName: string | undefined;
|
|
491
678
|
description?: string;
|
|
492
679
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
493
|
-
outputSourceConfig
|
|
680
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
494
681
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
495
682
|
roleArn: string | undefined;
|
|
496
683
|
}
|
|
@@ -499,10 +686,28 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
499
686
|
workflowArn: string | undefined;
|
|
500
687
|
description?: string;
|
|
501
688
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
502
|
-
outputSourceConfig
|
|
689
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
503
690
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
504
691
|
roleArn: string | undefined;
|
|
505
692
|
}
|
|
693
|
+
export interface UpdateIdNamespaceInput {
|
|
694
|
+
idNamespaceName: string | undefined;
|
|
695
|
+
description?: string;
|
|
696
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
697
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
698
|
+
roleArn?: string;
|
|
699
|
+
}
|
|
700
|
+
export interface UpdateIdNamespaceOutput {
|
|
701
|
+
idNamespaceName: string | undefined;
|
|
702
|
+
idNamespaceArn: string | undefined;
|
|
703
|
+
description?: string;
|
|
704
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
705
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
706
|
+
type: IdNamespaceType | undefined;
|
|
707
|
+
roleArn?: string;
|
|
708
|
+
createdAt: Date | undefined;
|
|
709
|
+
updatedAt: Date | undefined;
|
|
710
|
+
}
|
|
506
711
|
export interface UpdateMatchingWorkflowInput {
|
|
507
712
|
workflowName: string | undefined;
|
|
508
713
|
description?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListIdNamespacesCommandInput,
|
|
4
|
+
ListIdNamespacesCommandOutput,
|
|
5
|
+
} from "../commands/ListIdNamespacesCommand";
|
|
6
|
+
import { EntityResolutionPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListIdNamespaces: (
|
|
8
|
+
config: EntityResolutionPaginationConfiguration,
|
|
9
|
+
input: ListIdNamespacesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListIdNamespacesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListIdMappingJobsPaginator";
|
|
3
3
|
export * from "./ListIdMappingWorkflowsPaginator";
|
|
4
|
+
export * from "./ListIdNamespacesPaginator";
|
|
4
5
|
export * from "./ListMatchingJobsPaginator";
|
|
5
6
|
export * from "./ListMatchingWorkflowsPaginator";
|
|
6
7
|
export * from "./ListProviderServicesPaginator";
|