@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,209 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ AwsAuthInputConfig,
7
+ AwsAuthResolvedConfig,
8
+ } from "@aws-sdk/middleware-signing";
9
+ import {
10
+ UserAgentInputConfig,
11
+ UserAgentResolvedConfig,
12
+ } from "@aws-sdk/middleware-user-agent";
13
+ import { Credentials as __Credentials } from "@aws-sdk/types";
14
+ import {
15
+ RegionInputConfig,
16
+ RegionResolvedConfig,
17
+ } from "@smithy/config-resolver";
18
+ import {
19
+ EndpointInputConfig,
20
+ EndpointResolvedConfig,
21
+ } from "@smithy/middleware-endpoint";
22
+ import {
23
+ RetryInputConfig,
24
+ RetryResolvedConfig,
25
+ } from "@smithy/middleware-retry";
26
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
27
+ import {
28
+ Client as __Client,
29
+ DefaultsMode as __DefaultsMode,
30
+ SmithyConfiguration as __SmithyConfiguration,
31
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
32
+ } from "@smithy/smithy-client";
33
+ import {
34
+ BodyLengthCalculator as __BodyLengthCalculator,
35
+ ChecksumConstructor as __ChecksumConstructor,
36
+ Decoder as __Decoder,
37
+ Encoder as __Encoder,
38
+ HashConstructor as __HashConstructor,
39
+ HttpHandlerOptions as __HttpHandlerOptions,
40
+ Logger as __Logger,
41
+ Provider as __Provider,
42
+ Provider,
43
+ StreamCollector as __StreamCollector,
44
+ UrlParser as __UrlParser,
45
+ UserAgent as __UserAgent,
46
+ } from "@smithy/types";
47
+ import {
48
+ CreateMatchingWorkflowCommandInput,
49
+ CreateMatchingWorkflowCommandOutput,
50
+ } from "./commands/CreateMatchingWorkflowCommand";
51
+ import {
52
+ CreateSchemaMappingCommandInput,
53
+ CreateSchemaMappingCommandOutput,
54
+ } from "./commands/CreateSchemaMappingCommand";
55
+ import {
56
+ DeleteMatchingWorkflowCommandInput,
57
+ DeleteMatchingWorkflowCommandOutput,
58
+ } from "./commands/DeleteMatchingWorkflowCommand";
59
+ import {
60
+ DeleteSchemaMappingCommandInput,
61
+ DeleteSchemaMappingCommandOutput,
62
+ } from "./commands/DeleteSchemaMappingCommand";
63
+ import {
64
+ GetMatchIdCommandInput,
65
+ GetMatchIdCommandOutput,
66
+ } from "./commands/GetMatchIdCommand";
67
+ import {
68
+ GetMatchingJobCommandInput,
69
+ GetMatchingJobCommandOutput,
70
+ } from "./commands/GetMatchingJobCommand";
71
+ import {
72
+ GetMatchingWorkflowCommandInput,
73
+ GetMatchingWorkflowCommandOutput,
74
+ } from "./commands/GetMatchingWorkflowCommand";
75
+ import {
76
+ GetSchemaMappingCommandInput,
77
+ GetSchemaMappingCommandOutput,
78
+ } from "./commands/GetSchemaMappingCommand";
79
+ import {
80
+ ListMatchingJobsCommandInput,
81
+ ListMatchingJobsCommandOutput,
82
+ } from "./commands/ListMatchingJobsCommand";
83
+ import {
84
+ ListMatchingWorkflowsCommandInput,
85
+ ListMatchingWorkflowsCommandOutput,
86
+ } from "./commands/ListMatchingWorkflowsCommand";
87
+ import {
88
+ ListSchemaMappingsCommandInput,
89
+ ListSchemaMappingsCommandOutput,
90
+ } from "./commands/ListSchemaMappingsCommand";
91
+ import {
92
+ ListTagsForResourceCommandInput,
93
+ ListTagsForResourceCommandOutput,
94
+ } from "./commands/ListTagsForResourceCommand";
95
+ import {
96
+ StartMatchingJobCommandInput,
97
+ StartMatchingJobCommandOutput,
98
+ } from "./commands/StartMatchingJobCommand";
99
+ import {
100
+ TagResourceCommandInput,
101
+ TagResourceCommandOutput,
102
+ } from "./commands/TagResourceCommand";
103
+ import {
104
+ UntagResourceCommandInput,
105
+ UntagResourceCommandOutput,
106
+ } from "./commands/UntagResourceCommand";
107
+ import {
108
+ UpdateMatchingWorkflowCommandInput,
109
+ UpdateMatchingWorkflowCommandOutput,
110
+ } from "./commands/UpdateMatchingWorkflowCommand";
111
+ import {
112
+ ClientInputEndpointParameters,
113
+ ClientResolvedEndpointParameters,
114
+ EndpointParameters,
115
+ } from "./endpoint/EndpointParameters";
116
+ export { __Client };
117
+ export type ServiceInputTypes =
118
+ | CreateMatchingWorkflowCommandInput
119
+ | CreateSchemaMappingCommandInput
120
+ | DeleteMatchingWorkflowCommandInput
121
+ | DeleteSchemaMappingCommandInput
122
+ | GetMatchIdCommandInput
123
+ | GetMatchingJobCommandInput
124
+ | GetMatchingWorkflowCommandInput
125
+ | GetSchemaMappingCommandInput
126
+ | ListMatchingJobsCommandInput
127
+ | ListMatchingWorkflowsCommandInput
128
+ | ListSchemaMappingsCommandInput
129
+ | ListTagsForResourceCommandInput
130
+ | StartMatchingJobCommandInput
131
+ | TagResourceCommandInput
132
+ | UntagResourceCommandInput
133
+ | UpdateMatchingWorkflowCommandInput;
134
+ export type ServiceOutputTypes =
135
+ | CreateMatchingWorkflowCommandOutput
136
+ | CreateSchemaMappingCommandOutput
137
+ | DeleteMatchingWorkflowCommandOutput
138
+ | DeleteSchemaMappingCommandOutput
139
+ | GetMatchIdCommandOutput
140
+ | GetMatchingJobCommandOutput
141
+ | GetMatchingWorkflowCommandOutput
142
+ | GetSchemaMappingCommandOutput
143
+ | ListMatchingJobsCommandOutput
144
+ | ListMatchingWorkflowsCommandOutput
145
+ | ListSchemaMappingsCommandOutput
146
+ | ListTagsForResourceCommandOutput
147
+ | StartMatchingJobCommandOutput
148
+ | TagResourceCommandOutput
149
+ | UntagResourceCommandOutput
150
+ | UpdateMatchingWorkflowCommandOutput;
151
+ export interface ClientDefaults
152
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
153
+ requestHandler?: __HttpHandler;
154
+ sha256?: __ChecksumConstructor | __HashConstructor;
155
+ urlParser?: __UrlParser;
156
+ bodyLengthChecker?: __BodyLengthCalculator;
157
+ streamCollector?: __StreamCollector;
158
+ base64Decoder?: __Decoder;
159
+ base64Encoder?: __Encoder;
160
+ utf8Decoder?: __Decoder;
161
+ utf8Encoder?: __Encoder;
162
+ runtime?: string;
163
+ disableHostPrefix?: boolean;
164
+ serviceId?: string;
165
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
166
+ useFipsEndpoint?: boolean | __Provider<boolean>;
167
+ region?: string | __Provider<string>;
168
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
169
+ defaultUserAgentProvider?: Provider<__UserAgent>;
170
+ maxAttempts?: number | __Provider<number>;
171
+ retryMode?: string | __Provider<string>;
172
+ logger?: __Logger;
173
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
174
+ }
175
+ export type EntityResolutionClientConfigType = Partial<
176
+ __SmithyConfiguration<__HttpHandlerOptions>
177
+ > &
178
+ ClientDefaults &
179
+ RegionInputConfig &
180
+ EndpointInputConfig<EndpointParameters> &
181
+ RetryInputConfig &
182
+ HostHeaderInputConfig &
183
+ AwsAuthInputConfig &
184
+ UserAgentInputConfig &
185
+ ClientInputEndpointParameters;
186
+ export interface EntityResolutionClientConfig
187
+ extends EntityResolutionClientConfigType {}
188
+ export type EntityResolutionClientResolvedConfigType =
189
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
190
+ Required<ClientDefaults> &
191
+ RegionResolvedConfig &
192
+ EndpointResolvedConfig<EndpointParameters> &
193
+ RetryResolvedConfig &
194
+ HostHeaderResolvedConfig &
195
+ AwsAuthResolvedConfig &
196
+ UserAgentResolvedConfig &
197
+ ClientResolvedEndpointParameters;
198
+ export interface EntityResolutionClientResolvedConfig
199
+ extends EntityResolutionClientResolvedConfigType {}
200
+ export declare class EntityResolutionClient extends __Client<
201
+ __HttpHandlerOptions,
202
+ ServiceInputTypes,
203
+ ServiceOutputTypes,
204
+ EntityResolutionClientResolvedConfig
205
+ > {
206
+ readonly config: EntityResolutionClientResolvedConfig;
207
+ constructor(configuration: EntityResolutionClientConfig);
208
+ destroy(): void;
209
+ }
@@ -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
+ CreateMatchingWorkflowInput,
16
+ CreateMatchingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateMatchingWorkflowCommandInput
20
+ extends CreateMatchingWorkflowInput {}
21
+ export interface CreateMatchingWorkflowCommandOutput
22
+ extends CreateMatchingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class CreateMatchingWorkflowCommand extends $Command<
25
+ CreateMatchingWorkflowCommandInput,
26
+ CreateMatchingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: CreateMatchingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateMatchingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateMatchingWorkflowCommandInput,
38
+ CreateMatchingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
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
+ CreateSchemaMappingInput,
16
+ CreateSchemaMappingOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateSchemaMappingCommandInput
20
+ extends CreateSchemaMappingInput {}
21
+ export interface CreateSchemaMappingCommandOutput
22
+ extends CreateSchemaMappingOutput,
23
+ __MetadataBearer {}
24
+ export declare class CreateSchemaMappingCommand extends $Command<
25
+ CreateSchemaMappingCommandInput,
26
+ CreateSchemaMappingCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: CreateSchemaMappingCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateSchemaMappingCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<CreateSchemaMappingCommandInput, CreateSchemaMappingCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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
+ DeleteMatchingWorkflowInput,
16
+ DeleteMatchingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteMatchingWorkflowCommandInput
20
+ extends DeleteMatchingWorkflowInput {}
21
+ export interface DeleteMatchingWorkflowCommandOutput
22
+ extends DeleteMatchingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class DeleteMatchingWorkflowCommand extends $Command<
25
+ DeleteMatchingWorkflowCommandInput,
26
+ DeleteMatchingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteMatchingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteMatchingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteMatchingWorkflowCommandInput,
38
+ DeleteMatchingWorkflowCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
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
+ DeleteSchemaMappingInput,
16
+ DeleteSchemaMappingOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteSchemaMappingCommandInput
20
+ extends DeleteSchemaMappingInput {}
21
+ export interface DeleteSchemaMappingCommandOutput
22
+ extends DeleteSchemaMappingOutput,
23
+ __MetadataBearer {}
24
+ export declare class DeleteSchemaMappingCommand extends $Command<
25
+ DeleteSchemaMappingCommandInput,
26
+ DeleteSchemaMappingCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteSchemaMappingCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteSchemaMappingCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<DeleteSchemaMappingCommandInput, DeleteSchemaMappingCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { GetMatchIdInput, GetMatchIdOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetMatchIdCommandInput extends GetMatchIdInput {}
17
+ export interface GetMatchIdCommandOutput
18
+ extends GetMatchIdOutput,
19
+ __MetadataBearer {}
20
+ export declare class GetMatchIdCommand extends $Command<
21
+ GetMatchIdCommandInput,
22
+ GetMatchIdCommandOutput,
23
+ EntityResolutionClientResolvedConfig
24
+ > {
25
+ readonly input: GetMatchIdCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: GetMatchIdCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EntityResolutionClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetMatchIdCommandInput, GetMatchIdCommandOutput>;
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 { GetMatchingJobInput, GetMatchingJobOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetMatchingJobCommandInput extends GetMatchingJobInput {}
17
+ export interface GetMatchingJobCommandOutput
18
+ extends GetMatchingJobOutput,
19
+ __MetadataBearer {}
20
+ export declare class GetMatchingJobCommand extends $Command<
21
+ GetMatchingJobCommandInput,
22
+ GetMatchingJobCommandOutput,
23
+ EntityResolutionClientResolvedConfig
24
+ > {
25
+ readonly input: GetMatchingJobCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: GetMatchingJobCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EntityResolutionClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetMatchingJobCommandInput, GetMatchingJobCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,39 @@
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
+ GetMatchingWorkflowInput,
16
+ GetMatchingWorkflowOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetMatchingWorkflowCommandInput
20
+ extends GetMatchingWorkflowInput {}
21
+ export interface GetMatchingWorkflowCommandOutput
22
+ extends GetMatchingWorkflowOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetMatchingWorkflowCommand extends $Command<
25
+ GetMatchingWorkflowCommandInput,
26
+ GetMatchingWorkflowCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: GetMatchingWorkflowCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetMatchingWorkflowCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<GetMatchingWorkflowCommandInput, GetMatchingWorkflowCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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
+ GetSchemaMappingInput,
16
+ GetSchemaMappingOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetSchemaMappingCommandInput extends GetSchemaMappingInput {}
20
+ export interface GetSchemaMappingCommandOutput
21
+ extends GetSchemaMappingOutput,
22
+ __MetadataBearer {}
23
+ export declare class GetSchemaMappingCommand extends $Command<
24
+ GetSchemaMappingCommandInput,
25
+ GetSchemaMappingCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: GetSchemaMappingCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetSchemaMappingCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetSchemaMappingCommandInput, GetSchemaMappingCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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
+ ListMatchingJobsInput,
16
+ ListMatchingJobsOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListMatchingJobsCommandInput extends ListMatchingJobsInput {}
20
+ export interface ListMatchingJobsCommandOutput
21
+ extends ListMatchingJobsOutput,
22
+ __MetadataBearer {}
23
+ export declare class ListMatchingJobsCommand extends $Command<
24
+ ListMatchingJobsCommandInput,
25
+ ListMatchingJobsCommandOutput,
26
+ EntityResolutionClientResolvedConfig
27
+ > {
28
+ readonly input: ListMatchingJobsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListMatchingJobsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EntityResolutionClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListMatchingJobsCommandInput, ListMatchingJobsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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
+ ListMatchingWorkflowsInput,
16
+ ListMatchingWorkflowsOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListMatchingWorkflowsCommandInput
20
+ extends ListMatchingWorkflowsInput {}
21
+ export interface ListMatchingWorkflowsCommandOutput
22
+ extends ListMatchingWorkflowsOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListMatchingWorkflowsCommand extends $Command<
25
+ ListMatchingWorkflowsCommandInput,
26
+ ListMatchingWorkflowsCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: ListMatchingWorkflowsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListMatchingWorkflowsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListMatchingWorkflowsCommandInput,
38
+ ListMatchingWorkflowsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
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
+ ListSchemaMappingsInput,
16
+ ListSchemaMappingsOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListSchemaMappingsCommandInput
20
+ extends ListSchemaMappingsInput {}
21
+ export interface ListSchemaMappingsCommandOutput
22
+ extends ListSchemaMappingsOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListSchemaMappingsCommand extends $Command<
25
+ ListSchemaMappingsCommandInput,
26
+ ListSchemaMappingsCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: ListSchemaMappingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListSchemaMappingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<ListSchemaMappingsCommandInput, ListSchemaMappingsCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,39 @@
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
+ ListTagsForResourceInput,
16
+ ListTagsForResourceOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListTagsForResourceCommandInput
20
+ extends ListTagsForResourceInput {}
21
+ export interface ListTagsForResourceCommandOutput
22
+ extends ListTagsForResourceOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListTagsForResourceCommand extends $Command<
25
+ ListTagsForResourceCommandInput,
26
+ ListTagsForResourceCommandOutput,
27
+ EntityResolutionClientResolvedConfig
28
+ > {
29
+ readonly input: ListTagsForResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListTagsForResourceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: EntityResolutionClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }