@aws-sdk/client-entityresolution 3.554.0 → 3.556.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 +79 -7
- package/dist-cjs/index.js +614 -56
- package/dist-es/EntityResolution.js +18 -0
- package/dist-es/commands/AddPolicyStatementCommand.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 +9 -0
- package/dist-es/models/models_0.js +40 -32
- package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +363 -7
- package/dist-types/EntityResolution.d.ts +64 -0
- package/dist-types/EntityResolutionClient.d.ts +11 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -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 +9 -0
- package/dist-types/models/models_0.d.ts +876 -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 +81 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/AddPolicyStatementCommand.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 +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +216 -41
- 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 +108 -0
- package/package.json +4 -4
|
@@ -8,17 +8,68 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
-
export declare const
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
11
|
+
export declare const StatementEffect: {
|
|
12
|
+
readonly Allow: "Allow";
|
|
13
|
+
readonly Deny: "Deny";
|
|
14
14
|
};
|
|
15
|
-
export type
|
|
16
|
-
(typeof
|
|
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
|
+
}
|
|
17
30
|
export declare class ConflictException extends __BaseException {
|
|
18
31
|
readonly name: "ConflictException";
|
|
19
32
|
readonly $fault: "client";
|
|
20
33
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
34
|
}
|
|
35
|
+
export declare class InternalServerException extends __BaseException {
|
|
36
|
+
readonly name: "InternalServerException";
|
|
37
|
+
readonly $fault: "server";
|
|
38
|
+
$retryable: {};
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceNotFoundException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ThrottlingException extends __BaseException {
|
|
51
|
+
readonly name: "ThrottlingException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
$retryable: {
|
|
54
|
+
throttling: boolean;
|
|
55
|
+
};
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ValidationException extends __BaseException {
|
|
61
|
+
readonly name: "ValidationException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export declare const AttributeMatchingModel: {
|
|
68
|
+
readonly MANY_TO_MANY: "MANY_TO_MANY";
|
|
69
|
+
readonly ONE_TO_ONE: "ONE_TO_ONE";
|
|
70
|
+
};
|
|
71
|
+
export type AttributeMatchingModel =
|
|
72
|
+
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
22
73
|
export declare const IdMappingType: {
|
|
23
74
|
readonly PROVIDER: "PROVIDER";
|
|
24
75
|
};
|
|
@@ -33,11 +84,18 @@ export interface ProviderProperties {
|
|
|
33
84
|
}
|
|
34
85
|
export interface IdMappingTechniques {
|
|
35
86
|
idMappingType: IdMappingType | undefined;
|
|
36
|
-
providerProperties
|
|
87
|
+
providerProperties?: ProviderProperties;
|
|
37
88
|
}
|
|
89
|
+
export declare const IdNamespaceType: {
|
|
90
|
+
readonly SOURCE: "SOURCE";
|
|
91
|
+
readonly TARGET: "TARGET";
|
|
92
|
+
};
|
|
93
|
+
export type IdNamespaceType =
|
|
94
|
+
(typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
38
95
|
export interface IdMappingWorkflowInputSource {
|
|
39
96
|
inputSourceARN: string | undefined;
|
|
40
|
-
schemaName
|
|
97
|
+
schemaName?: string;
|
|
98
|
+
type?: IdNamespaceType;
|
|
41
99
|
}
|
|
42
100
|
export interface IdMappingWorkflowOutputSource {
|
|
43
101
|
outputS3Path: string | undefined;
|
|
@@ -47,7 +105,7 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
47
105
|
workflowName: string | undefined;
|
|
48
106
|
description?: string;
|
|
49
107
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
50
|
-
outputSourceConfig
|
|
108
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
51
109
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
52
110
|
roleArn: string | undefined;
|
|
53
111
|
tags?: Record<string, string>;
|
|
@@ -57,7 +115,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
57
115
|
workflowArn: string | undefined;
|
|
58
116
|
description?: string;
|
|
59
117
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
60
|
-
outputSourceConfig
|
|
118
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
61
119
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
62
120
|
roleArn: string | undefined;
|
|
63
121
|
}
|
|
@@ -70,30 +128,38 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
70
128
|
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
71
129
|
);
|
|
72
130
|
}
|
|
73
|
-
export
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
$retryable: {};
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
79
|
-
);
|
|
131
|
+
export interface NamespaceProviderProperties {
|
|
132
|
+
providerServiceArn: string | undefined;
|
|
133
|
+
providerConfiguration?: __DocumentType;
|
|
80
134
|
}
|
|
81
|
-
export
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
$retryable: {
|
|
85
|
-
throttling: boolean;
|
|
86
|
-
};
|
|
87
|
-
constructor(
|
|
88
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
89
|
-
);
|
|
135
|
+
export interface IdNamespaceIdMappingWorkflowProperties {
|
|
136
|
+
idMappingType: IdMappingType | undefined;
|
|
137
|
+
providerProperties?: NamespaceProviderProperties;
|
|
90
138
|
}
|
|
91
|
-
export
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
139
|
+
export interface IdNamespaceInputSource {
|
|
140
|
+
inputSourceARN: string | undefined;
|
|
141
|
+
schemaName?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface CreateIdNamespaceInput {
|
|
144
|
+
idNamespaceName: string | undefined;
|
|
145
|
+
description?: string;
|
|
146
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
147
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
148
|
+
type: IdNamespaceType | undefined;
|
|
149
|
+
roleArn?: string;
|
|
150
|
+
tags?: Record<string, string>;
|
|
151
|
+
}
|
|
152
|
+
export interface CreateIdNamespaceOutput {
|
|
153
|
+
idNamespaceName: string | undefined;
|
|
154
|
+
idNamespaceArn: string | undefined;
|
|
155
|
+
description?: string;
|
|
156
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
157
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
158
|
+
type: IdNamespaceType | undefined;
|
|
159
|
+
roleArn?: string;
|
|
160
|
+
createdAt: Date | undefined;
|
|
161
|
+
updatedAt: Date | undefined;
|
|
162
|
+
tags?: Record<string, string>;
|
|
97
163
|
}
|
|
98
164
|
export declare const IncrementalRunType: {
|
|
99
165
|
readonly IMMEDIATE: "IMMEDIATE";
|
|
@@ -207,12 +273,27 @@ export interface DeleteIdMappingWorkflowInput {
|
|
|
207
273
|
export interface DeleteIdMappingWorkflowOutput {
|
|
208
274
|
message: string | undefined;
|
|
209
275
|
}
|
|
276
|
+
export interface DeleteIdNamespaceInput {
|
|
277
|
+
idNamespaceName: string | undefined;
|
|
278
|
+
}
|
|
279
|
+
export interface DeleteIdNamespaceOutput {
|
|
280
|
+
message: string | undefined;
|
|
281
|
+
}
|
|
210
282
|
export interface DeleteMatchingWorkflowInput {
|
|
211
283
|
workflowName: string | undefined;
|
|
212
284
|
}
|
|
213
285
|
export interface DeleteMatchingWorkflowOutput {
|
|
214
286
|
message: string | undefined;
|
|
215
287
|
}
|
|
288
|
+
export interface DeletePolicyStatementInput {
|
|
289
|
+
arn: string | undefined;
|
|
290
|
+
statementId: string | undefined;
|
|
291
|
+
}
|
|
292
|
+
export interface DeletePolicyStatementOutput {
|
|
293
|
+
arn: string | undefined;
|
|
294
|
+
token: string | undefined;
|
|
295
|
+
policy?: string;
|
|
296
|
+
}
|
|
216
297
|
export interface DeleteSchemaMappingInput {
|
|
217
298
|
schemaName: string | undefined;
|
|
218
299
|
}
|
|
@@ -231,6 +312,11 @@ export interface IdMappingJobMetrics {
|
|
|
231
312
|
totalRecordsProcessed?: number;
|
|
232
313
|
recordsNotProcessed?: number;
|
|
233
314
|
}
|
|
315
|
+
export interface IdMappingJobOutputSource {
|
|
316
|
+
roleArn: string | undefined;
|
|
317
|
+
outputS3Path: string | undefined;
|
|
318
|
+
KMSArn?: string;
|
|
319
|
+
}
|
|
234
320
|
export declare const JobStatus: {
|
|
235
321
|
readonly FAILED: "FAILED";
|
|
236
322
|
readonly QUEUED: "QUEUED";
|
|
@@ -245,13 +331,7 @@ export interface GetIdMappingJobOutput {
|
|
|
245
331
|
endTime?: Date;
|
|
246
332
|
metrics?: IdMappingJobMetrics;
|
|
247
333
|
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
|
-
);
|
|
334
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
255
335
|
}
|
|
256
336
|
export interface GetIdMappingWorkflowInput {
|
|
257
337
|
workflowName: string | undefined;
|
|
@@ -261,19 +341,36 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
261
341
|
workflowArn: string | undefined;
|
|
262
342
|
description?: string;
|
|
263
343
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
264
|
-
outputSourceConfig
|
|
344
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
265
345
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
266
346
|
createdAt: Date | undefined;
|
|
267
347
|
updatedAt: Date | undefined;
|
|
268
348
|
roleArn: string | undefined;
|
|
269
349
|
tags?: Record<string, string>;
|
|
270
350
|
}
|
|
351
|
+
export interface GetIdNamespaceInput {
|
|
352
|
+
idNamespaceName: string | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface GetIdNamespaceOutput {
|
|
355
|
+
idNamespaceName: string | undefined;
|
|
356
|
+
idNamespaceArn: string | undefined;
|
|
357
|
+
description?: string;
|
|
358
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
359
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
360
|
+
type: IdNamespaceType | undefined;
|
|
361
|
+
roleArn?: string;
|
|
362
|
+
createdAt: Date | undefined;
|
|
363
|
+
updatedAt: Date | undefined;
|
|
364
|
+
tags?: Record<string, string>;
|
|
365
|
+
}
|
|
271
366
|
export interface GetMatchIdInput {
|
|
272
367
|
workflowName: string | undefined;
|
|
273
368
|
record: Record<string, string> | undefined;
|
|
369
|
+
applyNormalization?: boolean;
|
|
274
370
|
}
|
|
275
371
|
export interface GetMatchIdOutput {
|
|
276
372
|
matchId?: string;
|
|
373
|
+
matchRule?: string;
|
|
277
374
|
}
|
|
278
375
|
export interface GetMatchingJobInput {
|
|
279
376
|
workflowName: string | undefined;
|
|
@@ -285,6 +382,11 @@ export interface JobMetrics {
|
|
|
285
382
|
recordsNotProcessed?: number;
|
|
286
383
|
matchIDs?: number;
|
|
287
384
|
}
|
|
385
|
+
export interface JobOutputSource {
|
|
386
|
+
roleArn: string | undefined;
|
|
387
|
+
outputS3Path: string | undefined;
|
|
388
|
+
KMSArn?: string;
|
|
389
|
+
}
|
|
288
390
|
export interface GetMatchingJobOutput {
|
|
289
391
|
jobId: string | undefined;
|
|
290
392
|
status: JobStatus | undefined;
|
|
@@ -292,6 +394,7 @@ export interface GetMatchingJobOutput {
|
|
|
292
394
|
endTime?: Date;
|
|
293
395
|
metrics?: JobMetrics;
|
|
294
396
|
errorDetails?: ErrorDetails;
|
|
397
|
+
outputSourceConfig?: JobOutputSource[];
|
|
295
398
|
}
|
|
296
399
|
export interface GetMatchingWorkflowInput {
|
|
297
400
|
workflowName: string | undefined;
|
|
@@ -309,10 +412,28 @@ export interface GetMatchingWorkflowOutput {
|
|
|
309
412
|
roleArn: string | undefined;
|
|
310
413
|
tags?: Record<string, string>;
|
|
311
414
|
}
|
|
415
|
+
export interface GetPolicyInput {
|
|
416
|
+
arn: string | undefined;
|
|
417
|
+
}
|
|
418
|
+
export interface GetPolicyOutput {
|
|
419
|
+
arn: string | undefined;
|
|
420
|
+
token: string | undefined;
|
|
421
|
+
policy?: string;
|
|
422
|
+
}
|
|
312
423
|
export interface GetProviderServiceInput {
|
|
313
424
|
providerName: string | undefined;
|
|
314
425
|
providerServiceName: string | undefined;
|
|
315
426
|
}
|
|
427
|
+
export interface ProviderSchemaAttribute {
|
|
428
|
+
fieldName: string | undefined;
|
|
429
|
+
type: SchemaAttributeType | undefined;
|
|
430
|
+
subType?: string;
|
|
431
|
+
hashing?: boolean;
|
|
432
|
+
}
|
|
433
|
+
export interface ProviderComponentSchema {
|
|
434
|
+
schemas?: string[][];
|
|
435
|
+
providerSchemaAttributes?: ProviderSchemaAttribute[];
|
|
436
|
+
}
|
|
316
437
|
export interface ProviderMarketplaceConfiguration {
|
|
317
438
|
dataSetId: string | undefined;
|
|
318
439
|
revisionId: string | undefined;
|
|
@@ -340,6 +461,11 @@ export declare namespace ProviderEndpointConfiguration {
|
|
|
340
461
|
visitor: Visitor<T>
|
|
341
462
|
) => T;
|
|
342
463
|
}
|
|
464
|
+
export interface ProviderIdNameSpaceConfiguration {
|
|
465
|
+
description?: string;
|
|
466
|
+
providerTargetConfigurationDefinition?: __DocumentType;
|
|
467
|
+
providerSourceConfigurationDefinition?: __DocumentType;
|
|
468
|
+
}
|
|
343
469
|
export interface ProviderIntermediateDataAccessConfiguration {
|
|
344
470
|
awsAccountIds?: string[];
|
|
345
471
|
requiredBucketActions?: string[];
|
|
@@ -356,10 +482,13 @@ export interface GetProviderServiceOutput {
|
|
|
356
482
|
providerServiceType: ServiceType | undefined;
|
|
357
483
|
providerServiceArn: string | undefined;
|
|
358
484
|
providerConfigurationDefinition?: __DocumentType;
|
|
485
|
+
providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration;
|
|
486
|
+
providerJobConfiguration?: __DocumentType;
|
|
359
487
|
providerEndpointConfiguration: ProviderEndpointConfiguration | undefined;
|
|
360
488
|
anonymizedOutput: boolean | undefined;
|
|
361
489
|
providerEntityOutputDefinition: __DocumentType | undefined;
|
|
362
490
|
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration;
|
|
491
|
+
providerComponentSchema?: ProviderComponentSchema;
|
|
363
492
|
}
|
|
364
493
|
export interface GetSchemaMappingInput {
|
|
365
494
|
schemaName: string | undefined;
|
|
@@ -403,6 +532,22 @@ export interface ListIdMappingWorkflowsOutput {
|
|
|
403
532
|
workflowSummaries?: IdMappingWorkflowSummary[];
|
|
404
533
|
nextToken?: string;
|
|
405
534
|
}
|
|
535
|
+
export interface ListIdNamespacesInput {
|
|
536
|
+
nextToken?: string;
|
|
537
|
+
maxResults?: number;
|
|
538
|
+
}
|
|
539
|
+
export interface IdNamespaceSummary {
|
|
540
|
+
idNamespaceName: string | undefined;
|
|
541
|
+
idNamespaceArn: string | undefined;
|
|
542
|
+
description?: string;
|
|
543
|
+
type: IdNamespaceType | undefined;
|
|
544
|
+
createdAt: Date | undefined;
|
|
545
|
+
updatedAt: Date | undefined;
|
|
546
|
+
}
|
|
547
|
+
export interface ListIdNamespacesOutput {
|
|
548
|
+
idNamespaceSummaries?: IdNamespaceSummary[];
|
|
549
|
+
nextToken?: string;
|
|
550
|
+
}
|
|
406
551
|
export interface ListMatchingJobsInput {
|
|
407
552
|
workflowName: string | undefined;
|
|
408
553
|
nextToken?: string;
|
|
@@ -464,11 +609,23 @@ export interface ListTagsForResourceInput {
|
|
|
464
609
|
export interface ListTagsForResourceOutput {
|
|
465
610
|
tags: Record<string, string> | undefined;
|
|
466
611
|
}
|
|
612
|
+
export interface PutPolicyInput {
|
|
613
|
+
arn: string | undefined;
|
|
614
|
+
token?: string;
|
|
615
|
+
policy: string | undefined;
|
|
616
|
+
}
|
|
617
|
+
export interface PutPolicyOutput {
|
|
618
|
+
arn: string | undefined;
|
|
619
|
+
token: string | undefined;
|
|
620
|
+
policy?: string;
|
|
621
|
+
}
|
|
467
622
|
export interface StartIdMappingJobInput {
|
|
468
623
|
workflowName: string | undefined;
|
|
624
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
469
625
|
}
|
|
470
626
|
export interface StartIdMappingJobOutput {
|
|
471
627
|
jobId: string | undefined;
|
|
628
|
+
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
472
629
|
}
|
|
473
630
|
export interface StartMatchingJobInput {
|
|
474
631
|
workflowName: string | undefined;
|
|
@@ -490,7 +647,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
490
647
|
workflowName: string | undefined;
|
|
491
648
|
description?: string;
|
|
492
649
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
493
|
-
outputSourceConfig
|
|
650
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
494
651
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
495
652
|
roleArn: string | undefined;
|
|
496
653
|
}
|
|
@@ -499,10 +656,28 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
499
656
|
workflowArn: string | undefined;
|
|
500
657
|
description?: string;
|
|
501
658
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
502
|
-
outputSourceConfig
|
|
659
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
503
660
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
504
661
|
roleArn: string | undefined;
|
|
505
662
|
}
|
|
663
|
+
export interface UpdateIdNamespaceInput {
|
|
664
|
+
idNamespaceName: string | undefined;
|
|
665
|
+
description?: string;
|
|
666
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
667
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
668
|
+
roleArn?: string;
|
|
669
|
+
}
|
|
670
|
+
export interface UpdateIdNamespaceOutput {
|
|
671
|
+
idNamespaceName: string | undefined;
|
|
672
|
+
idNamespaceArn: string | undefined;
|
|
673
|
+
description?: string;
|
|
674
|
+
inputSourceConfig?: IdNamespaceInputSource[];
|
|
675
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
676
|
+
type: IdNamespaceType | undefined;
|
|
677
|
+
roleArn?: string;
|
|
678
|
+
createdAt: Date | undefined;
|
|
679
|
+
updatedAt: Date | undefined;
|
|
680
|
+
}
|
|
506
681
|
export interface UpdateMatchingWorkflowInput {
|
|
507
682
|
workflowName: string | undefined;
|
|
508
683
|
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";
|