@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,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 {
|
|
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,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>;
|