@aws-sdk/client-entityresolution 3.410.0 → 3.414.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/README.md +8 -10
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-cjs/runtimeExtensions.js +3 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -1
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/EntityResolution.d.ts +8 -10
- package/dist-types/EntityResolutionClient.d.ts +8 -10
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +7 -7
- package/dist-types/commands/CreateSchemaMappingCommand.d.ts +4 -4
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +2 -2
- package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +2 -2
- package/dist-types/commands/GetMatchIdCommand.d.ts +2 -2
- package/dist-types/commands/GetMatchingJobCommand.d.ts +3 -3
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +4 -4
- package/dist-types/commands/GetSchemaMappingCommand.d.ts +2 -2
- package/dist-types/commands/ListMatchingJobsCommand.d.ts +2 -2
- package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +3 -3
- package/dist-types/commands/ListSchemaMappingsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/StartMatchingJobCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +5 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +6 -6
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/index.d.ts +8 -10
- package/dist-types/models/models_0.d.ts +63 -55
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +6 -4
- package/package.json +29 -28
package/README.md
CHANGED
|
@@ -6,19 +6,17 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript EntityResolution Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>Welcome to the <i>
|
|
10
|
-
<p>
|
|
9
|
+
<p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
|
|
10
|
+
<p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
|
|
11
11
|
that enable developers and analysts at advertising and marketing companies to build an accurate and
|
|
12
12
|
complete view of their consumers.</p>
|
|
13
13
|
<p>
|
|
14
|
-
With
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<p>To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the
|
|
21
|
-
<a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">AWS Entity Resolution
|
|
14
|
+
With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
|
|
15
|
+
and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
|
|
16
|
+
Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
|
|
17
|
+
with a source record from a marketing system containing campaign information.</p>
|
|
18
|
+
<p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
|
|
19
|
+
<a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
|
|
22
20
|
User Guide</a>.</p>
|
|
23
21
|
|
|
24
22
|
## Installing
|
|
@@ -50,6 +50,8 @@ class ExceedsLimitException extends EntityResolutionServiceException_1.EntityRes
|
|
|
50
50
|
this.name = "ExceedsLimitException";
|
|
51
51
|
this.$fault = "client";
|
|
52
52
|
Object.setPrototypeOf(this, ExceedsLimitException.prototype);
|
|
53
|
+
this.quotaName = opts.quotaName;
|
|
54
|
+
this.quotaValue = opts.quotaValue;
|
|
53
55
|
}
|
|
54
56
|
}
|
|
55
57
|
exports.ExceedsLimitException = ExceedsLimitException;
|
|
@@ -1119,6 +1119,8 @@ const de_ExceedsLimitExceptionRes = async (parsedOutput, context) => {
|
|
|
1119
1119
|
const data = parsedOutput.body;
|
|
1120
1120
|
const doc = (0, smithy_client_1.take)(data, {
|
|
1121
1121
|
message: smithy_client_1.expectString,
|
|
1122
|
+
quotaName: smithy_client_1.expectString,
|
|
1123
|
+
quotaValue: smithy_client_1.expectInt32,
|
|
1122
1124
|
});
|
|
1123
1125
|
Object.assign(contents, doc);
|
|
1124
1126
|
const exception = new models_0_1.ExceedsLimitException({
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveRuntimeExtensions = void 0;
|
|
4
|
+
const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
|
|
4
5
|
const protocol_http_1 = require("@smithy/protocol-http");
|
|
5
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const asPartial = (t) => t;
|
|
7
8
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
8
9
|
const extensionConfiguration = {
|
|
10
|
+
...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
9
11
|
...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
10
12
|
...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
11
13
|
};
|
|
12
14
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
13
15
|
return {
|
|
14
16
|
...runtimeConfig,
|
|
17
|
+
...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
15
18
|
...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
16
19
|
...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
17
20
|
};
|
|
@@ -45,6 +45,8 @@ export class ExceedsLimitException extends __BaseException {
|
|
|
45
45
|
this.name = "ExceedsLimitException";
|
|
46
46
|
this.$fault = "client";
|
|
47
47
|
Object.setPrototypeOf(this, ExceedsLimitException.prototype);
|
|
48
|
+
this.quotaName = opts.quotaName;
|
|
49
|
+
this.quotaValue = opts.quotaValue;
|
|
48
50
|
}
|
|
49
51
|
}
|
|
50
52
|
export class InternalServerException extends __BaseException {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
2
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, take, withBaseException, } from "@smithy/smithy-client";
|
|
2
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, take, withBaseException, } from "@smithy/smithy-client";
|
|
3
3
|
import { EntityResolutionServiceException as __BaseException } from "../models/EntityResolutionServiceException";
|
|
4
4
|
import { AccessDeniedException, ConflictException, ExceedsLimitException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
5
5
|
export const se_CreateMatchingWorkflowCommand = async (input, context) => {
|
|
@@ -1084,6 +1084,8 @@ const de_ExceedsLimitExceptionRes = async (parsedOutput, context) => {
|
|
|
1084
1084
|
const data = parsedOutput.body;
|
|
1085
1085
|
const doc = take(data, {
|
|
1086
1086
|
message: __expectString,
|
|
1087
|
+
quotaName: __expectString,
|
|
1088
|
+
quotaValue: __expectInt32,
|
|
1087
1089
|
});
|
|
1088
1090
|
Object.assign(contents, doc);
|
|
1089
1091
|
const exception = new ExceedsLimitException({
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
+
import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
|
|
1
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
2
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
3
4
|
const asPartial = (t) => t;
|
|
4
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
5
6
|
const extensionConfiguration = {
|
|
7
|
+
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
6
8
|
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
7
9
|
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
8
10
|
};
|
|
9
11
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
10
12
|
return {
|
|
11
13
|
...runtimeConfig,
|
|
14
|
+
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
12
15
|
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
13
16
|
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
14
17
|
};
|
|
@@ -116,19 +116,17 @@ export interface EntityResolution {
|
|
|
116
116
|
}
|
|
117
117
|
/**
|
|
118
118
|
* @public
|
|
119
|
-
* <p>Welcome to the <i>
|
|
120
|
-
* <p>
|
|
119
|
+
* <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
|
|
120
|
+
* <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
|
|
121
121
|
* that enable developers and analysts at advertising and marketing companies to build an accurate and
|
|
122
122
|
* complete view of their consumers.</p>
|
|
123
123
|
* <p>
|
|
124
|
-
* With
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
* <p>To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the
|
|
131
|
-
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">AWS Entity Resolution
|
|
124
|
+
* With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
|
|
125
|
+
* and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
|
|
126
|
+
* Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
|
|
127
|
+
* with a source record from a marketing system containing campaign information.</p>
|
|
128
|
+
* <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
|
|
129
|
+
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
|
|
132
130
|
* User Guide</a>.</p>
|
|
133
131
|
*/
|
|
134
132
|
export declare class EntityResolution extends EntityResolutionClient implements EntityResolution {
|
|
@@ -166,19 +166,17 @@ export interface EntityResolutionClientResolvedConfig extends EntityResolutionCl
|
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* @public
|
|
169
|
-
* <p>Welcome to the <i>
|
|
170
|
-
* <p>
|
|
169
|
+
* <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
|
|
170
|
+
* <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
|
|
171
171
|
* that enable developers and analysts at advertising and marketing companies to build an accurate and
|
|
172
172
|
* complete view of their consumers.</p>
|
|
173
173
|
* <p>
|
|
174
|
-
* With
|
|
175
|
-
*
|
|
176
|
-
*
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
*
|
|
180
|
-
* <p>To learn more about AWS Entity Resolution concepts, procedures, and best practices, see the
|
|
181
|
-
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">AWS Entity Resolution
|
|
174
|
+
* With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
|
|
175
|
+
* and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
|
|
176
|
+
* Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
|
|
177
|
+
* with a source record from a marketing system containing campaign information.</p>
|
|
178
|
+
* <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
|
|
179
|
+
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
|
|
182
180
|
* User Guide</a>.</p>
|
|
183
181
|
*/
|
|
184
182
|
export declare class EntityResolutionClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EntityResolutionClientResolvedConfig> {
|
|
@@ -45,18 +45,18 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
|
|
|
45
45
|
* outputSourceConfig: [ // OutputSourceConfig // required
|
|
46
46
|
* { // OutputSource
|
|
47
47
|
* outputS3Path: "STRING_VALUE", // required
|
|
48
|
+
* KMSArn: "STRING_VALUE",
|
|
48
49
|
* output: [ // OutputAttributes // required
|
|
49
50
|
* { // OutputAttribute
|
|
50
51
|
* name: "STRING_VALUE", // required
|
|
51
52
|
* hashed: true || false,
|
|
52
53
|
* },
|
|
53
54
|
* ],
|
|
54
|
-
* KMSArn: "STRING_VALUE",
|
|
55
55
|
* applyNormalization: true || false,
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
58
|
* resolutionTechniques: { // ResolutionTechniques
|
|
59
|
-
* resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
59
|
+
* resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
|
|
60
60
|
* ruleBasedProperties: { // RuleBasedProperties
|
|
61
61
|
* rules: [ // RuleList // required
|
|
62
62
|
* { // Rule
|
|
@@ -93,18 +93,18 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
|
|
|
93
93
|
* // outputSourceConfig: [ // OutputSourceConfig // required
|
|
94
94
|
* // { // OutputSource
|
|
95
95
|
* // outputS3Path: "STRING_VALUE", // required
|
|
96
|
+
* // KMSArn: "STRING_VALUE",
|
|
96
97
|
* // output: [ // OutputAttributes // required
|
|
97
98
|
* // { // OutputAttribute
|
|
98
99
|
* // name: "STRING_VALUE", // required
|
|
99
100
|
* // hashed: true || false,
|
|
100
101
|
* // },
|
|
101
102
|
* // ],
|
|
102
|
-
* // KMSArn: "STRING_VALUE",
|
|
103
103
|
* // applyNormalization: true || false,
|
|
104
104
|
* // },
|
|
105
105
|
* // ],
|
|
106
106
|
* // resolutionTechniques: { // ResolutionTechniques
|
|
107
|
-
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
107
|
+
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
|
|
108
108
|
* // ruleBasedProperties: { // RuleBasedProperties
|
|
109
109
|
* // rules: [ // RuleList // required
|
|
110
110
|
* // { // Rule
|
|
@@ -141,12 +141,12 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
|
|
|
141
141
|
* </p>
|
|
142
142
|
*
|
|
143
143
|
* @throws {@link ExceedsLimitException} (client fault)
|
|
144
|
-
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
144
|
+
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
|
|
145
145
|
* The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
|
|
146
146
|
* </p>
|
|
147
147
|
*
|
|
148
148
|
* @throws {@link InternalServerException} (server fault)
|
|
149
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
149
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
150
150
|
* </p>
|
|
151
151
|
*
|
|
152
152
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -154,7 +154,7 @@ export interface CreateMatchingWorkflowCommandOutput extends CreateMatchingWorkf
|
|
|
154
154
|
* </p>
|
|
155
155
|
*
|
|
156
156
|
* @throws {@link ValidationException} (client fault)
|
|
157
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
157
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
158
158
|
* </p>
|
|
159
159
|
*
|
|
160
160
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -35,7 +35,7 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
|
|
|
35
35
|
* const input = { // CreateSchemaMappingInput
|
|
36
36
|
* schemaName: "STRING_VALUE", // required
|
|
37
37
|
* description: "STRING_VALUE",
|
|
38
|
-
* mappedInputFields: [ // SchemaInputAttributes
|
|
38
|
+
* mappedInputFields: [ // SchemaInputAttributes // required
|
|
39
39
|
* { // SchemaInputAttribute
|
|
40
40
|
* fieldName: "STRING_VALUE", // required
|
|
41
41
|
* type: "NAME" || "NAME_FIRST" || "NAME_MIDDLE" || "NAME_LAST" || "ADDRESS" || "ADDRESS_STREET1" || "ADDRESS_STREET2" || "ADDRESS_STREET3" || "ADDRESS_CITY" || "ADDRESS_STATE" || "ADDRESS_COUNTRY" || "ADDRESS_POSTALCODE" || "PHONE" || "PHONE_NUMBER" || "PHONE_COUNTRYCODE" || "EMAIL_ADDRESS" || "UNIQUE_ID" || "DATE" || "STRING", // required
|
|
@@ -81,12 +81,12 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
|
|
|
81
81
|
* </p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link ExceedsLimitException} (client fault)
|
|
84
|
-
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
84
|
+
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
|
|
85
85
|
* The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
|
|
86
86
|
* </p>
|
|
87
87
|
*
|
|
88
88
|
* @throws {@link InternalServerException} (server fault)
|
|
89
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
89
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
90
90
|
* </p>
|
|
91
91
|
*
|
|
92
92
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -94,7 +94,7 @@ export interface CreateSchemaMappingCommandOutput extends CreateSchemaMappingOut
|
|
|
94
94
|
* </p>
|
|
95
95
|
*
|
|
96
96
|
* @throws {@link ValidationException} (client fault)
|
|
97
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
97
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
98
98
|
* </p>
|
|
99
99
|
*
|
|
100
100
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -53,7 +53,7 @@ export interface DeleteMatchingWorkflowCommandOutput extends DeleteMatchingWorkf
|
|
|
53
53
|
* </p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link InternalServerException} (server fault)
|
|
56
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
56
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
57
57
|
* </p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -61,7 +61,7 @@ export interface DeleteMatchingWorkflowCommandOutput extends DeleteMatchingWorkf
|
|
|
61
61
|
* </p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link ValidationException} (client fault)
|
|
64
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
64
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
65
65
|
* </p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -59,7 +59,7 @@ export interface DeleteSchemaMappingCommandOutput extends DeleteSchemaMappingOut
|
|
|
59
59
|
* </p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link InternalServerException} (server fault)
|
|
62
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
62
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
63
63
|
* </p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -67,7 +67,7 @@ export interface DeleteSchemaMappingCommandOutput extends DeleteSchemaMappingOut
|
|
|
67
67
|
* </p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ValidationException} (client fault)
|
|
70
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
70
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
71
71
|
* </p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -55,7 +55,7 @@ export interface GetMatchIdCommandOutput extends GetMatchIdOutput, __MetadataBea
|
|
|
55
55
|
* </p>
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link InternalServerException} (server fault)
|
|
58
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
58
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
59
59
|
* </p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -67,7 +67,7 @@ export interface GetMatchIdCommandOutput extends GetMatchIdOutput, __MetadataBea
|
|
|
67
67
|
* </p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ValidationException} (client fault)
|
|
70
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
70
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
71
71
|
* </p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -44,8 +44,8 @@ export interface GetMatchingJobCommandOutput extends GetMatchingJobOutput, __Met
|
|
|
44
44
|
* // metrics: { // JobMetrics
|
|
45
45
|
* // inputRecords: Number("int"),
|
|
46
46
|
* // totalRecordsProcessed: Number("int"),
|
|
47
|
-
* // matchIDs: Number("int"),
|
|
48
47
|
* // recordsNotProcessed: Number("int"),
|
|
48
|
+
* // matchIDs: Number("int"),
|
|
49
49
|
* // },
|
|
50
50
|
* // errorDetails: { // ErrorDetails
|
|
51
51
|
* // errorMessage: "STRING_VALUE",
|
|
@@ -65,7 +65,7 @@ export interface GetMatchingJobCommandOutput extends GetMatchingJobOutput, __Met
|
|
|
65
65
|
* </p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link InternalServerException} (server fault)
|
|
68
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
68
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
69
69
|
* </p>
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -77,7 +77,7 @@ export interface GetMatchingJobCommandOutput extends GetMatchingJobOutput, __Met
|
|
|
77
77
|
* </p>
|
|
78
78
|
*
|
|
79
79
|
* @throws {@link ValidationException} (client fault)
|
|
80
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
80
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
81
81
|
* </p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -49,18 +49,18 @@ export interface GetMatchingWorkflowCommandOutput extends GetMatchingWorkflowOut
|
|
|
49
49
|
* // outputSourceConfig: [ // OutputSourceConfig // required
|
|
50
50
|
* // { // OutputSource
|
|
51
51
|
* // outputS3Path: "STRING_VALUE", // required
|
|
52
|
+
* // KMSArn: "STRING_VALUE",
|
|
52
53
|
* // output: [ // OutputAttributes // required
|
|
53
54
|
* // { // OutputAttribute
|
|
54
55
|
* // name: "STRING_VALUE", // required
|
|
55
56
|
* // hashed: true || false,
|
|
56
57
|
* // },
|
|
57
58
|
* // ],
|
|
58
|
-
* // KMSArn: "STRING_VALUE",
|
|
59
59
|
* // applyNormalization: true || false,
|
|
60
60
|
* // },
|
|
61
61
|
* // ],
|
|
62
62
|
* // resolutionTechniques: { // ResolutionTechniques
|
|
63
|
-
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
63
|
+
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
|
|
64
64
|
* // ruleBasedProperties: { // RuleBasedProperties
|
|
65
65
|
* // rules: [ // RuleList // required
|
|
66
66
|
* // { // Rule
|
|
@@ -97,7 +97,7 @@ export interface GetMatchingWorkflowCommandOutput extends GetMatchingWorkflowOut
|
|
|
97
97
|
* </p>
|
|
98
98
|
*
|
|
99
99
|
* @throws {@link InternalServerException} (server fault)
|
|
100
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
100
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
101
101
|
* </p>
|
|
102
102
|
*
|
|
103
103
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -109,7 +109,7 @@ export interface GetMatchingWorkflowCommandOutput extends GetMatchingWorkflowOut
|
|
|
109
109
|
* </p>
|
|
110
110
|
*
|
|
111
111
|
* @throws {@link ValidationException} (client fault)
|
|
112
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
112
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
113
113
|
* </p>
|
|
114
114
|
*
|
|
115
115
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -67,7 +67,7 @@ export interface GetSchemaMappingCommandOutput extends GetSchemaMappingOutput, _
|
|
|
67
67
|
* </p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link InternalServerException} (server fault)
|
|
70
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
70
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
71
71
|
* </p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -79,7 +79,7 @@ export interface GetSchemaMappingCommandOutput extends GetSchemaMappingOutput, _
|
|
|
79
79
|
* </p>
|
|
80
80
|
*
|
|
81
81
|
* @throws {@link ValidationException} (client fault)
|
|
82
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
82
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
83
83
|
* </p>
|
|
84
84
|
*
|
|
85
85
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -62,7 +62,7 @@ export interface ListMatchingJobsCommandOutput extends ListMatchingJobsOutput, _
|
|
|
62
62
|
* </p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link InternalServerException} (server fault)
|
|
65
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
65
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
66
66
|
* </p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -74,7 +74,7 @@ export interface ListMatchingJobsCommandOutput extends ListMatchingJobsOutput, _
|
|
|
74
74
|
* </p>
|
|
75
75
|
*
|
|
76
76
|
* @throws {@link ValidationException} (client fault)
|
|
77
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
77
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
78
78
|
* </p>
|
|
79
79
|
*
|
|
80
80
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -23,7 +23,7 @@ export interface ListMatchingWorkflowsCommandOutput extends ListMatchingWorkflow
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Returns a list of all the <code>MatchingWorkflows</code> that have been created for an
|
|
26
|
+
* <p>Returns a list of all the <code>MatchingWorkflows</code> that have been created for an Amazon Web Services account.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -61,7 +61,7 @@ export interface ListMatchingWorkflowsCommandOutput extends ListMatchingWorkflow
|
|
|
61
61
|
* </p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link InternalServerException} (server fault)
|
|
64
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
64
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
65
65
|
* </p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -69,7 +69,7 @@ export interface ListMatchingWorkflowsCommandOutput extends ListMatchingWorkflow
|
|
|
69
69
|
* </p>
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ValidationException} (client fault)
|
|
72
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
72
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
73
73
|
* </p>
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -23,7 +23,7 @@ export interface ListSchemaMappingsCommandOutput extends ListSchemaMappingsOutpu
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Returns a list of all the <code>SchemaMappings</code> that have been created for an
|
|
26
|
+
* <p>Returns a list of all the <code>SchemaMappings</code> that have been created for an Amazon Web Services account.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -61,7 +61,7 @@ export interface ListSchemaMappingsCommandOutput extends ListSchemaMappingsOutpu
|
|
|
61
61
|
* </p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link InternalServerException} (server fault)
|
|
64
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
64
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
65
65
|
* </p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link ThrottlingException} (client fault)
|
|
@@ -69,7 +69,7 @@ export interface ListSchemaMappingsCommandOutput extends ListSchemaMappingsOutpu
|
|
|
69
69
|
* </p>
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ValidationException} (client fault)
|
|
72
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
72
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
73
73
|
* </p>
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -23,7 +23,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Displays the tags associated with an
|
|
26
|
+
* <p>Displays the tags associated with an Entity Resolution resource. In Entity
|
|
27
27
|
* Resolution, <code>SchemaMapping</code>, and <code>MatchingWorkflow</code> can be
|
|
28
28
|
* tagged.</p>
|
|
29
29
|
* @example
|
|
@@ -52,7 +52,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
52
52
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
53
53
|
*
|
|
54
54
|
* @throws {@link InternalServerException} (server fault)
|
|
55
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
55
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
56
56
|
* </p>
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -60,7 +60,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
60
60
|
* </p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link ValidationException} (client fault)
|
|
63
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
63
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
64
64
|
* </p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -58,12 +58,12 @@ export interface StartMatchingJobCommandOutput extends StartMatchingJobOutput, _
|
|
|
58
58
|
* </p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link ExceedsLimitException} (client fault)
|
|
61
|
-
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
61
|
+
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
|
|
62
62
|
* The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
|
|
63
63
|
* </p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link InternalServerException} (server fault)
|
|
66
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
66
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
67
67
|
* </p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -75,7 +75,7 @@ export interface StartMatchingJobCommandOutput extends StartMatchingJobOutput, _
|
|
|
75
75
|
* </p>
|
|
76
76
|
*
|
|
77
77
|
* @throws {@link ValidationException} (client fault)
|
|
78
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
78
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
79
79
|
* </p>
|
|
80
80
|
*
|
|
81
81
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -23,11 +23,11 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Assigns one or more tags (key-value pairs) to the specified
|
|
26
|
+
* <p>Assigns one or more tags (key-value pairs) to the specified Entity Resolution
|
|
27
27
|
* resource. Tags can help you organize and categorize your resources. You can also use them
|
|
28
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
|
|
30
|
-
* <code>MatchingWorkflow</code> can be tagged. Tags don't have any semantic meaning to
|
|
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 Amazon Web Services
|
|
31
31
|
* and are interpreted strictly as strings of characters. You can use the
|
|
32
32
|
* <code>TagResource</code> action with a resource that already has tags. If you specify a
|
|
33
33
|
* new tag key, this tag is appended to the list of tags associated with the resource. If you
|
|
@@ -58,7 +58,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
58
58
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link InternalServerException} (server fault)
|
|
61
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
61
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
62
62
|
* </p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -66,7 +66,7 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
66
66
|
* </p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link ValidationException} (client fault)
|
|
69
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
69
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
70
70
|
* </p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -23,7 +23,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Removes one or more tags from the specified
|
|
26
|
+
* <p>Removes one or more tags from the specified Entity Resolution resource. In Entity
|
|
27
27
|
* Resolution, <code>SchemaMapping</code>, and <code>MatchingWorkflow</code> can be
|
|
28
28
|
* tagged.</p>
|
|
29
29
|
* @example
|
|
@@ -51,7 +51,7 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
51
51
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link InternalServerException} (server fault)
|
|
54
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
54
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
55
55
|
* </p>
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -46,18 +46,18 @@ export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkf
|
|
|
46
46
|
* outputSourceConfig: [ // OutputSourceConfig // required
|
|
47
47
|
* { // OutputSource
|
|
48
48
|
* outputS3Path: "STRING_VALUE", // required
|
|
49
|
+
* KMSArn: "STRING_VALUE",
|
|
49
50
|
* output: [ // OutputAttributes // required
|
|
50
51
|
* { // OutputAttribute
|
|
51
52
|
* name: "STRING_VALUE", // required
|
|
52
53
|
* hashed: true || false,
|
|
53
54
|
* },
|
|
54
55
|
* ],
|
|
55
|
-
* KMSArn: "STRING_VALUE",
|
|
56
56
|
* applyNormalization: true || false,
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
59
|
* resolutionTechniques: { // ResolutionTechniques
|
|
60
|
-
* resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
60
|
+
* resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
|
|
61
61
|
* ruleBasedProperties: { // RuleBasedProperties
|
|
62
62
|
* rules: [ // RuleList // required
|
|
63
63
|
* { // Rule
|
|
@@ -90,18 +90,18 @@ export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkf
|
|
|
90
90
|
* // outputSourceConfig: [ // OutputSourceConfig // required
|
|
91
91
|
* // { // OutputSource
|
|
92
92
|
* // outputS3Path: "STRING_VALUE", // required
|
|
93
|
+
* // KMSArn: "STRING_VALUE",
|
|
93
94
|
* // output: [ // OutputAttributes // required
|
|
94
95
|
* // { // OutputAttribute
|
|
95
96
|
* // name: "STRING_VALUE", // required
|
|
96
97
|
* // hashed: true || false,
|
|
97
98
|
* // },
|
|
98
99
|
* // ],
|
|
99
|
-
* // KMSArn: "STRING_VALUE",
|
|
100
100
|
* // applyNormalization: true || false,
|
|
101
101
|
* // },
|
|
102
102
|
* // ],
|
|
103
103
|
* // resolutionTechniques: { // ResolutionTechniques
|
|
104
|
-
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING",
|
|
104
|
+
* // resolutionType: "RULE_MATCHING" || "ML_MATCHING", // required
|
|
105
105
|
* // ruleBasedProperties: { // RuleBasedProperties
|
|
106
106
|
* // rules: [ // RuleList // required
|
|
107
107
|
* // { // Rule
|
|
@@ -133,7 +133,7 @@ export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkf
|
|
|
133
133
|
* </p>
|
|
134
134
|
*
|
|
135
135
|
* @throws {@link InternalServerException} (server fault)
|
|
136
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
136
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
137
137
|
* </p>
|
|
138
138
|
*
|
|
139
139
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
@@ -145,7 +145,7 @@ export interface UpdateMatchingWorkflowCommandOutput extends UpdateMatchingWorkf
|
|
|
145
145
|
* </p>
|
|
146
146
|
*
|
|
147
147
|
* @throws {@link ValidationException} (client fault)
|
|
148
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
148
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
149
149
|
* </p>
|
|
150
150
|
*
|
|
151
151
|
* @throws {@link EntityResolutionServiceException}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
1
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
2
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
3
4
|
/**
|
|
4
5
|
* @internal
|
|
5
6
|
*/
|
|
6
|
-
export interface EntityResolutionExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration {
|
|
7
|
+
export interface EntityResolutionExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
|
|
7
8
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Welcome to the <i>
|
|
3
|
-
* <p>
|
|
2
|
+
* <p>Welcome to the <i>Entity Resolution API Reference</i>.</p>
|
|
3
|
+
* <p>Entity Resolution is an Amazon Web Services service that provides pre-configured entity resolution capabilities
|
|
4
4
|
* that enable developers and analysts at advertising and marketing companies to build an accurate and
|
|
5
5
|
* complete view of their consumers.</p>
|
|
6
6
|
* <p>
|
|
7
|
-
* With
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
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
|
|
7
|
+
* With Entity Resolution, you can match source records containing consumer identifiers, such as name, email address,
|
|
8
|
+
* and phone number. This is true even when these records have incomplete or conflicting identifiers. For example,
|
|
9
|
+
* Entity Resolution can effectively match a source record from a customer relationship management (CRM) system
|
|
10
|
+
* with a source record from a marketing system containing campaign information.</p>
|
|
11
|
+
* <p>To learn more about Entity Resolution concepts, procedures, and best practices, see the
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/entityresolution/latest/userguide/what-is-service.html">Entity Resolution
|
|
15
13
|
* User Guide</a>.</p>
|
|
16
14
|
*
|
|
17
15
|
* @packageDocumentation
|
|
@@ -88,9 +88,9 @@ export interface InputSource {
|
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
90
|
* @public
|
|
91
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
92
|
-
*
|
|
93
|
-
* values of the column should be hashed.</p>
|
|
91
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
92
|
+
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
93
|
+
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
94
94
|
*/
|
|
95
95
|
export interface OutputAttribute {
|
|
96
96
|
/**
|
|
@@ -107,9 +107,9 @@ export interface OutputAttribute {
|
|
|
107
107
|
}
|
|
108
108
|
/**
|
|
109
109
|
* @public
|
|
110
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
111
|
-
*
|
|
112
|
-
* values of the column should be hashed.</p>
|
|
110
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
111
|
+
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
112
|
+
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
113
113
|
*/
|
|
114
114
|
export interface OutputSource {
|
|
115
115
|
/**
|
|
@@ -117,19 +117,19 @@ export interface OutputSource {
|
|
|
117
117
|
* <p>The S3 path to which Entity Resolution will write the output table.</p>
|
|
118
118
|
*/
|
|
119
119
|
outputS3Path: string | undefined;
|
|
120
|
-
/**
|
|
121
|
-
* @public
|
|
122
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields Name and Hashed. Each of
|
|
123
|
-
* these objects selects a column to be included in the output table, and whether the
|
|
124
|
-
* values of the column should be hashed.</p>
|
|
125
|
-
*/
|
|
126
|
-
output: OutputAttribute[] | undefined;
|
|
127
120
|
/**
|
|
128
121
|
* @public
|
|
129
122
|
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use an
|
|
130
123
|
* Entity Resolution managed KMS key.</p>
|
|
131
124
|
*/
|
|
132
125
|
KMSArn?: string;
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
129
|
+
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
130
|
+
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
131
|
+
*/
|
|
132
|
+
output: OutputAttribute[] | undefined;
|
|
133
133
|
/**
|
|
134
134
|
* @public
|
|
135
135
|
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an
|
|
@@ -177,32 +177,33 @@ export interface Rule {
|
|
|
177
177
|
export interface RuleBasedProperties {
|
|
178
178
|
/**
|
|
179
179
|
* @public
|
|
180
|
-
* <p>A list of Rule objects, each of which have fields <code>RuleName</code> and
|
|
180
|
+
* <p>A list of <code>Rule</code> objects, each of which have fields <code>RuleName</code> and
|
|
181
|
+
* <code>MatchingKeys</code>.</p>
|
|
181
182
|
*/
|
|
182
183
|
rules: Rule[] | undefined;
|
|
183
184
|
/**
|
|
184
185
|
* @public
|
|
185
|
-
* <p>You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the AttributeMatchingModel. When
|
|
186
|
-
* choosing <code>MANY_TO_MANY</code>, the system can match
|
|
187
|
-
* example, if the value of the Email field of Profile A and the value of BusinessEmail field of Profile B matches,
|
|
188
|
-
* the two profiles are matched on the Email type. When choosing <code>ONE_TO_ONE</code> the system can only match if
|
|
189
|
-
* the sub-types are exact matches. For example, only when the value of the Email field of Profile A and the value of
|
|
190
|
-
* the Email field of Profile B matches, the two profiles are matched on the Email type.</p>
|
|
186
|
+
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the AttributeMatchingModel. When
|
|
187
|
+
* choosing <code>MANY_TO_MANY</code>, the system can match attributes across the sub-types of an attribute type. For
|
|
188
|
+
* example, if the value of the <code>Email</code> field of Profile A and the value of <code>BusinessEmail</code> field of Profile B matches,
|
|
189
|
+
* the two profiles are matched on the <code>Email</code> type. When choosing <code>ONE_TO_ONE</code> ,the system can only match if
|
|
190
|
+
* the sub-types are exact matches. For example, only when the value of the <code>Email</code> field of Profile A and the value of
|
|
191
|
+
* the <code>Email</code> field of Profile B matches, the two profiles are matched on the <code>Email</code> type.</p>
|
|
191
192
|
*/
|
|
192
193
|
attributeMatchingModel: AttributeMatchingModel | string | undefined;
|
|
193
194
|
}
|
|
194
195
|
/**
|
|
195
196
|
* @public
|
|
196
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
197
|
-
*
|
|
197
|
+
* <p>An object which defines the <code>resolutionType</code> and the
|
|
198
|
+
* <code>ruleBasedProperties</code>.</p>
|
|
198
199
|
*/
|
|
199
200
|
export interface ResolutionTechniques {
|
|
200
201
|
/**
|
|
201
202
|
* @public
|
|
202
|
-
* <p>There are two types of matching
|
|
203
|
-
*
|
|
203
|
+
* <p>The type of matching. There are two types of matching: <code>RULE_MATCHING</code> and
|
|
204
|
+
* <code>ML_MATCHING</code>.</p>
|
|
204
205
|
*/
|
|
205
|
-
resolutionType
|
|
206
|
+
resolutionType: ResolutionType | string | undefined;
|
|
206
207
|
/**
|
|
207
208
|
* @public
|
|
208
209
|
* <p>An object which defines the list of matching rules to run and has a field <code>Rules</code>, which
|
|
@@ -238,8 +239,8 @@ export interface CreateMatchingWorkflowInput {
|
|
|
238
239
|
outputSourceConfig: OutputSource[] | undefined;
|
|
239
240
|
/**
|
|
240
241
|
* @public
|
|
241
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
242
|
-
*
|
|
242
|
+
* <p>An object which defines the <code>resolutionType</code> and the
|
|
243
|
+
* <code>ruleBasedProperties</code>.</p>
|
|
243
244
|
*/
|
|
244
245
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
245
246
|
/**
|
|
@@ -249,7 +250,7 @@ export interface CreateMatchingWorkflowInput {
|
|
|
249
250
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
250
251
|
/**
|
|
251
252
|
* @public
|
|
252
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role.
|
|
253
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role
|
|
253
254
|
* to create resources on your behalf as part of workflow execution.</p>
|
|
254
255
|
*/
|
|
255
256
|
roleArn: string | undefined;
|
|
@@ -292,8 +293,8 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
292
293
|
outputSourceConfig: OutputSource[] | undefined;
|
|
293
294
|
/**
|
|
294
295
|
* @public
|
|
295
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
296
|
-
*
|
|
296
|
+
* <p>An object which defines the <code>resolutionType</code> and the
|
|
297
|
+
* <code>ruleBasedProperties</code>.</p>
|
|
297
298
|
*/
|
|
298
299
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
299
300
|
/**
|
|
@@ -303,20 +304,30 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
303
304
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
304
305
|
/**
|
|
305
306
|
* @public
|
|
306
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role.
|
|
307
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role
|
|
307
308
|
* to create resources on your behalf as part of workflow execution.</p>
|
|
308
309
|
*/
|
|
309
310
|
roleArn: string | undefined;
|
|
310
311
|
}
|
|
311
312
|
/**
|
|
312
313
|
* @public
|
|
313
|
-
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
314
|
+
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits.
|
|
314
315
|
* The error message describes the limit exceeded. <code>HTTP Status Code: 402</code>
|
|
315
316
|
* </p>
|
|
316
317
|
*/
|
|
317
318
|
export declare class ExceedsLimitException extends __BaseException {
|
|
318
319
|
readonly name: "ExceedsLimitException";
|
|
319
320
|
readonly $fault: "client";
|
|
321
|
+
/**
|
|
322
|
+
* @public
|
|
323
|
+
* <p>The name of the quota that has been breached.</p>
|
|
324
|
+
*/
|
|
325
|
+
quotaName?: string;
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
* <p>The current quota value for the customers.</p>
|
|
329
|
+
*/
|
|
330
|
+
quotaValue?: number;
|
|
320
331
|
/**
|
|
321
332
|
* @internal
|
|
322
333
|
*/
|
|
@@ -324,7 +335,7 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
324
335
|
}
|
|
325
336
|
/**
|
|
326
337
|
* @public
|
|
327
|
-
* <p>This exception occurs when there is an internal failure in the
|
|
338
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. <code>HTTP Status Code: 500</code>
|
|
328
339
|
* </p>
|
|
329
340
|
*/
|
|
330
341
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -354,7 +365,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
354
365
|
}
|
|
355
366
|
/**
|
|
356
367
|
* @public
|
|
357
|
-
* <p>The input fails to satisfy the constraints specified by
|
|
368
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP Status Code: 400</code>
|
|
358
369
|
* </p>
|
|
359
370
|
*/
|
|
360
371
|
export declare class ValidationException extends __BaseException {
|
|
@@ -423,10 +434,10 @@ export interface SchemaInputAttribute {
|
|
|
423
434
|
* <p>A key that allows grouping of multiple input attributes into a unified matching group.
|
|
424
435
|
* For example, let's consider a scenario where the source table contains various addresses,
|
|
425
436
|
* such as business_address and shipping_address. By assigning the <code>MatchKey</code>
|
|
426
|
-
* <i>Address</i>
|
|
427
|
-
*
|
|
428
|
-
*
|
|
429
|
-
*
|
|
437
|
+
* <i>Address</i> to both attributes, Entity Resolution will match records across these
|
|
438
|
+
* fields to create a consolidated matching group. If no <code>MatchKey</code> is specified
|
|
439
|
+
* for a column, it won't be utilized for matching purposes but will still be included in the
|
|
440
|
+
* output table.</p>
|
|
430
441
|
*/
|
|
431
442
|
matchKey?: string;
|
|
432
443
|
}
|
|
@@ -451,7 +462,7 @@ export interface CreateSchemaMappingInput {
|
|
|
451
462
|
* to a column the source data table, and contains column name plus additional information
|
|
452
463
|
* that Entity Resolution uses for matching.</p>
|
|
453
464
|
*/
|
|
454
|
-
mappedInputFields
|
|
465
|
+
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
455
466
|
/**
|
|
456
467
|
* @public
|
|
457
468
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
@@ -608,14 +619,14 @@ export interface JobMetrics {
|
|
|
608
619
|
totalRecordsProcessed?: number;
|
|
609
620
|
/**
|
|
610
621
|
* @public
|
|
611
|
-
* <p>The total number of
|
|
622
|
+
* <p>The total number of records that did not get processed.</p>
|
|
612
623
|
*/
|
|
613
|
-
|
|
624
|
+
recordsNotProcessed?: number;
|
|
614
625
|
/**
|
|
615
626
|
* @public
|
|
616
|
-
* <p>The total number of
|
|
627
|
+
* <p>The total number of <code>matchID</code>s generated.</p>
|
|
617
628
|
*/
|
|
618
|
-
|
|
629
|
+
matchIDs?: number;
|
|
619
630
|
}
|
|
620
631
|
/**
|
|
621
632
|
* @public
|
|
@@ -642,8 +653,7 @@ export interface GetMatchingJobOutput {
|
|
|
642
653
|
jobId: string | undefined;
|
|
643
654
|
/**
|
|
644
655
|
* @public
|
|
645
|
-
* <p>The current status of the job
|
|
646
|
-
* <code>queued</code>, or <code>failed</code>.</p>
|
|
656
|
+
* <p>The current status of the job.</p>
|
|
647
657
|
*/
|
|
648
658
|
status: JobStatus | string | undefined;
|
|
649
659
|
/**
|
|
@@ -711,8 +721,8 @@ export interface GetMatchingWorkflowOutput {
|
|
|
711
721
|
outputSourceConfig: OutputSource[] | undefined;
|
|
712
722
|
/**
|
|
713
723
|
* @public
|
|
714
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
715
|
-
*
|
|
724
|
+
* <p>An object which defines the <code>resolutionType</code> and the
|
|
725
|
+
* <code>ruleBasedProperties</code>.</p>
|
|
716
726
|
*/
|
|
717
727
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
718
728
|
/**
|
|
@@ -732,7 +742,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
732
742
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
733
743
|
/**
|
|
734
744
|
* @public
|
|
735
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role.
|
|
745
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access
|
|
736
746
|
* resources on your behalf.</p>
|
|
737
747
|
*/
|
|
738
748
|
roleArn: string | undefined;
|
|
@@ -827,8 +837,7 @@ export interface JobSummary {
|
|
|
827
837
|
jobId: string | undefined;
|
|
828
838
|
/**
|
|
829
839
|
* @public
|
|
830
|
-
* <p>The current status of the job
|
|
831
|
-
* <code>queued</code>, or <code>failed</code>.</p>
|
|
840
|
+
* <p>The current status of the job.</p>
|
|
832
841
|
*/
|
|
833
842
|
status: JobStatus | string | undefined;
|
|
834
843
|
/**
|
|
@@ -848,7 +857,7 @@ export interface JobSummary {
|
|
|
848
857
|
export interface ListMatchingJobsOutput {
|
|
849
858
|
/**
|
|
850
859
|
* @public
|
|
851
|
-
* <p>A list of JobSummary objects, each of which contain the ID, status, start time, and end time of a job.</p>
|
|
860
|
+
* <p>A list of <code>JobSummary</code> objects, each of which contain the ID, status, start time, and end time of a job.</p>
|
|
852
861
|
*/
|
|
853
862
|
jobs?: JobSummary[];
|
|
854
863
|
/**
|
|
@@ -1082,8 +1091,7 @@ export interface UpdateMatchingWorkflowInput {
|
|
|
1082
1091
|
outputSourceConfig: OutputSource[] | undefined;
|
|
1083
1092
|
/**
|
|
1084
1093
|
* @public
|
|
1085
|
-
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>
|
|
1086
|
-
* </p>
|
|
1094
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
1087
1095
|
*/
|
|
1088
1096
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
1089
1097
|
/**
|
|
@@ -1093,7 +1101,7 @@ export interface UpdateMatchingWorkflowInput {
|
|
|
1093
1101
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
1094
1102
|
/**
|
|
1095
1103
|
* @public
|
|
1096
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role.
|
|
1104
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role
|
|
1097
1105
|
* to create resources on your behalf as part of workflow execution.</p>
|
|
1098
1106
|
*/
|
|
1099
1107
|
roleArn: string | undefined;
|
|
@@ -1137,7 +1145,7 @@ export interface UpdateMatchingWorkflowOutput {
|
|
|
1137
1145
|
incrementalRunConfig?: IncrementalRunConfig;
|
|
1138
1146
|
/**
|
|
1139
1147
|
* @public
|
|
1140
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role.
|
|
1148
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role
|
|
1141
1149
|
* to create resources on your behalf as part of workflow execution.</p>
|
|
1142
1150
|
*/
|
|
1143
1151
|
roleArn: string | undefined;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
1
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
2
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
3
4
|
export interface EntityResolutionExtensionConfiguration
|
|
4
5
|
extends HttpHandlerExtensionConfiguration,
|
|
5
|
-
DefaultExtensionConfiguration
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
|
@@ -37,8 +37,8 @@ export interface OutputAttribute {
|
|
|
37
37
|
}
|
|
38
38
|
export interface OutputSource {
|
|
39
39
|
outputS3Path: string | undefined;
|
|
40
|
-
output: OutputAttribute[] | undefined;
|
|
41
40
|
KMSArn?: string;
|
|
41
|
+
output: OutputAttribute[] | undefined;
|
|
42
42
|
applyNormalization?: boolean;
|
|
43
43
|
}
|
|
44
44
|
export declare const ResolutionType: {
|
|
@@ -56,7 +56,7 @@ export interface RuleBasedProperties {
|
|
|
56
56
|
attributeMatchingModel: AttributeMatchingModel | string | undefined;
|
|
57
57
|
}
|
|
58
58
|
export interface ResolutionTechniques {
|
|
59
|
-
resolutionType
|
|
59
|
+
resolutionType: ResolutionType | string | undefined;
|
|
60
60
|
ruleBasedProperties?: RuleBasedProperties;
|
|
61
61
|
}
|
|
62
62
|
export interface CreateMatchingWorkflowInput {
|
|
@@ -82,6 +82,8 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
82
82
|
export declare class ExceedsLimitException extends __BaseException {
|
|
83
83
|
readonly name: "ExceedsLimitException";
|
|
84
84
|
readonly $fault: "client";
|
|
85
|
+
quotaName?: string;
|
|
86
|
+
quotaValue?: number;
|
|
85
87
|
constructor(
|
|
86
88
|
opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>
|
|
87
89
|
);
|
|
@@ -143,7 +145,7 @@ export interface SchemaInputAttribute {
|
|
|
143
145
|
export interface CreateSchemaMappingInput {
|
|
144
146
|
schemaName: string | undefined;
|
|
145
147
|
description?: string;
|
|
146
|
-
mappedInputFields
|
|
148
|
+
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
147
149
|
tags?: Record<string, string>;
|
|
148
150
|
}
|
|
149
151
|
export interface CreateSchemaMappingOutput {
|
|
@@ -188,8 +190,8 @@ export interface ErrorDetails {
|
|
|
188
190
|
export interface JobMetrics {
|
|
189
191
|
inputRecords?: number;
|
|
190
192
|
totalRecordsProcessed?: number;
|
|
191
|
-
matchIDs?: number;
|
|
192
193
|
recordsNotProcessed?: number;
|
|
194
|
+
matchIDs?: number;
|
|
193
195
|
}
|
|
194
196
|
export declare const JobStatus: {
|
|
195
197
|
readonly FAILED: "FAILED";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-entityresolution",
|
|
3
3
|
"description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.414.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,37 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/
|
|
32
|
-
"@aws-sdk/
|
|
33
|
-
"@aws-sdk/util-
|
|
34
|
-
"@aws-sdk/util-user-agent-
|
|
35
|
-
"@
|
|
36
|
-
"@smithy/
|
|
37
|
-
"@smithy/
|
|
38
|
-
"@smithy/
|
|
39
|
-
"@smithy/
|
|
40
|
-
"@smithy/middleware-
|
|
41
|
-
"@smithy/middleware-
|
|
42
|
-
"@smithy/middleware-
|
|
24
|
+
"@aws-sdk/client-sts": "3.414.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.414.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.413.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.413.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.413.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.413.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.413.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.413.0",
|
|
32
|
+
"@aws-sdk/types": "3.413.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.413.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.413.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.413.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.8",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.1.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.7",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.7",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.9",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.0.7",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.10",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.7",
|
|
43
44
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
45
|
-
"@smithy/node-http-handler": "^2.1.
|
|
46
|
-
"@smithy/protocol-http": "^3.0.
|
|
47
|
-
"@smithy/smithy-client": "^2.1.
|
|
48
|
-
"@smithy/types": "^2.3.
|
|
49
|
-
"@smithy/url-parser": "^2.0.
|
|
45
|
+
"@smithy/node-config-provider": "^2.0.10",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.3",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.3",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.4",
|
|
49
|
+
"@smithy/types": "^2.3.1",
|
|
50
|
+
"@smithy/url-parser": "^2.0.7",
|
|
50
51
|
"@smithy/util-base64": "^2.0.0",
|
|
51
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.8",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.10",
|
|
55
56
|
"@smithy/util-retry": "^2.0.0",
|
|
56
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
57
58
|
"tslib": "^2.5.0"
|