@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,95 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
5
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link TagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link TagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Assigns one or more tags (key-value pairs) to the specified AWS Entity Resolution
|
|
27
|
+
* resource. Tags can help you organize and categorize your resources. You can also use them
|
|
28
|
+
* to scope user permissions by granting a user permission to access or change only resources
|
|
29
|
+
* with certain tag values. In Entity Resolution, <code>SchemaMapping</code>, and
|
|
30
|
+
* <code>MatchingWorkflow</code> can be tagged. Tags don't have any semantic meaning to AWS
|
|
31
|
+
* and are interpreted strictly as strings of characters. You can use the
|
|
32
|
+
* <code>TagResource</code> action with a resource that already has tags. If you specify a
|
|
33
|
+
* new tag key, this tag is appended to the list of tags associated with the resource. If you
|
|
34
|
+
* specify a tag key that is already associated with the resource, the new tag value that you
|
|
35
|
+
* specify replaces the previous value for that tag.</p>
|
|
36
|
+
* @example
|
|
37
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
38
|
+
* ```javascript
|
|
39
|
+
* import { EntityResolutionClient, TagResourceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
40
|
+
* // const { EntityResolutionClient, TagResourceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
41
|
+
* const client = new EntityResolutionClient(config);
|
|
42
|
+
* const input = { // TagResourceInput
|
|
43
|
+
* resourceArn: "STRING_VALUE", // required
|
|
44
|
+
* tags: { // TagMap // required
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* };
|
|
48
|
+
* const command = new TagResourceCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
55
|
+
* @returns {@link TagResourceCommandOutput}
|
|
56
|
+
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
57
|
+
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
58
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>This exception occurs when there is an internal failure in the AWS Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
62
|
+
* </p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
65
|
+
* <p>The resource could not be found. <code>HTTP Status Code: 404</code>
|
|
66
|
+
* </p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>The input fails to satisfy the constraints specified by AWS Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
70
|
+
* </p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link EntityResolutionServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
74
|
+
*
|
|
75
|
+
*/
|
|
76
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EntityResolutionClientResolvedConfig> {
|
|
77
|
+
readonly input: TagResourceCommandInput;
|
|
78
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
constructor(input: TagResourceCommandInput);
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EntityResolutionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private deserialize;
|
|
95
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
5
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UntagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UntagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Removes one or more tags from the specified AWS Entity Resolution resource. In Entity
|
|
27
|
+
* Resolution, <code>SchemaMapping</code>, and <code>MatchingWorkflow</code> can be
|
|
28
|
+
* tagged.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { EntityResolutionClient, UntagResourceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
33
|
+
* // const { EntityResolutionClient, UntagResourceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
34
|
+
* const client = new EntityResolutionClient(config);
|
|
35
|
+
* const input = { // UntagResourceInput
|
|
36
|
+
* resourceArn: "STRING_VALUE", // required
|
|
37
|
+
* tagKeys: [ // TagKeyList // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
41
|
+
* const command = new UntagResourceCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
48
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
49
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InternalServerException} (server fault)
|
|
54
|
+
* <p>This exception occurs when there is an internal failure in the AWS Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>The resource could not be found. <code>HTTP Status Code: 404</code>
|
|
59
|
+
* </p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link EntityResolutionServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EntityResolutionClientResolvedConfig> {
|
|
66
|
+
readonly input: UntagResourceCommandInput;
|
|
67
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
constructor(input: UntagResourceCommandInput);
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EntityResolutionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
private deserialize;
|
|
84
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
|
|
5
|
+
import { UpdateMatchingWorkflowInput, UpdateMatchingWorkflowOutput } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateMatchingWorkflowCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateMatchingWorkflowCommandInput extends UpdateMatchingWorkflowInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateMatchingWorkflowCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkflowOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Updates an existing <code>MatchingWorkflow</code>. This method is identical to
|
|
27
|
+
* <code>CreateMatchingWorkflow</code>, except it uses an HTTP <code>PUT</code> request instead of
|
|
28
|
+
* a <code>POST</code> request, and the <code>MatchingWorkflow</code> must already exist for the
|
|
29
|
+
* method to succeed.</p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { EntityResolutionClient, UpdateMatchingWorkflowCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
|
|
34
|
+
* // const { EntityResolutionClient, UpdateMatchingWorkflowCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
|
|
35
|
+
* const client = new EntityResolutionClient(config);
|
|
36
|
+
* const input = { // UpdateMatchingWorkflowInput
|
|
37
|
+
* workflowName: "STRING_VALUE", // required
|
|
38
|
+
* description: "STRING_VALUE",
|
|
39
|
+
* inputSourceConfig: [ // InputSourceConfig // required
|
|
40
|
+
* { // InputSource
|
|
41
|
+
* inputSourceARN: "STRING_VALUE", // required
|
|
42
|
+
* schemaName: "STRING_VALUE", // required
|
|
43
|
+
* applyNormalization: true || false,
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* outputSourceConfig: [ // OutputSourceConfig // required
|
|
47
|
+
* { // OutputSource
|
|
48
|
+
* outputS3Path: "STRING_VALUE", // required
|
|
49
|
+
* output: [ // OutputAttributes // required
|
|
50
|
+
* { // OutputAttribute
|
|
51
|
+
* name: "STRING_VALUE", // required
|
|
52
|
+
* hashed: true || false,
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* KMSArn: "STRING_VALUE",
|
|
56
|
+
* applyNormalization: true || false,
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* resolutionTechniques: { // ResolutionTechniques
|
|
60
|
+
* resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
61
|
+
* ruleBasedProperties: { // RuleBasedProperties
|
|
62
|
+
* rules: [ // RuleList // required
|
|
63
|
+
* { // Rule
|
|
64
|
+
* ruleName: "STRING_VALUE", // required
|
|
65
|
+
* matchingKeys: [ // MatchingKeys // required
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* },
|
|
69
|
+
* ],
|
|
70
|
+
* attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
73
|
+
* incrementalRunConfig: { // IncrementalRunConfig
|
|
74
|
+
* incrementalRunType: "IMMEDIATE",
|
|
75
|
+
* },
|
|
76
|
+
* roleArn: "STRING_VALUE", // required
|
|
77
|
+
* };
|
|
78
|
+
* const command = new UpdateMatchingWorkflowCommand(input);
|
|
79
|
+
* const response = await client.send(command);
|
|
80
|
+
* // { // UpdateMatchingWorkflowOutput
|
|
81
|
+
* // workflowName: "STRING_VALUE", // required
|
|
82
|
+
* // description: "STRING_VALUE",
|
|
83
|
+
* // inputSourceConfig: [ // InputSourceConfig // required
|
|
84
|
+
* // { // InputSource
|
|
85
|
+
* // inputSourceARN: "STRING_VALUE", // required
|
|
86
|
+
* // schemaName: "STRING_VALUE", // required
|
|
87
|
+
* // applyNormalization: true || false,
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // outputSourceConfig: [ // OutputSourceConfig // required
|
|
91
|
+
* // { // OutputSource
|
|
92
|
+
* // outputS3Path: "STRING_VALUE", // required
|
|
93
|
+
* // output: [ // OutputAttributes // required
|
|
94
|
+
* // { // OutputAttribute
|
|
95
|
+
* // name: "STRING_VALUE", // required
|
|
96
|
+
* // hashed: true || false,
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // KMSArn: "STRING_VALUE",
|
|
100
|
+
* // applyNormalization: true || false,
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // resolutionTechniques: { // ResolutionTechniques
|
|
104
|
+
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
105
|
+
* // ruleBasedProperties: { // RuleBasedProperties
|
|
106
|
+
* // rules: [ // RuleList // required
|
|
107
|
+
* // { // Rule
|
|
108
|
+
* // ruleName: "STRING_VALUE", // required
|
|
109
|
+
* // matchingKeys: [ // MatchingKeys // required
|
|
110
|
+
* // "STRING_VALUE",
|
|
111
|
+
* // ],
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
115
|
+
* // },
|
|
116
|
+
* // },
|
|
117
|
+
* // incrementalRunConfig: { // IncrementalRunConfig
|
|
118
|
+
* // incrementalRunType: "IMMEDIATE",
|
|
119
|
+
* // },
|
|
120
|
+
* // roleArn: "STRING_VALUE", // required
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
123
|
+
* ```
|
|
124
|
+
*
|
|
125
|
+
* @param UpdateMatchingWorkflowCommandInput - {@link UpdateMatchingWorkflowCommandInput}
|
|
126
|
+
* @returns {@link UpdateMatchingWorkflowCommandOutput}
|
|
127
|
+
* @see {@link UpdateMatchingWorkflowCommandInput} for command's `input` shape.
|
|
128
|
+
* @see {@link UpdateMatchingWorkflowCommandOutput} for command's `response` shape.
|
|
129
|
+
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
130
|
+
*
|
|
131
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
132
|
+
* <p>You do not have sufficient access to perform this action. <code>HTTP Status Code: 403</code>
|
|
133
|
+
* </p>
|
|
134
|
+
*
|
|
135
|
+
* @throws {@link InternalServerException} (server fault)
|
|
136
|
+
* <p>This exception occurs when there is an internal failure in the AWS Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
137
|
+
* </p>
|
|
138
|
+
*
|
|
139
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
140
|
+
* <p>The resource could not be found. <code>HTTP Status Code: 404</code>
|
|
141
|
+
* </p>
|
|
142
|
+
*
|
|
143
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
144
|
+
* <p>The request was denied due to request throttling. <code>HTTP Status Code: 429</code>
|
|
145
|
+
* </p>
|
|
146
|
+
*
|
|
147
|
+
* @throws {@link ValidationException} (client fault)
|
|
148
|
+
* <p>The input fails to satisfy the constraints specified by AWS Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
149
|
+
* </p>
|
|
150
|
+
*
|
|
151
|
+
* @throws {@link EntityResolutionServiceException}
|
|
152
|
+
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
export declare class UpdateMatchingWorkflowCommand extends $Command<UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput, EntityResolutionClientResolvedConfig> {
|
|
156
|
+
readonly input: UpdateMatchingWorkflowCommandInput;
|
|
157
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
constructor(input: UpdateMatchingWorkflowCommandInput);
|
|
162
|
+
/**
|
|
163
|
+
* @internal
|
|
164
|
+
*/
|
|
165
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EntityResolutionClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMatchingWorkflowCommandInput, UpdateMatchingWorkflowCommandOutput>;
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
169
|
+
private serialize;
|
|
170
|
+
/**
|
|
171
|
+
* @internal
|
|
172
|
+
*/
|
|
173
|
+
private deserialize;
|
|
174
|
+
}
|
|
@@ -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,19 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
7
|
+
}
|
|
8
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* <p>Welcome to the <i>AWS Entity Resolution API Reference</i>.</p>
|
|
3
|
+
* <p>AWS Entity Resolution is an AWS service that provides pre-configured entity resolution capabilities
|
|
4
|
+
* that enable developers and analysts at advertising and marketing companies to build an accurate and
|
|
5
|
+
* complete view of their consumers.</p>
|
|
6
|
+
* <p>
|
|
7
|
+
* With AWS Entity Resolution, you have the ability to match source records containing consumer identifiers,
|
|
8
|
+
* such as name, email address, and phone number. This holds true even when these records have incomplete or
|
|
9
|
+
* conflicting identifiers. For example, AWS Entity Resolution can effectively match a source record from a
|
|
10
|
+
* customer relationship management (CRM) system, which includes account information like first name, last name,
|
|
11
|
+
* postal address, phone number, and email address, with a source record from a marketing system containing
|
|
12
|
+
* campaign information, such as username and email address.</p>
|
|
13
|
+
* <p>To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the
|
|
14
|
+
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">AWS Entity Resolution
|
|
15
|
+
* User Guide</a>.</p>
|
|
16
|
+
*
|
|
17
|
+
* @packageDocumentation
|
|
18
|
+
*/
|
|
19
|
+
export * from "./EntityResolutionClient";
|
|
20
|
+
export * from "./EntityResolution";
|
|
21
|
+
export * from "./commands";
|
|
22
|
+
export * from "./pagination";
|
|
23
|
+
export * from "./models";
|
|
24
|
+
export { EntityResolutionServiceException } from "./models/EntityResolutionServiceException";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*
|
|
6
|
+
* Base exception class for all service exceptions from EntityResolution service.
|
|
7
|
+
*/
|
|
8
|
+
export declare class EntityResolutionServiceException extends __ServiceException {
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(options: __ServiceExceptionOptions);
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|