@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.
- package/LICENSE +201 -0
- package/README.md +346 -0
- package/dist-cjs/EntityResolution.js +43 -0
- package/dist-cjs/EntityResolutionClient.js +41 -0
- package/dist-cjs/commands/CreateMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/CreateSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/DeleteMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/DeleteSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/GetMatchIdCommand.js +47 -0
- package/dist-cjs/commands/GetMatchingJobCommand.js +46 -0
- package/dist-cjs/commands/GetMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/GetSchemaMappingCommand.js +46 -0
- package/dist-cjs/commands/ListMatchingJobsCommand.js +46 -0
- package/dist-cjs/commands/ListMatchingWorkflowsCommand.js +46 -0
- package/dist-cjs/commands/ListSchemaMappingsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartMatchingJobCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateMatchingWorkflowCommand.js +46 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/EntityResolutionServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +143 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListMatchingJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListMatchingWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSchemaMappingsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1281 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-es/EntityResolution.js +39 -0
- package/dist-es/EntityResolutionClient.js +37 -0
- package/dist-es/commands/CreateMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/CreateSchemaMappingCommand.js +42 -0
- package/dist-es/commands/DeleteMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/DeleteSchemaMappingCommand.js +42 -0
- package/dist-es/commands/GetMatchIdCommand.js +43 -0
- package/dist-es/commands/GetMatchingJobCommand.js +42 -0
- package/dist-es/commands/GetMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/GetSchemaMappingCommand.js +42 -0
- package/dist-es/commands/ListMatchingJobsCommand.js +42 -0
- package/dist-es/commands/ListMatchingWorkflowsCommand.js +42 -0
- package/dist-es/commands/ListSchemaMappingsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartMatchingJobCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateMatchingWorkflowCommand.js +42 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/EntityResolutionServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +132 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListMatchingJobsPaginator.js +25 -0
- package/dist-es/pagination/ListMatchingWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/ListSchemaMappingsPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1246 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-types/EntityResolution.d.ts +135 -0
- package/dist-types/EntityResolutionClient.d.ts +191 -0
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +183 -0
- package/dist-types/commands/CreateSchemaMappingCommand.d.ts +123 -0
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +90 -0
- package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +96 -0
- package/dist-types/commands/GetMatchIdCommand.d.ts +96 -0
- package/dist-types/commands/GetMatchingJobCommand.d.ts +106 -0
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +138 -0
- package/dist-types/commands/GetSchemaMappingCommand.d.ts +108 -0
- package/dist-types/commands/ListMatchingJobsCommand.d.ts +103 -0
- package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +98 -0
- package/dist-types/commands/ListSchemaMappingsCommand.d.ts +98 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
- package/dist-types/commands/StartMatchingJobCommand.d.ts +104 -0
- package/dist-types/commands/TagResourceCommand.d.ts +95 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +174 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +24 -0
- package/dist-types/models/EntityResolutionServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1017 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListMatchingJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMatchingWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSchemaMappingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +279 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +209 -0
- package/dist-types/ts3.4/commands/CreateMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateSchemaMappingCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteSchemaMappingCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMatchIdCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMatchingJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMatchingWorkflowCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSchemaMappingCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMatchingJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMatchingWorkflowsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSchemaMappingsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartMatchingJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateMatchingWorkflowCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/EntityResolutionServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +322 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListMatchingJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMatchingWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSchemaMappingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +82 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
- 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
|
+
}
|