@aws-sdk/client-entityresolution 3.378.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.
Files changed (147) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +346 -0
  3. package/dist-cjs/EntityResolution.js +43 -0
  4. package/dist-cjs/EntityResolutionClient.js +41 -0
  5. package/dist-cjs/commands/CreateMatchingWorkflowCommand.js +46 -0
  6. package/dist-cjs/commands/CreateSchemaMappingCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteMatchingWorkflowCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteSchemaMappingCommand.js +46 -0
  9. package/dist-cjs/commands/GetMatchIdCommand.js +47 -0
  10. package/dist-cjs/commands/GetMatchingJobCommand.js +46 -0
  11. package/dist-cjs/commands/GetMatchingWorkflowCommand.js +46 -0
  12. package/dist-cjs/commands/GetSchemaMappingCommand.js +46 -0
  13. package/dist-cjs/commands/ListMatchingJobsCommand.js +46 -0
  14. package/dist-cjs/commands/ListMatchingWorkflowsCommand.js +46 -0
  15. package/dist-cjs/commands/ListSchemaMappingsCommand.js +46 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  17. package/dist-cjs/commands/StartMatchingJobCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/UpdateMatchingWorkflowCommand.js +46 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/index.js +11 -0
  26. package/dist-cjs/models/EntityResolutionServiceException.js +12 -0
  27. package/dist-cjs/models/index.js +4 -0
  28. package/dist-cjs/models/models_0.js +143 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListMatchingJobsPaginator.js +29 -0
  31. package/dist-cjs/pagination/ListMatchingWorkflowsPaginator.js +29 -0
  32. package/dist-cjs/pagination/ListSchemaMappingsPaginator.js +29 -0
  33. package/dist-cjs/pagination/index.js +7 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +1281 -0
  35. package/dist-cjs/runtimeConfig.browser.js +39 -0
  36. package/dist-cjs/runtimeConfig.js +48 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +21 -0
  39. package/dist-es/EntityResolution.js +39 -0
  40. package/dist-es/EntityResolutionClient.js +37 -0
  41. package/dist-es/commands/CreateMatchingWorkflowCommand.js +42 -0
  42. package/dist-es/commands/CreateSchemaMappingCommand.js +42 -0
  43. package/dist-es/commands/DeleteMatchingWorkflowCommand.js +42 -0
  44. package/dist-es/commands/DeleteSchemaMappingCommand.js +42 -0
  45. package/dist-es/commands/GetMatchIdCommand.js +43 -0
  46. package/dist-es/commands/GetMatchingJobCommand.js +42 -0
  47. package/dist-es/commands/GetMatchingWorkflowCommand.js +42 -0
  48. package/dist-es/commands/GetSchemaMappingCommand.js +42 -0
  49. package/dist-es/commands/ListMatchingJobsCommand.js +42 -0
  50. package/dist-es/commands/ListMatchingWorkflowsCommand.js +42 -0
  51. package/dist-es/commands/ListSchemaMappingsCommand.js +42 -0
  52. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  53. package/dist-es/commands/StartMatchingJobCommand.js +42 -0
  54. package/dist-es/commands/TagResourceCommand.js +42 -0
  55. package/dist-es/commands/UntagResourceCommand.js +42 -0
  56. package/dist-es/commands/UpdateMatchingWorkflowCommand.js +42 -0
  57. package/dist-es/commands/index.js +16 -0
  58. package/dist-es/endpoint/EndpointParameters.js +8 -0
  59. package/dist-es/endpoint/endpointResolver.js +8 -0
  60. package/dist-es/endpoint/ruleset.js +4 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/EntityResolutionServiceException.js +8 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +132 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListMatchingJobsPaginator.js +25 -0
  67. package/dist-es/pagination/ListMatchingWorkflowsPaginator.js +25 -0
  68. package/dist-es/pagination/ListSchemaMappingsPaginator.js +25 -0
  69. package/dist-es/pagination/index.js +4 -0
  70. package/dist-es/protocols/Aws_restJson1.js +1246 -0
  71. package/dist-es/runtimeConfig.browser.js +34 -0
  72. package/dist-es/runtimeConfig.js +43 -0
  73. package/dist-es/runtimeConfig.native.js +11 -0
  74. package/dist-es/runtimeConfig.shared.js +17 -0
  75. package/dist-types/EntityResolution.d.ts +135 -0
  76. package/dist-types/EntityResolutionClient.d.ts +191 -0
  77. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +183 -0
  78. package/dist-types/commands/CreateSchemaMappingCommand.d.ts +123 -0
  79. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +90 -0
  80. package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +96 -0
  81. package/dist-types/commands/GetMatchIdCommand.d.ts +96 -0
  82. package/dist-types/commands/GetMatchingJobCommand.d.ts +106 -0
  83. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +138 -0
  84. package/dist-types/commands/GetSchemaMappingCommand.d.ts +108 -0
  85. package/dist-types/commands/ListMatchingJobsCommand.d.ts +103 -0
  86. package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +98 -0
  87. package/dist-types/commands/ListSchemaMappingsCommand.d.ts +98 -0
  88. package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
  89. package/dist-types/commands/StartMatchingJobCommand.d.ts +104 -0
  90. package/dist-types/commands/TagResourceCommand.d.ts +95 -0
  91. package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
  92. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +174 -0
  93. package/dist-types/commands/index.d.ts +16 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/index.d.ts +24 -0
  98. package/dist-types/models/EntityResolutionServiceException.d.ts +13 -0
  99. package/dist-types/models/index.d.ts +1 -0
  100. package/dist-types/models/models_0.d.ts +1017 -0
  101. package/dist-types/pagination/Interfaces.d.ts +8 -0
  102. package/dist-types/pagination/ListMatchingJobsPaginator.d.ts +7 -0
  103. package/dist-types/pagination/ListMatchingWorkflowsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListSchemaMappingsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/index.d.ts +4 -0
  106. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  107. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  108. package/dist-types/runtimeConfig.d.ts +42 -0
  109. package/dist-types/runtimeConfig.native.d.ts +41 -0
  110. package/dist-types/runtimeConfig.shared.d.ts +18 -0
  111. package/dist-types/ts3.4/EntityResolution.d.ts +279 -0
  112. package/dist-types/ts3.4/EntityResolutionClient.d.ts +209 -0
  113. package/dist-types/ts3.4/commands/CreateMatchingWorkflowCommand.d.ts +42 -0
  114. package/dist-types/ts3.4/commands/CreateSchemaMappingCommand.d.ts +39 -0
  115. package/dist-types/ts3.4/commands/DeleteMatchingWorkflowCommand.d.ts +42 -0
  116. package/dist-types/ts3.4/commands/DeleteSchemaMappingCommand.d.ts +39 -0
  117. package/dist-types/ts3.4/commands/GetMatchIdCommand.d.ts +35 -0
  118. package/dist-types/ts3.4/commands/GetMatchingJobCommand.d.ts +35 -0
  119. package/dist-types/ts3.4/commands/GetMatchingWorkflowCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/GetSchemaMappingCommand.d.ts +38 -0
  121. package/dist-types/ts3.4/commands/ListMatchingJobsCommand.d.ts +38 -0
  122. package/dist-types/ts3.4/commands/ListMatchingWorkflowsCommand.d.ts +42 -0
  123. package/dist-types/ts3.4/commands/ListSchemaMappingsCommand.d.ts +39 -0
  124. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  125. package/dist-types/ts3.4/commands/StartMatchingJobCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  127. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  128. package/dist-types/ts3.4/commands/UpdateMatchingWorkflowCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  130. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  131. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/ts3.4/index.d.ts +6 -0
  134. package/dist-types/ts3.4/models/EntityResolutionServiceException.d.ts +8 -0
  135. package/dist-types/ts3.4/models/index.d.ts +1 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +322 -0
  137. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  138. package/dist-types/ts3.4/pagination/ListMatchingJobsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListMatchingWorkflowsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListSchemaMappingsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  142. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  143. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  144. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  145. package/dist-types/ts3.4/runtimeConfig.native.d.ts +82 -0
  146. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
  147. package/package.json +99 -0
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ StartMatchingJobInput,
16
+ StartMatchingJobOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface StartMatchingJobCommandInput extends StartMatchingJobInput {}
20
+ export interface StartMatchingJobCommandOutput
21
+ extends StartMatchingJobOutput,
22
+ __MetadataBearer {}
23
+ export declare class StartMatchingJobCommand extends $Command<
24
+ StartMatchingJobCommandInput,
25
+ StartMatchingJobCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: StartMatchingJobCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: StartMatchingJobCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<StartMatchingJobCommandInput, StartMatchingJobCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import { TagResourceInput, TagResourceOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface TagResourceCommandInput extends TagResourceInput {}
17
+ export interface TagResourceCommandOutput
18
+ extends TagResourceOutput,
19
+ __MetadataBearer {}
20
+ export declare class TagResourceCommand extends $Command<
21
+ TagResourceCommandInput,
22
+ TagResourceCommandOutput,
23
+ EntityResolutionClientResolvedConfig
24
+ > {
25
+ readonly input: TagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: TagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EntityResolutionClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UntagResourceCommandInput extends UntagResourceInput {}
17
+ export interface UntagResourceCommandOutput
18
+ extends UntagResourceOutput,
19
+ __MetadataBearer {}
20
+ export declare class UntagResourceCommand extends $Command<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ EntityResolutionClientResolvedConfig
24
+ > {
25
+ readonly input: UntagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EntityResolutionClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ EntityResolutionClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../EntityResolutionClient";
14
+ import {
15
+ UpdateMatchingWorkflowInput,
16
+ UpdateMatchingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateMatchingWorkflowCommandInput
20
+ extends UpdateMatchingWorkflowInput {}
21
+ export interface UpdateMatchingWorkflowCommandOutput
22
+ extends UpdateMatchingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class UpdateMatchingWorkflowCommand extends $Command<
25
+ UpdateMatchingWorkflowCommandInput,
26
+ UpdateMatchingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateMatchingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateMatchingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateMatchingWorkflowCommandInput,
38
+ UpdateMatchingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,16 @@
1
+ export * from "./CreateMatchingWorkflowCommand";
2
+ export * from "./CreateSchemaMappingCommand";
3
+ export * from "./DeleteMatchingWorkflowCommand";
4
+ export * from "./DeleteSchemaMappingCommand";
5
+ export * from "./GetMatchIdCommand";
6
+ export * from "./GetMatchingJobCommand";
7
+ export * from "./GetMatchingWorkflowCommand";
8
+ export * from "./GetSchemaMappingCommand";
9
+ export * from "./ListMatchingJobsCommand";
10
+ export * from "./ListMatchingWorkflowsCommand";
11
+ export * from "./ListSchemaMappingsCommand";
12
+ export * from "./ListTagsForResourceCommand";
13
+ export * from "./StartMatchingJobCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
16
+ export * from "./UpdateMatchingWorkflowCommand";
@@ -0,0 +1,33 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export interface EndpointParameters extends __EndpointParameters {
29
+ Region?: string;
30
+ UseDualStack?: boolean;
31
+ UseFIPS?: boolean;
32
+ Endpoint?: string;
33
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,6 @@
1
+ export * from "./EntityResolutionClient";
2
+ export * from "./EntityResolution";
3
+ export * from "./commands";
4
+ export * from "./pagination";
5
+ export * from "./models";
6
+ export { EntityResolutionServiceException } from "./models/EntityResolutionServiceException";
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class EntityResolutionServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,322 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { EntityResolutionServiceException as __BaseException } from "./EntityResolutionServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare const AttributeMatchingModel: {
11
+ readonly MANY_TO_MANY: "MANY_TO_MANY";
12
+ readonly ONE_TO_ONE: "ONE_TO_ONE";
13
+ };
14
+ export type AttributeMatchingModel =
15
+ (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
16
+ export declare class ConflictException extends __BaseException {
17
+ readonly name: "ConflictException";
18
+ readonly $fault: "client";
19
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
+ }
21
+ export declare const IncrementalRunType: {
22
+ readonly IMMEDIATE: "IMMEDIATE";
23
+ };
24
+ export type IncrementalRunType =
25
+ (typeof IncrementalRunType)[keyof typeof IncrementalRunType];
26
+ export interface IncrementalRunConfig {
27
+ incrementalRunType?: IncrementalRunType | string;
28
+ }
29
+ export interface InputSource {
30
+ inputSourceARN: string | undefined;
31
+ schemaName: string | undefined;
32
+ applyNormalization?: boolean;
33
+ }
34
+ export interface OutputAttribute {
35
+ name: string | undefined;
36
+ hashed?: boolean;
37
+ }
38
+ export interface OutputSource {
39
+ outputS3Path: string | undefined;
40
+ output: OutputAttribute[] | undefined;
41
+ KMSArn?: string;
42
+ applyNormalization?: boolean;
43
+ }
44
+ export declare const ResolutionType: {
45
+ readonly ML_MATCHING: "ML_MATCHING";
46
+ readonly RULE_MATCHING: "RULE_MATCHING";
47
+ };
48
+ export type ResolutionType =
49
+ (typeof ResolutionType)[keyof typeof ResolutionType];
50
+ export interface Rule {
51
+ ruleName: string | undefined;
52
+ matchingKeys: string[] | undefined;
53
+ }
54
+ export interface RuleBasedProperties {
55
+ rules: Rule[] | undefined;
56
+ attributeMatchingModel: AttributeMatchingModel | string | undefined;
57
+ }
58
+ export interface ResolutionTechniques {
59
+ resolutionType?: ResolutionType | string;
60
+ ruleBasedProperties?: RuleBasedProperties;
61
+ }
62
+ export interface CreateMatchingWorkflowInput {
63
+ workflowName: string | undefined;
64
+ description?: string;
65
+ inputSourceConfig: InputSource[] | undefined;
66
+ outputSourceConfig: OutputSource[] | undefined;
67
+ resolutionTechniques: ResolutionTechniques | undefined;
68
+ incrementalRunConfig?: IncrementalRunConfig;
69
+ roleArn: string | undefined;
70
+ tags?: Record<string, string>;
71
+ }
72
+ export interface CreateMatchingWorkflowOutput {
73
+ workflowName: string | undefined;
74
+ workflowArn: string | undefined;
75
+ description?: string;
76
+ inputSourceConfig: InputSource[] | undefined;
77
+ outputSourceConfig: OutputSource[] | undefined;
78
+ resolutionTechniques: ResolutionTechniques | undefined;
79
+ incrementalRunConfig?: IncrementalRunConfig;
80
+ roleArn: string | undefined;
81
+ }
82
+ export declare class ExceedsLimitException extends __BaseException {
83
+ readonly name: "ExceedsLimitException";
84
+ readonly $fault: "client";
85
+ constructor(
86
+ opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
87
+ );
88
+ }
89
+ export declare class InternalServerException extends __BaseException {
90
+ readonly name: "InternalServerException";
91
+ readonly $fault: "server";
92
+ $retryable: {};
93
+ constructor(
94
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
95
+ );
96
+ }
97
+ export declare class ThrottlingException extends __BaseException {
98
+ readonly name: "ThrottlingException";
99
+ readonly $fault: "client";
100
+ $retryable: {
101
+ throttling: boolean;
102
+ };
103
+ constructor(
104
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
105
+ );
106
+ }
107
+ export declare class ValidationException extends __BaseException {
108
+ readonly name: "ValidationException";
109
+ readonly $fault: "client";
110
+ constructor(
111
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
112
+ );
113
+ }
114
+ export declare const SchemaAttributeType: {
115
+ readonly ADDRESS: "ADDRESS";
116
+ readonly ADDRESS_CITY: "ADDRESS_CITY";
117
+ readonly ADDRESS_COUNTRY: "ADDRESS_COUNTRY";
118
+ readonly ADDRESS_POSTALCODE: "ADDRESS_POSTALCODE";
119
+ readonly ADDRESS_STATE: "ADDRESS_STATE";
120
+ readonly ADDRESS_STREET1: "ADDRESS_STREET1";
121
+ readonly ADDRESS_STREET2: "ADDRESS_STREET2";
122
+ readonly ADDRESS_STREET3: "ADDRESS_STREET3";
123
+ readonly DATE: "DATE";
124
+ readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
125
+ readonly NAME: "NAME";
126
+ readonly NAME_FIRST: "NAME_FIRST";
127
+ readonly NAME_LAST: "NAME_LAST";
128
+ readonly NAME_MIDDLE: "NAME_MIDDLE";
129
+ readonly PHONE: "PHONE";
130
+ readonly PHONE_COUNTRYCODE: "PHONE_COUNTRYCODE";
131
+ readonly PHONE_NUMBER: "PHONE_NUMBER";
132
+ readonly STRING: "STRING";
133
+ readonly UNIQUE_ID: "UNIQUE_ID";
134
+ };
135
+ export type SchemaAttributeType =
136
+ (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
137
+ export interface SchemaInputAttribute {
138
+ fieldName: string | undefined;
139
+ type: SchemaAttributeType | string | undefined;
140
+ groupName?: string;
141
+ matchKey?: string;
142
+ }
143
+ export interface CreateSchemaMappingInput {
144
+ schemaName: string | undefined;
145
+ description?: string;
146
+ mappedInputFields?: SchemaInputAttribute[];
147
+ tags?: Record<string, string>;
148
+ }
149
+ export interface CreateSchemaMappingOutput {
150
+ schemaName: string | undefined;
151
+ schemaArn: string | undefined;
152
+ description: string | undefined;
153
+ mappedInputFields: SchemaInputAttribute[] | undefined;
154
+ }
155
+ export interface DeleteMatchingWorkflowInput {
156
+ workflowName: string | undefined;
157
+ }
158
+ export interface DeleteMatchingWorkflowOutput {
159
+ message: string | undefined;
160
+ }
161
+ export interface DeleteSchemaMappingInput {
162
+ schemaName: string | undefined;
163
+ }
164
+ export interface DeleteSchemaMappingOutput {
165
+ message: string | undefined;
166
+ }
167
+ export interface GetMatchIdInput {
168
+ workflowName: string | undefined;
169
+ record: Record<string, string> | undefined;
170
+ }
171
+ export interface GetMatchIdOutput {
172
+ matchId?: string;
173
+ }
174
+ export declare class ResourceNotFoundException extends __BaseException {
175
+ readonly name: "ResourceNotFoundException";
176
+ readonly $fault: "client";
177
+ constructor(
178
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
179
+ );
180
+ }
181
+ export interface GetMatchingJobInput {
182
+ workflowName: string | undefined;
183
+ jobId: string | undefined;
184
+ }
185
+ export interface ErrorDetails {
186
+ errorMessage?: string;
187
+ }
188
+ export interface JobMetrics {
189
+ inputRecords?: number;
190
+ totalRecordsProcessed?: number;
191
+ matchIDs?: number;
192
+ recordsNotProcessed?: number;
193
+ }
194
+ export declare const JobStatus: {
195
+ readonly FAILED: "FAILED";
196
+ readonly QUEUED: "QUEUED";
197
+ readonly RUNNING: "RUNNING";
198
+ readonly SUCCEEDED: "SUCCEEDED";
199
+ };
200
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
201
+ export interface GetMatchingJobOutput {
202
+ jobId: string | undefined;
203
+ status: JobStatus | string | undefined;
204
+ startTime: Date | undefined;
205
+ endTime?: Date;
206
+ metrics?: JobMetrics;
207
+ errorDetails?: ErrorDetails;
208
+ }
209
+ export interface GetMatchingWorkflowInput {
210
+ workflowName: string | undefined;
211
+ }
212
+ export interface GetMatchingWorkflowOutput {
213
+ workflowName: string | undefined;
214
+ workflowArn: string | undefined;
215
+ description?: string;
216
+ inputSourceConfig: InputSource[] | undefined;
217
+ outputSourceConfig: OutputSource[] | undefined;
218
+ resolutionTechniques: ResolutionTechniques | undefined;
219
+ createdAt: Date | undefined;
220
+ updatedAt: Date | undefined;
221
+ incrementalRunConfig?: IncrementalRunConfig;
222
+ roleArn: string | undefined;
223
+ tags?: Record<string, string>;
224
+ }
225
+ export interface GetSchemaMappingInput {
226
+ schemaName: string | undefined;
227
+ }
228
+ export interface GetSchemaMappingOutput {
229
+ schemaName: string | undefined;
230
+ schemaArn: string | undefined;
231
+ description?: string;
232
+ mappedInputFields: SchemaInputAttribute[] | undefined;
233
+ createdAt: Date | undefined;
234
+ updatedAt: Date | undefined;
235
+ tags?: Record<string, string>;
236
+ }
237
+ export interface ListMatchingJobsInput {
238
+ workflowName: string | undefined;
239
+ nextToken?: string;
240
+ maxResults?: number;
241
+ }
242
+ export interface JobSummary {
243
+ jobId: string | undefined;
244
+ status: JobStatus | string | undefined;
245
+ startTime: Date | undefined;
246
+ endTime?: Date;
247
+ }
248
+ export interface ListMatchingJobsOutput {
249
+ jobs?: JobSummary[];
250
+ nextToken?: string;
251
+ }
252
+ export interface ListMatchingWorkflowsInput {
253
+ nextToken?: string;
254
+ maxResults?: number;
255
+ }
256
+ export interface MatchingWorkflowSummary {
257
+ workflowName: string | undefined;
258
+ workflowArn: string | undefined;
259
+ createdAt: Date | undefined;
260
+ updatedAt: Date | undefined;
261
+ }
262
+ export interface ListMatchingWorkflowsOutput {
263
+ workflowSummaries?: MatchingWorkflowSummary[];
264
+ nextToken?: string;
265
+ }
266
+ export interface ListSchemaMappingsInput {
267
+ nextToken?: string;
268
+ maxResults?: number;
269
+ }
270
+ export interface SchemaMappingSummary {
271
+ schemaName: string | undefined;
272
+ schemaArn: string | undefined;
273
+ createdAt: Date | undefined;
274
+ updatedAt: Date | undefined;
275
+ }
276
+ export interface ListSchemaMappingsOutput {
277
+ schemaList?: SchemaMappingSummary[];
278
+ nextToken?: string;
279
+ }
280
+ export interface ListTagsForResourceInput {
281
+ resourceArn: string | undefined;
282
+ }
283
+ export interface ListTagsForResourceOutput {
284
+ tags: Record<string, string> | undefined;
285
+ }
286
+ export interface StartMatchingJobInput {
287
+ workflowName: string | undefined;
288
+ }
289
+ export interface StartMatchingJobOutput {
290
+ jobId: string | undefined;
291
+ }
292
+ export interface TagResourceInput {
293
+ resourceArn: string | undefined;
294
+ tags: Record<string, string> | undefined;
295
+ }
296
+ export interface TagResourceOutput {}
297
+ export interface UntagResourceInput {
298
+ resourceArn: string | undefined;
299
+ tagKeys: string[] | undefined;
300
+ }
301
+ export interface UntagResourceOutput {}
302
+ export interface UpdateMatchingWorkflowInput {
303
+ workflowName: string | undefined;
304
+ description?: string;
305
+ inputSourceConfig: InputSource[] | undefined;
306
+ outputSourceConfig: OutputSource[] | undefined;
307
+ resolutionTechniques: ResolutionTechniques | undefined;
308
+ incrementalRunConfig?: IncrementalRunConfig;
309
+ roleArn: string | undefined;
310
+ }
311
+ export interface UpdateMatchingWorkflowOutput {
312
+ workflowName: string | undefined;
313
+ description?: string;
314
+ inputSourceConfig: InputSource[] | undefined;
315
+ outputSourceConfig: OutputSource[] | undefined;
316
+ resolutionTechniques: ResolutionTechniques | undefined;
317
+ incrementalRunConfig?: IncrementalRunConfig;
318
+ roleArn: string | undefined;
319
+ }
320
+ export declare const GetMatchIdInputFilterSensitiveLog: (
321
+ obj: GetMatchIdInput
322
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { EntityResolutionClient } from "../EntityResolutionClient";
3
+ export interface EntityResolutionPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: EntityResolutionClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMatchingJobsCommandInput,
4
+ ListMatchingJobsCommandOutput,
5
+ } from "../commands/ListMatchingJobsCommand";
6
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMatchingJobs(
8
+ config: EntityResolutionPaginationConfiguration,
9
+ input: ListMatchingJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMatchingJobsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMatchingWorkflowsCommandInput,
4
+ ListMatchingWorkflowsCommandOutput,
5
+ } from "../commands/ListMatchingWorkflowsCommand";
6
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMatchingWorkflows(
8
+ config: EntityResolutionPaginationConfiguration,
9
+ input: ListMatchingWorkflowsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMatchingWorkflowsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListSchemaMappingsCommandInput,
4
+ ListSchemaMappingsCommandOutput,
5
+ } from "../commands/ListSchemaMappingsCommand";
6
+ import { EntityResolutionPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchemaMappings(
8
+ config: EntityResolutionPaginationConfiguration,
9
+ input: ListSchemaMappingsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchemaMappingsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListMatchingJobsPaginator";
3
+ export * from "./ListMatchingWorkflowsPaginator";
4
+ export * from "./ListSchemaMappingsPaginator";