@aws-sdk/client-entityresolution 3.687.0 → 3.692.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-types/models/models_0.d.ts +167 -167
- package/dist-types/ts3.4/models/models_0.d.ts +183 -167
- package/package.json +35 -35
|
@@ -20,12 +20,12 @@ export interface AddPolicyStatementInput {
|
|
|
20
20
|
effect: StatementEffect | undefined;
|
|
21
21
|
action: string[] | undefined;
|
|
22
22
|
principal: string[] | undefined;
|
|
23
|
-
condition?: string;
|
|
23
|
+
condition?: string | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface AddPolicyStatementOutput {
|
|
26
26
|
arn: string | undefined;
|
|
27
27
|
token: string | undefined;
|
|
28
|
-
policy?: string;
|
|
28
|
+
policy?: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
export declare class ConflictException extends __BaseException {
|
|
31
31
|
readonly name: "ConflictException";
|
|
@@ -72,7 +72,7 @@ export type AttributeMatchingModel =
|
|
|
72
72
|
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
73
73
|
export interface BatchDeleteUniqueIdInput {
|
|
74
74
|
workflowName: string | undefined;
|
|
75
|
-
inputSource?: string;
|
|
75
|
+
inputSource?: string | undefined;
|
|
76
76
|
uniqueIds: string[] | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface DeletedUniqueId {
|
|
@@ -110,8 +110,8 @@ export interface IntermediateSourceConfiguration {
|
|
|
110
110
|
}
|
|
111
111
|
export interface ProviderProperties {
|
|
112
112
|
providerServiceArn: string | undefined;
|
|
113
|
-
providerConfiguration?: __DocumentType;
|
|
114
|
-
intermediateSourceConfiguration?: IntermediateSourceConfiguration;
|
|
113
|
+
providerConfiguration?: __DocumentType | undefined;
|
|
114
|
+
intermediateSourceConfiguration?: IntermediateSourceConfiguration | undefined;
|
|
115
115
|
}
|
|
116
116
|
export declare const RecordMatchingModel: {
|
|
117
117
|
readonly MANY_SOURCE_TO_ONE_TARGET: "MANY_SOURCE_TO_ONE_TARGET";
|
|
@@ -130,15 +130,15 @@ export interface Rule {
|
|
|
130
130
|
matchingKeys: string[] | undefined;
|
|
131
131
|
}
|
|
132
132
|
export interface IdMappingRuleBasedProperties {
|
|
133
|
-
rules?: Rule[];
|
|
133
|
+
rules?: Rule[] | undefined;
|
|
134
134
|
ruleDefinitionType: IdMappingWorkflowRuleDefinitionType | undefined;
|
|
135
135
|
attributeMatchingModel: AttributeMatchingModel | undefined;
|
|
136
136
|
recordMatchingModel: RecordMatchingModel | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface IdMappingTechniques {
|
|
139
139
|
idMappingType: IdMappingType | undefined;
|
|
140
|
-
ruleBasedProperties?: IdMappingRuleBasedProperties;
|
|
141
|
-
providerProperties?: ProviderProperties;
|
|
140
|
+
ruleBasedProperties?: IdMappingRuleBasedProperties | undefined;
|
|
141
|
+
providerProperties?: ProviderProperties | undefined;
|
|
142
142
|
}
|
|
143
143
|
export declare const IdNamespaceType: {
|
|
144
144
|
readonly SOURCE: "SOURCE";
|
|
@@ -148,79 +148,83 @@ export type IdNamespaceType =
|
|
|
148
148
|
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
149
149
|
export interface IdMappingWorkflowInputSource {
|
|
150
150
|
inputSourceARN: string | undefined;
|
|
151
|
-
schemaName?: string;
|
|
152
|
-
type?: IdNamespaceType;
|
|
151
|
+
schemaName?: string | undefined;
|
|
152
|
+
type?: IdNamespaceType | undefined;
|
|
153
153
|
}
|
|
154
154
|
export interface IdMappingWorkflowOutputSource {
|
|
155
155
|
outputS3Path: string | undefined;
|
|
156
|
-
KMSArn?: string;
|
|
156
|
+
KMSArn?: string | undefined;
|
|
157
157
|
}
|
|
158
158
|
export interface CreateIdMappingWorkflowInput {
|
|
159
159
|
workflowName: string | undefined;
|
|
160
|
-
description?: string;
|
|
160
|
+
description?: string | undefined;
|
|
161
161
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
162
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
162
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
163
163
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
164
|
-
roleArn?: string;
|
|
165
|
-
tags?: Record<string, string
|
|
164
|
+
roleArn?: string | undefined;
|
|
165
|
+
tags?: Record<string, string> | undefined;
|
|
166
166
|
}
|
|
167
167
|
export interface CreateIdMappingWorkflowOutput {
|
|
168
168
|
workflowName: string | undefined;
|
|
169
169
|
workflowArn: string | undefined;
|
|
170
|
-
description?: string;
|
|
170
|
+
description?: string | undefined;
|
|
171
171
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
172
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
172
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
173
173
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
174
|
-
roleArn?: string;
|
|
174
|
+
roleArn?: string | undefined;
|
|
175
175
|
}
|
|
176
176
|
export declare class ExceedsLimitException extends __BaseException {
|
|
177
177
|
readonly name: "ExceedsLimitException";
|
|
178
178
|
readonly $fault: "client";
|
|
179
|
-
quotaName?: string;
|
|
180
|
-
quotaValue?: number;
|
|
179
|
+
quotaName?: string | undefined;
|
|
180
|
+
quotaValue?: number | undefined;
|
|
181
181
|
constructor(
|
|
182
182
|
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
183
183
|
);
|
|
184
184
|
}
|
|
185
185
|
export interface NamespaceProviderProperties {
|
|
186
186
|
providerServiceArn: string | undefined;
|
|
187
|
-
providerConfiguration?: __DocumentType;
|
|
187
|
+
providerConfiguration?: __DocumentType | undefined;
|
|
188
188
|
}
|
|
189
189
|
export interface NamespaceRuleBasedProperties {
|
|
190
|
-
rules?: Rule[];
|
|
191
|
-
ruleDefinitionTypes?: IdMappingWorkflowRuleDefinitionType[];
|
|
192
|
-
attributeMatchingModel?: AttributeMatchingModel;
|
|
193
|
-
recordMatchingModels?: RecordMatchingModel[];
|
|
190
|
+
rules?: Rule[] | undefined;
|
|
191
|
+
ruleDefinitionTypes?: IdMappingWorkflowRuleDefinitionType[] | undefined;
|
|
192
|
+
attributeMatchingModel?: AttributeMatchingModel | undefined;
|
|
193
|
+
recordMatchingModels?: RecordMatchingModel[] | undefined;
|
|
194
194
|
}
|
|
195
195
|
export interface IdNamespaceIdMappingWorkflowProperties {
|
|
196
196
|
idMappingType: IdMappingType | undefined;
|
|
197
|
-
ruleBasedProperties?: NamespaceRuleBasedProperties;
|
|
198
|
-
providerProperties?: NamespaceProviderProperties;
|
|
197
|
+
ruleBasedProperties?: NamespaceRuleBasedProperties | undefined;
|
|
198
|
+
providerProperties?: NamespaceProviderProperties | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface IdNamespaceInputSource {
|
|
201
201
|
inputSourceARN: string | undefined;
|
|
202
|
-
schemaName?: string;
|
|
202
|
+
schemaName?: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface CreateIdNamespaceInput {
|
|
205
205
|
idNamespaceName: string | undefined;
|
|
206
|
-
description?: string;
|
|
207
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
208
|
-
idMappingWorkflowProperties?:
|
|
206
|
+
description?: string | undefined;
|
|
207
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
208
|
+
idMappingWorkflowProperties?:
|
|
209
|
+
| IdNamespaceIdMappingWorkflowProperties[]
|
|
210
|
+
| undefined;
|
|
209
211
|
type: IdNamespaceType | undefined;
|
|
210
|
-
roleArn?: string;
|
|
211
|
-
tags?: Record<string, string
|
|
212
|
+
roleArn?: string | undefined;
|
|
213
|
+
tags?: Record<string, string> | undefined;
|
|
212
214
|
}
|
|
213
215
|
export interface CreateIdNamespaceOutput {
|
|
214
216
|
idNamespaceName: string | undefined;
|
|
215
217
|
idNamespaceArn: string | undefined;
|
|
216
|
-
description?: string;
|
|
217
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
218
|
-
idMappingWorkflowProperties?:
|
|
218
|
+
description?: string | undefined;
|
|
219
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
220
|
+
idMappingWorkflowProperties?:
|
|
221
|
+
| IdNamespaceIdMappingWorkflowProperties[]
|
|
222
|
+
| undefined;
|
|
219
223
|
type: IdNamespaceType | undefined;
|
|
220
|
-
roleArn?: string;
|
|
224
|
+
roleArn?: string | undefined;
|
|
221
225
|
createdAt: Date | undefined;
|
|
222
226
|
updatedAt: Date | undefined;
|
|
223
|
-
tags?: Record<string, string
|
|
227
|
+
tags?: Record<string, string> | undefined;
|
|
224
228
|
}
|
|
225
229
|
export declare const IncrementalRunType: {
|
|
226
230
|
readonly IMMEDIATE: "IMMEDIATE";
|
|
@@ -228,22 +232,22 @@ export declare const IncrementalRunType: {
|
|
|
228
232
|
export type IncrementalRunType =
|
|
229
233
|
(typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
230
234
|
export interface IncrementalRunConfig {
|
|
231
|
-
incrementalRunType?: IncrementalRunType;
|
|
235
|
+
incrementalRunType?: IncrementalRunType | undefined;
|
|
232
236
|
}
|
|
233
237
|
export interface InputSource {
|
|
234
238
|
inputSourceARN: string | undefined;
|
|
235
239
|
schemaName: string | undefined;
|
|
236
|
-
applyNormalization?: boolean;
|
|
240
|
+
applyNormalization?: boolean | undefined;
|
|
237
241
|
}
|
|
238
242
|
export interface OutputAttribute {
|
|
239
243
|
name: string | undefined;
|
|
240
|
-
hashed?: boolean;
|
|
244
|
+
hashed?: boolean | undefined;
|
|
241
245
|
}
|
|
242
246
|
export interface OutputSource {
|
|
243
247
|
outputS3Path: string | undefined;
|
|
244
|
-
KMSArn?: string;
|
|
248
|
+
KMSArn?: string | undefined;
|
|
245
249
|
output: OutputAttribute[] | undefined;
|
|
246
|
-
applyNormalization?: boolean;
|
|
250
|
+
applyNormalization?: boolean | undefined;
|
|
247
251
|
}
|
|
248
252
|
export declare const ResolutionType: {
|
|
249
253
|
readonly ML_MATCHING: "ML_MATCHING";
|
|
@@ -260,31 +264,31 @@ export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
|
260
264
|
export interface RuleBasedProperties {
|
|
261
265
|
rules: Rule[] | undefined;
|
|
262
266
|
attributeMatchingModel: AttributeMatchingModel | undefined;
|
|
263
|
-
matchPurpose?: MatchPurpose;
|
|
267
|
+
matchPurpose?: MatchPurpose | undefined;
|
|
264
268
|
}
|
|
265
269
|
export interface ResolutionTechniques {
|
|
266
270
|
resolutionType: ResolutionType | undefined;
|
|
267
|
-
ruleBasedProperties?: RuleBasedProperties;
|
|
268
|
-
providerProperties?: ProviderProperties;
|
|
271
|
+
ruleBasedProperties?: RuleBasedProperties | undefined;
|
|
272
|
+
providerProperties?: ProviderProperties | undefined;
|
|
269
273
|
}
|
|
270
274
|
export interface CreateMatchingWorkflowInput {
|
|
271
275
|
workflowName: string | undefined;
|
|
272
|
-
description?: string;
|
|
276
|
+
description?: string | undefined;
|
|
273
277
|
inputSourceConfig: InputSource[] | undefined;
|
|
274
278
|
outputSourceConfig: OutputSource[] | undefined;
|
|
275
279
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
276
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
280
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
277
281
|
roleArn: string | undefined;
|
|
278
|
-
tags?: Record<string, string
|
|
282
|
+
tags?: Record<string, string> | undefined;
|
|
279
283
|
}
|
|
280
284
|
export interface CreateMatchingWorkflowOutput {
|
|
281
285
|
workflowName: string | undefined;
|
|
282
286
|
workflowArn: string | undefined;
|
|
283
|
-
description?: string;
|
|
287
|
+
description?: string | undefined;
|
|
284
288
|
inputSourceConfig: InputSource[] | undefined;
|
|
285
289
|
outputSourceConfig: OutputSource[] | undefined;
|
|
286
290
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
287
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
291
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
288
292
|
roleArn: string | undefined;
|
|
289
293
|
}
|
|
290
294
|
export declare const SchemaAttributeType: {
|
|
@@ -314,16 +318,16 @@ export type SchemaAttributeType =
|
|
|
314
318
|
export interface SchemaInputAttribute {
|
|
315
319
|
fieldName: string | undefined;
|
|
316
320
|
type: SchemaAttributeType | undefined;
|
|
317
|
-
groupName?: string;
|
|
318
|
-
matchKey?: string;
|
|
319
|
-
subType?: string;
|
|
320
|
-
hashed?: boolean;
|
|
321
|
+
groupName?: string | undefined;
|
|
322
|
+
matchKey?: string | undefined;
|
|
323
|
+
subType?: string | undefined;
|
|
324
|
+
hashed?: boolean | undefined;
|
|
321
325
|
}
|
|
322
326
|
export interface CreateSchemaMappingInput {
|
|
323
327
|
schemaName: string | undefined;
|
|
324
|
-
description?: string;
|
|
328
|
+
description?: string | undefined;
|
|
325
329
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
326
|
-
tags?: Record<string, string
|
|
330
|
+
tags?: Record<string, string> | undefined;
|
|
327
331
|
}
|
|
328
332
|
export interface CreateSchemaMappingOutput {
|
|
329
333
|
schemaName: string | undefined;
|
|
@@ -356,7 +360,7 @@ export interface DeletePolicyStatementInput {
|
|
|
356
360
|
export interface DeletePolicyStatementOutput {
|
|
357
361
|
arn: string | undefined;
|
|
358
362
|
token: string | undefined;
|
|
359
|
-
policy?: string;
|
|
363
|
+
policy?: string | undefined;
|
|
360
364
|
}
|
|
361
365
|
export interface DeleteSchemaMappingInput {
|
|
362
366
|
schemaName: string | undefined;
|
|
@@ -369,20 +373,20 @@ export interface GetIdMappingJobInput {
|
|
|
369
373
|
jobId: string | undefined;
|
|
370
374
|
}
|
|
371
375
|
export interface ErrorDetails {
|
|
372
|
-
errorMessage?: string;
|
|
376
|
+
errorMessage?: string | undefined;
|
|
373
377
|
}
|
|
374
378
|
export interface IdMappingJobMetrics {
|
|
375
|
-
inputRecords?: number;
|
|
376
|
-
totalRecordsProcessed?: number;
|
|
377
|
-
recordsNotProcessed?: number;
|
|
378
|
-
totalMappedRecords?: number;
|
|
379
|
-
totalMappedSourceRecords?: number;
|
|
380
|
-
totalMappedTargetRecords?: number;
|
|
379
|
+
inputRecords?: number | undefined;
|
|
380
|
+
totalRecordsProcessed?: number | undefined;
|
|
381
|
+
recordsNotProcessed?: number | undefined;
|
|
382
|
+
totalMappedRecords?: number | undefined;
|
|
383
|
+
totalMappedSourceRecords?: number | undefined;
|
|
384
|
+
totalMappedTargetRecords?: number | undefined;
|
|
381
385
|
}
|
|
382
386
|
export interface IdMappingJobOutputSource {
|
|
383
387
|
roleArn: string | undefined;
|
|
384
388
|
outputS3Path: string | undefined;
|
|
385
|
-
KMSArn?: string;
|
|
389
|
+
KMSArn?: string | undefined;
|
|
386
390
|
}
|
|
387
391
|
export declare const JobStatus: {
|
|
388
392
|
readonly FAILED: "FAILED";
|
|
@@ -395,10 +399,10 @@ export interface GetIdMappingJobOutput {
|
|
|
395
399
|
jobId: string | undefined;
|
|
396
400
|
status: JobStatus | undefined;
|
|
397
401
|
startTime: Date | undefined;
|
|
398
|
-
endTime?: Date;
|
|
399
|
-
metrics?: IdMappingJobMetrics;
|
|
400
|
-
errorDetails?: ErrorDetails;
|
|
401
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
402
|
+
endTime?: Date | undefined;
|
|
403
|
+
metrics?: IdMappingJobMetrics | undefined;
|
|
404
|
+
errorDetails?: ErrorDetails | undefined;
|
|
405
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
402
406
|
}
|
|
403
407
|
export interface GetIdMappingWorkflowInput {
|
|
404
408
|
workflowName: string | undefined;
|
|
@@ -406,14 +410,14 @@ export interface GetIdMappingWorkflowInput {
|
|
|
406
410
|
export interface GetIdMappingWorkflowOutput {
|
|
407
411
|
workflowName: string | undefined;
|
|
408
412
|
workflowArn: string | undefined;
|
|
409
|
-
description?: string;
|
|
413
|
+
description?: string | undefined;
|
|
410
414
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
411
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
415
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
412
416
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
413
417
|
createdAt: Date | undefined;
|
|
414
418
|
updatedAt: Date | undefined;
|
|
415
|
-
roleArn?: string;
|
|
416
|
-
tags?: Record<string, string
|
|
419
|
+
roleArn?: string | undefined;
|
|
420
|
+
tags?: Record<string, string> | undefined;
|
|
417
421
|
}
|
|
418
422
|
export interface GetIdNamespaceInput {
|
|
419
423
|
idNamespaceName: string | undefined;
|
|
@@ -421,47 +425,49 @@ export interface GetIdNamespaceInput {
|
|
|
421
425
|
export interface GetIdNamespaceOutput {
|
|
422
426
|
idNamespaceName: string | undefined;
|
|
423
427
|
idNamespaceArn: string | undefined;
|
|
424
|
-
description?: string;
|
|
425
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
426
|
-
idMappingWorkflowProperties?:
|
|
428
|
+
description?: string | undefined;
|
|
429
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
430
|
+
idMappingWorkflowProperties?:
|
|
431
|
+
| IdNamespaceIdMappingWorkflowProperties[]
|
|
432
|
+
| undefined;
|
|
427
433
|
type: IdNamespaceType | undefined;
|
|
428
|
-
roleArn?: string;
|
|
434
|
+
roleArn?: string | undefined;
|
|
429
435
|
createdAt: Date | undefined;
|
|
430
436
|
updatedAt: Date | undefined;
|
|
431
|
-
tags?: Record<string, string
|
|
437
|
+
tags?: Record<string, string> | undefined;
|
|
432
438
|
}
|
|
433
439
|
export interface GetMatchIdInput {
|
|
434
440
|
workflowName: string | undefined;
|
|
435
441
|
record: Record<string, string> | undefined;
|
|
436
|
-
applyNormalization?: boolean;
|
|
442
|
+
applyNormalization?: boolean | undefined;
|
|
437
443
|
}
|
|
438
444
|
export interface GetMatchIdOutput {
|
|
439
|
-
matchId?: string;
|
|
440
|
-
matchRule?: string;
|
|
445
|
+
matchId?: string | undefined;
|
|
446
|
+
matchRule?: string | undefined;
|
|
441
447
|
}
|
|
442
448
|
export interface GetMatchingJobInput {
|
|
443
449
|
workflowName: string | undefined;
|
|
444
450
|
jobId: string | undefined;
|
|
445
451
|
}
|
|
446
452
|
export interface JobMetrics {
|
|
447
|
-
inputRecords?: number;
|
|
448
|
-
totalRecordsProcessed?: number;
|
|
449
|
-
recordsNotProcessed?: number;
|
|
450
|
-
matchIDs?: number;
|
|
453
|
+
inputRecords?: number | undefined;
|
|
454
|
+
totalRecordsProcessed?: number | undefined;
|
|
455
|
+
recordsNotProcessed?: number | undefined;
|
|
456
|
+
matchIDs?: number | undefined;
|
|
451
457
|
}
|
|
452
458
|
export interface JobOutputSource {
|
|
453
459
|
roleArn: string | undefined;
|
|
454
460
|
outputS3Path: string | undefined;
|
|
455
|
-
KMSArn?: string;
|
|
461
|
+
KMSArn?: string | undefined;
|
|
456
462
|
}
|
|
457
463
|
export interface GetMatchingJobOutput {
|
|
458
464
|
jobId: string | undefined;
|
|
459
465
|
status: JobStatus | undefined;
|
|
460
466
|
startTime: Date | undefined;
|
|
461
|
-
endTime?: Date;
|
|
462
|
-
metrics?: JobMetrics;
|
|
463
|
-
errorDetails?: ErrorDetails;
|
|
464
|
-
outputSourceConfig?: JobOutputSource[];
|
|
467
|
+
endTime?: Date | undefined;
|
|
468
|
+
metrics?: JobMetrics | undefined;
|
|
469
|
+
errorDetails?: ErrorDetails | undefined;
|
|
470
|
+
outputSourceConfig?: JobOutputSource[] | undefined;
|
|
465
471
|
}
|
|
466
472
|
export interface GetMatchingWorkflowInput {
|
|
467
473
|
workflowName: string | undefined;
|
|
@@ -469,15 +475,15 @@ export interface GetMatchingWorkflowInput {
|
|
|
469
475
|
export interface GetMatchingWorkflowOutput {
|
|
470
476
|
workflowName: string | undefined;
|
|
471
477
|
workflowArn: string | undefined;
|
|
472
|
-
description?: string;
|
|
478
|
+
description?: string | undefined;
|
|
473
479
|
inputSourceConfig: InputSource[] | undefined;
|
|
474
480
|
outputSourceConfig: OutputSource[] | undefined;
|
|
475
481
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
476
482
|
createdAt: Date | undefined;
|
|
477
483
|
updatedAt: Date | undefined;
|
|
478
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
484
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
479
485
|
roleArn: string | undefined;
|
|
480
|
-
tags?: Record<string, string
|
|
486
|
+
tags?: Record<string, string> | undefined;
|
|
481
487
|
}
|
|
482
488
|
export interface GetPolicyInput {
|
|
483
489
|
arn: string | undefined;
|
|
@@ -485,7 +491,7 @@ export interface GetPolicyInput {
|
|
|
485
491
|
export interface GetPolicyOutput {
|
|
486
492
|
arn: string | undefined;
|
|
487
493
|
token: string | undefined;
|
|
488
|
-
policy?: string;
|
|
494
|
+
policy?: string | undefined;
|
|
489
495
|
}
|
|
490
496
|
export interface GetProviderServiceInput {
|
|
491
497
|
providerName: string | undefined;
|
|
@@ -494,12 +500,12 @@ export interface GetProviderServiceInput {
|
|
|
494
500
|
export interface ProviderSchemaAttribute {
|
|
495
501
|
fieldName: string | undefined;
|
|
496
502
|
type: SchemaAttributeType | undefined;
|
|
497
|
-
subType?: string;
|
|
498
|
-
hashing?: boolean;
|
|
503
|
+
subType?: string | undefined;
|
|
504
|
+
hashing?: boolean | undefined;
|
|
499
505
|
}
|
|
500
506
|
export interface ProviderComponentSchema {
|
|
501
|
-
schemas?: string[][];
|
|
502
|
-
providerSchemaAttributes?: ProviderSchemaAttribute[];
|
|
507
|
+
schemas?: string[][] | undefined;
|
|
508
|
+
providerSchemaAttributes?: ProviderSchemaAttribute[] | undefined;
|
|
503
509
|
}
|
|
504
510
|
export interface ProviderMarketplaceConfiguration {
|
|
505
511
|
dataSetId: string | undefined;
|
|
@@ -529,13 +535,13 @@ export declare namespace ProviderEndpointConfiguration {
|
|
|
529
535
|
) => T;
|
|
530
536
|
}
|
|
531
537
|
export interface ProviderIdNameSpaceConfiguration {
|
|
532
|
-
description?: string;
|
|
533
|
-
providerTargetConfigurationDefinition?: __DocumentType;
|
|
534
|
-
providerSourceConfigurationDefinition?: __DocumentType;
|
|
538
|
+
description?: string | undefined;
|
|
539
|
+
providerTargetConfigurationDefinition?: __DocumentType | undefined;
|
|
540
|
+
providerSourceConfigurationDefinition?: __DocumentType | undefined;
|
|
535
541
|
}
|
|
536
542
|
export interface ProviderIntermediateDataAccessConfiguration {
|
|
537
|
-
awsAccountIds?: string[];
|
|
538
|
-
requiredBucketActions?: string[];
|
|
543
|
+
awsAccountIds?: string[] | undefined;
|
|
544
|
+
requiredBucketActions?: string[] | undefined;
|
|
539
545
|
}
|
|
540
546
|
export declare const ServiceType: {
|
|
541
547
|
readonly ASSIGNMENT: "ASSIGNMENT";
|
|
@@ -548,14 +554,18 @@ export interface GetProviderServiceOutput {
|
|
|
548
554
|
providerServiceDisplayName: string | undefined;
|
|
549
555
|
providerServiceType: ServiceType | undefined;
|
|
550
556
|
providerServiceArn: string | undefined;
|
|
551
|
-
providerConfigurationDefinition?: __DocumentType;
|
|
552
|
-
providerIdNameSpaceConfiguration?:
|
|
553
|
-
|
|
557
|
+
providerConfigurationDefinition?: __DocumentType | undefined;
|
|
558
|
+
providerIdNameSpaceConfiguration?:
|
|
559
|
+
| ProviderIdNameSpaceConfiguration
|
|
560
|
+
| undefined;
|
|
561
|
+
providerJobConfiguration?: __DocumentType | undefined;
|
|
554
562
|
providerEndpointConfiguration: ProviderEndpointConfiguration | undefined;
|
|
555
563
|
anonymizedOutput: boolean | undefined;
|
|
556
564
|
providerEntityOutputDefinition: __DocumentType | undefined;
|
|
557
|
-
providerIntermediateDataAccessConfiguration?:
|
|
558
|
-
|
|
565
|
+
providerIntermediateDataAccessConfiguration?:
|
|
566
|
+
| ProviderIntermediateDataAccessConfiguration
|
|
567
|
+
| undefined;
|
|
568
|
+
providerComponentSchema?: ProviderComponentSchema | undefined;
|
|
559
569
|
}
|
|
560
570
|
export interface GetSchemaMappingInput {
|
|
561
571
|
schemaName: string | undefined;
|
|
@@ -563,31 +573,31 @@ export interface GetSchemaMappingInput {
|
|
|
563
573
|
export interface GetSchemaMappingOutput {
|
|
564
574
|
schemaName: string | undefined;
|
|
565
575
|
schemaArn: string | undefined;
|
|
566
|
-
description?: string;
|
|
576
|
+
description?: string | undefined;
|
|
567
577
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
568
578
|
createdAt: Date | undefined;
|
|
569
579
|
updatedAt: Date | undefined;
|
|
570
|
-
tags?: Record<string, string
|
|
580
|
+
tags?: Record<string, string> | undefined;
|
|
571
581
|
hasWorkflows: boolean | undefined;
|
|
572
582
|
}
|
|
573
583
|
export interface ListIdMappingJobsInput {
|
|
574
584
|
workflowName: string | undefined;
|
|
575
|
-
nextToken?: string;
|
|
576
|
-
maxResults?: number;
|
|
585
|
+
nextToken?: string | undefined;
|
|
586
|
+
maxResults?: number | undefined;
|
|
577
587
|
}
|
|
578
588
|
export interface JobSummary {
|
|
579
589
|
jobId: string | undefined;
|
|
580
590
|
status: JobStatus | undefined;
|
|
581
591
|
startTime: Date | undefined;
|
|
582
|
-
endTime?: Date;
|
|
592
|
+
endTime?: Date | undefined;
|
|
583
593
|
}
|
|
584
594
|
export interface ListIdMappingJobsOutput {
|
|
585
|
-
jobs?: JobSummary[];
|
|
586
|
-
nextToken?: string;
|
|
595
|
+
jobs?: JobSummary[] | undefined;
|
|
596
|
+
nextToken?: string | undefined;
|
|
587
597
|
}
|
|
588
598
|
export interface ListIdMappingWorkflowsInput {
|
|
589
|
-
nextToken?: string;
|
|
590
|
-
maxResults?: number;
|
|
599
|
+
nextToken?: string | undefined;
|
|
600
|
+
maxResults?: number | undefined;
|
|
591
601
|
}
|
|
592
602
|
export interface IdMappingWorkflowSummary {
|
|
593
603
|
workflowName: string | undefined;
|
|
@@ -596,12 +606,12 @@ export interface IdMappingWorkflowSummary {
|
|
|
596
606
|
updatedAt: Date | undefined;
|
|
597
607
|
}
|
|
598
608
|
export interface ListIdMappingWorkflowsOutput {
|
|
599
|
-
workflowSummaries?: IdMappingWorkflowSummary[];
|
|
600
|
-
nextToken?: string;
|
|
609
|
+
workflowSummaries?: IdMappingWorkflowSummary[] | undefined;
|
|
610
|
+
nextToken?: string | undefined;
|
|
601
611
|
}
|
|
602
612
|
export interface ListIdNamespacesInput {
|
|
603
|
-
nextToken?: string;
|
|
604
|
-
maxResults?: number;
|
|
613
|
+
nextToken?: string | undefined;
|
|
614
|
+
maxResults?: number | undefined;
|
|
605
615
|
}
|
|
606
616
|
export interface IdNamespaceIdMappingWorkflowMetadata {
|
|
607
617
|
idMappingType: IdMappingType | undefined;
|
|
@@ -609,28 +619,30 @@ export interface IdNamespaceIdMappingWorkflowMetadata {
|
|
|
609
619
|
export interface IdNamespaceSummary {
|
|
610
620
|
idNamespaceName: string | undefined;
|
|
611
621
|
idNamespaceArn: string | undefined;
|
|
612
|
-
description?: string;
|
|
613
|
-
idMappingWorkflowProperties?:
|
|
622
|
+
description?: string | undefined;
|
|
623
|
+
idMappingWorkflowProperties?:
|
|
624
|
+
| IdNamespaceIdMappingWorkflowMetadata[]
|
|
625
|
+
| undefined;
|
|
614
626
|
type: IdNamespaceType | undefined;
|
|
615
627
|
createdAt: Date | undefined;
|
|
616
628
|
updatedAt: Date | undefined;
|
|
617
629
|
}
|
|
618
630
|
export interface ListIdNamespacesOutput {
|
|
619
|
-
idNamespaceSummaries?: IdNamespaceSummary[];
|
|
620
|
-
nextToken?: string;
|
|
631
|
+
idNamespaceSummaries?: IdNamespaceSummary[] | undefined;
|
|
632
|
+
nextToken?: string | undefined;
|
|
621
633
|
}
|
|
622
634
|
export interface ListMatchingJobsInput {
|
|
623
635
|
workflowName: string | undefined;
|
|
624
|
-
nextToken?: string;
|
|
625
|
-
maxResults?: number;
|
|
636
|
+
nextToken?: string | undefined;
|
|
637
|
+
maxResults?: number | undefined;
|
|
626
638
|
}
|
|
627
639
|
export interface ListMatchingJobsOutput {
|
|
628
|
-
jobs?: JobSummary[];
|
|
629
|
-
nextToken?: string;
|
|
640
|
+
jobs?: JobSummary[] | undefined;
|
|
641
|
+
nextToken?: string | undefined;
|
|
630
642
|
}
|
|
631
643
|
export interface ListMatchingWorkflowsInput {
|
|
632
|
-
nextToken?: string;
|
|
633
|
-
maxResults?: number;
|
|
644
|
+
nextToken?: string | undefined;
|
|
645
|
+
maxResults?: number | undefined;
|
|
634
646
|
}
|
|
635
647
|
export interface MatchingWorkflowSummary {
|
|
636
648
|
workflowName: string | undefined;
|
|
@@ -640,13 +652,13 @@ export interface MatchingWorkflowSummary {
|
|
|
640
652
|
resolutionType: ResolutionType | undefined;
|
|
641
653
|
}
|
|
642
654
|
export interface ListMatchingWorkflowsOutput {
|
|
643
|
-
workflowSummaries?: MatchingWorkflowSummary[];
|
|
644
|
-
nextToken?: string;
|
|
655
|
+
workflowSummaries?: MatchingWorkflowSummary[] | undefined;
|
|
656
|
+
nextToken?: string | undefined;
|
|
645
657
|
}
|
|
646
658
|
export interface ListProviderServicesInput {
|
|
647
|
-
nextToken?: string;
|
|
648
|
-
maxResults?: number;
|
|
649
|
-
providerName?: string;
|
|
659
|
+
nextToken?: string | undefined;
|
|
660
|
+
maxResults?: number | undefined;
|
|
661
|
+
providerName?: string | undefined;
|
|
650
662
|
}
|
|
651
663
|
export interface ProviderServiceSummary {
|
|
652
664
|
providerServiceArn: string | undefined;
|
|
@@ -656,12 +668,12 @@ export interface ProviderServiceSummary {
|
|
|
656
668
|
providerServiceType: ServiceType | undefined;
|
|
657
669
|
}
|
|
658
670
|
export interface ListProviderServicesOutput {
|
|
659
|
-
providerServiceSummaries?: ProviderServiceSummary[];
|
|
660
|
-
nextToken?: string;
|
|
671
|
+
providerServiceSummaries?: ProviderServiceSummary[] | undefined;
|
|
672
|
+
nextToken?: string | undefined;
|
|
661
673
|
}
|
|
662
674
|
export interface ListSchemaMappingsInput {
|
|
663
|
-
nextToken?: string;
|
|
664
|
-
maxResults?: number;
|
|
675
|
+
nextToken?: string | undefined;
|
|
676
|
+
maxResults?: number | undefined;
|
|
665
677
|
}
|
|
666
678
|
export interface SchemaMappingSummary {
|
|
667
679
|
schemaName: string | undefined;
|
|
@@ -671,8 +683,8 @@ export interface SchemaMappingSummary {
|
|
|
671
683
|
hasWorkflows: boolean | undefined;
|
|
672
684
|
}
|
|
673
685
|
export interface ListSchemaMappingsOutput {
|
|
674
|
-
schemaList?: SchemaMappingSummary[];
|
|
675
|
-
nextToken?: string;
|
|
686
|
+
schemaList?: SchemaMappingSummary[] | undefined;
|
|
687
|
+
nextToken?: string | undefined;
|
|
676
688
|
}
|
|
677
689
|
export interface ListTagsForResourceInput {
|
|
678
690
|
resourceArn: string | undefined;
|
|
@@ -682,21 +694,21 @@ export interface ListTagsForResourceOutput {
|
|
|
682
694
|
}
|
|
683
695
|
export interface PutPolicyInput {
|
|
684
696
|
arn: string | undefined;
|
|
685
|
-
token?: string;
|
|
697
|
+
token?: string | undefined;
|
|
686
698
|
policy: string | undefined;
|
|
687
699
|
}
|
|
688
700
|
export interface PutPolicyOutput {
|
|
689
701
|
arn: string | undefined;
|
|
690
702
|
token: string | undefined;
|
|
691
|
-
policy?: string;
|
|
703
|
+
policy?: string | undefined;
|
|
692
704
|
}
|
|
693
705
|
export interface StartIdMappingJobInput {
|
|
694
706
|
workflowName: string | undefined;
|
|
695
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
707
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
696
708
|
}
|
|
697
709
|
export interface StartIdMappingJobOutput {
|
|
698
710
|
jobId: string | undefined;
|
|
699
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
711
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
700
712
|
}
|
|
701
713
|
export interface StartMatchingJobInput {
|
|
702
714
|
workflowName: string | undefined;
|
|
@@ -716,66 +728,70 @@ export interface UntagResourceInput {
|
|
|
716
728
|
export interface UntagResourceOutput {}
|
|
717
729
|
export interface UpdateIdMappingWorkflowInput {
|
|
718
730
|
workflowName: string | undefined;
|
|
719
|
-
description?: string;
|
|
731
|
+
description?: string | undefined;
|
|
720
732
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
721
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
733
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
722
734
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
723
|
-
roleArn?: string;
|
|
735
|
+
roleArn?: string | undefined;
|
|
724
736
|
}
|
|
725
737
|
export interface UpdateIdMappingWorkflowOutput {
|
|
726
738
|
workflowName: string | undefined;
|
|
727
739
|
workflowArn: string | undefined;
|
|
728
|
-
description?: string;
|
|
740
|
+
description?: string | undefined;
|
|
729
741
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
730
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
742
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
731
743
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
732
|
-
roleArn?: string;
|
|
744
|
+
roleArn?: string | undefined;
|
|
733
745
|
}
|
|
734
746
|
export interface UpdateIdNamespaceInput {
|
|
735
747
|
idNamespaceName: string | undefined;
|
|
736
|
-
description?: string;
|
|
737
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
738
|
-
idMappingWorkflowProperties?:
|
|
739
|
-
|
|
748
|
+
description?: string | undefined;
|
|
749
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
750
|
+
idMappingWorkflowProperties?:
|
|
751
|
+
| IdNamespaceIdMappingWorkflowProperties[]
|
|
752
|
+
| undefined;
|
|
753
|
+
roleArn?: string | undefined;
|
|
740
754
|
}
|
|
741
755
|
export interface UpdateIdNamespaceOutput {
|
|
742
756
|
idNamespaceName: string | undefined;
|
|
743
757
|
idNamespaceArn: string | undefined;
|
|
744
|
-
description?: string;
|
|
745
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
746
|
-
idMappingWorkflowProperties?:
|
|
758
|
+
description?: string | undefined;
|
|
759
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
760
|
+
idMappingWorkflowProperties?:
|
|
761
|
+
| IdNamespaceIdMappingWorkflowProperties[]
|
|
762
|
+
| undefined;
|
|
747
763
|
type: IdNamespaceType | undefined;
|
|
748
|
-
roleArn?: string;
|
|
764
|
+
roleArn?: string | undefined;
|
|
749
765
|
createdAt: Date | undefined;
|
|
750
766
|
updatedAt: Date | undefined;
|
|
751
767
|
}
|
|
752
768
|
export interface UpdateMatchingWorkflowInput {
|
|
753
769
|
workflowName: string | undefined;
|
|
754
|
-
description?: string;
|
|
770
|
+
description?: string | undefined;
|
|
755
771
|
inputSourceConfig: InputSource[] | undefined;
|
|
756
772
|
outputSourceConfig: OutputSource[] | undefined;
|
|
757
773
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
758
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
774
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
759
775
|
roleArn: string | undefined;
|
|
760
776
|
}
|
|
761
777
|
export interface UpdateMatchingWorkflowOutput {
|
|
762
778
|
workflowName: string | undefined;
|
|
763
|
-
description?: string;
|
|
779
|
+
description?: string | undefined;
|
|
764
780
|
inputSourceConfig: InputSource[] | undefined;
|
|
765
781
|
outputSourceConfig: OutputSource[] | undefined;
|
|
766
782
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
767
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
783
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
768
784
|
roleArn: string | undefined;
|
|
769
785
|
}
|
|
770
786
|
export interface UpdateSchemaMappingInput {
|
|
771
787
|
schemaName: string | undefined;
|
|
772
|
-
description?: string;
|
|
788
|
+
description?: string | undefined;
|
|
773
789
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
774
790
|
}
|
|
775
791
|
export interface UpdateSchemaMappingOutput {
|
|
776
792
|
schemaName: string | undefined;
|
|
777
793
|
schemaArn: string | undefined;
|
|
778
|
-
description?: string;
|
|
794
|
+
description?: string | undefined;
|
|
779
795
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
780
796
|
}
|
|
781
797
|
export declare const GetMatchIdInputFilterSensitiveLog: (
|