@aws-sdk/client-entityresolution 3.614.0 → 3.618.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/dist-cjs/index.js +34 -10
- package/dist-es/EntityResolutionClient.js +5 -5
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/EntityResolutionClient.d.ts +2 -2
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +6 -15
- package/dist-types/commands/BatchDeleteUniqueIdCommand.d.ts +3 -7
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +36 -19
- package/dist-types/commands/CreateIdNamespaceCommand.d.ts +42 -17
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +8 -15
- package/dist-types/commands/CreateSchemaMappingCommand.d.ts +8 -15
- package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +5 -13
- package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +4 -11
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +5 -13
- package/dist-types/commands/DeletePolicyStatementCommand.d.ts +6 -15
- package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +5 -13
- package/dist-types/commands/GetIdMappingJobCommand.d.ts +8 -13
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +20 -15
- package/dist-types/commands/GetIdNamespaceCommand.d.ts +23 -14
- package/dist-types/commands/GetMatchIdCommand.d.ts +5 -13
- package/dist-types/commands/GetMatchingJobCommand.d.ts +5 -13
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +6 -13
- package/dist-types/commands/GetPolicyCommand.d.ts +5 -13
- package/dist-types/commands/GetProviderServiceCommand.d.ts +5 -13
- package/dist-types/commands/GetSchemaMappingCommand.d.ts +6 -13
- package/dist-types/commands/ListIdMappingJobsCommand.d.ts +5 -13
- package/dist-types/commands/ListIdMappingWorkflowsCommand.d.ts +4 -11
- package/dist-types/commands/ListIdNamespacesCommand.d.ts +9 -11
- package/dist-types/commands/ListMatchingJobsCommand.d.ts +5 -13
- package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +4 -11
- package/dist-types/commands/ListProviderServicesCommand.d.ts +4 -11
- package/dist-types/commands/ListSchemaMappingsCommand.d.ts +4 -11
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -7
- package/dist-types/commands/PutPolicyCommand.d.ts +6 -15
- package/dist-types/commands/StartIdMappingJobCommand.d.ts +7 -17
- package/dist-types/commands/StartMatchingJobCommand.d.ts +7 -17
- package/dist-types/commands/TagResourceCommand.d.ts +3 -7
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -4
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +35 -17
- package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +41 -15
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +7 -13
- package/dist-types/commands/UpdateSchemaMappingCommand.d.ts +8 -15
- package/dist-types/models/models_0.d.ts +265 -77
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +50 -9
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -46,6 +46,11 @@ declare const ListIdNamespacesCommand_base: {
|
|
|
46
46
|
* // idNamespaceName: "STRING_VALUE", // required
|
|
47
47
|
* // idNamespaceArn: "STRING_VALUE", // required
|
|
48
48
|
* // description: "STRING_VALUE",
|
|
49
|
+
* // idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowMetadataList
|
|
50
|
+
* // { // IdNamespaceIdMappingWorkflowMetadata
|
|
51
|
+
* // idMappingType: "PROVIDER" || "RULE_BASED", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
49
54
|
* // type: "SOURCE" || "TARGET", // required
|
|
50
55
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
51
56
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
@@ -63,24 +68,17 @@ declare const ListIdNamespacesCommand_base: {
|
|
|
63
68
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
64
69
|
*
|
|
65
70
|
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
-
* <p>You do not have sufficient access to perform this action.
|
|
67
|
-
* 403</code>
|
|
68
|
-
* </p>
|
|
71
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
69
72
|
*
|
|
70
73
|
* @throws {@link InternalServerException} (server fault)
|
|
71
74
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
72
|
-
* service.
|
|
73
|
-
* </p>
|
|
75
|
+
* service. </p>
|
|
74
76
|
*
|
|
75
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
-
* <p>The request was denied due to request throttling.
|
|
77
|
-
* 429</code>
|
|
78
|
-
* </p>
|
|
78
|
+
* <p>The request was denied due to request throttling. </p>
|
|
79
79
|
*
|
|
80
80
|
* @throws {@link ValidationException} (client fault)
|
|
81
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
82
|
-
* Status Code: 400</code>
|
|
83
|
-
* </p>
|
|
81
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
84
82
|
*
|
|
85
83
|
* @throws {@link EntityResolutionServiceException}
|
|
86
84
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -62,28 +62,20 @@ declare const ListMatchingJobsCommand_base: {
|
|
|
62
62
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link AccessDeniedException} (client fault)
|
|
65
|
-
* <p>You do not have sufficient access to perform this action.
|
|
66
|
-
* 403</code>
|
|
67
|
-
* </p>
|
|
65
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
68
66
|
*
|
|
69
67
|
* @throws {@link InternalServerException} (server fault)
|
|
70
68
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
71
|
-
* service.
|
|
72
|
-
* </p>
|
|
69
|
+
* service. </p>
|
|
73
70
|
*
|
|
74
71
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
-
* <p>The resource could not be found.
|
|
76
|
-
* </p>
|
|
72
|
+
* <p>The resource could not be found. </p>
|
|
77
73
|
*
|
|
78
74
|
* @throws {@link ThrottlingException} (client fault)
|
|
79
|
-
* <p>The request was denied due to request throttling.
|
|
80
|
-
* 429</code>
|
|
81
|
-
* </p>
|
|
75
|
+
* <p>The request was denied due to request throttling. </p>
|
|
82
76
|
*
|
|
83
77
|
* @throws {@link ValidationException} (client fault)
|
|
84
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
85
|
-
* Status Code: 400</code>
|
|
86
|
-
* </p>
|
|
78
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
87
79
|
*
|
|
88
80
|
* @throws {@link EntityResolutionServiceException}
|
|
89
81
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -63,24 +63,17 @@ declare const ListMatchingWorkflowsCommand_base: {
|
|
|
63
63
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
-
* <p>You do not have sufficient access to perform this action.
|
|
67
|
-
* 403</code>
|
|
68
|
-
* </p>
|
|
66
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
69
67
|
*
|
|
70
68
|
* @throws {@link InternalServerException} (server fault)
|
|
71
69
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
72
|
-
* service.
|
|
73
|
-
* </p>
|
|
70
|
+
* service. </p>
|
|
74
71
|
*
|
|
75
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
-
* <p>The request was denied due to request throttling.
|
|
77
|
-
* 429</code>
|
|
78
|
-
* </p>
|
|
73
|
+
* <p>The request was denied due to request throttling. </p>
|
|
79
74
|
*
|
|
80
75
|
* @throws {@link ValidationException} (client fault)
|
|
81
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
82
|
-
* Status Code: 400</code>
|
|
83
|
-
* </p>
|
|
76
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
84
77
|
*
|
|
85
78
|
* @throws {@link EntityResolutionServiceException}
|
|
86
79
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -64,24 +64,17 @@ declare const ListProviderServicesCommand_base: {
|
|
|
64
64
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
-
* <p>You do not have sufficient access to perform this action.
|
|
68
|
-
* 403</code>
|
|
69
|
-
* </p>
|
|
67
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
70
68
|
*
|
|
71
69
|
* @throws {@link InternalServerException} (server fault)
|
|
72
70
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
73
|
-
* service.
|
|
74
|
-
* </p>
|
|
71
|
+
* service. </p>
|
|
75
72
|
*
|
|
76
73
|
* @throws {@link ThrottlingException} (client fault)
|
|
77
|
-
* <p>The request was denied due to request throttling.
|
|
78
|
-
* 429</code>
|
|
79
|
-
* </p>
|
|
74
|
+
* <p>The request was denied due to request throttling. </p>
|
|
80
75
|
*
|
|
81
76
|
* @throws {@link ValidationException} (client fault)
|
|
82
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
83
|
-
* Status Code: 400</code>
|
|
84
|
-
* </p>
|
|
77
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
85
78
|
*
|
|
86
79
|
* @throws {@link EntityResolutionServiceException}
|
|
87
80
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -63,24 +63,17 @@ declare const ListSchemaMappingsCommand_base: {
|
|
|
63
63
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
-
* <p>You do not have sufficient access to perform this action.
|
|
67
|
-
* 403</code>
|
|
68
|
-
* </p>
|
|
66
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
69
67
|
*
|
|
70
68
|
* @throws {@link InternalServerException} (server fault)
|
|
71
69
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
72
|
-
* service.
|
|
73
|
-
* </p>
|
|
70
|
+
* service. </p>
|
|
74
71
|
*
|
|
75
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
-
* <p>The request was denied due to request throttling.
|
|
77
|
-
* 429</code>
|
|
78
|
-
* </p>
|
|
73
|
+
* <p>The request was denied due to request throttling. </p>
|
|
79
74
|
*
|
|
80
75
|
* @throws {@link ValidationException} (client fault)
|
|
81
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
82
|
-
* Status Code: 400</code>
|
|
83
|
-
* </p>
|
|
76
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
84
77
|
*
|
|
85
78
|
* @throws {@link EntityResolutionServiceException}
|
|
86
79
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -56,17 +56,13 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link InternalServerException} (server fault)
|
|
58
58
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
59
|
-
* service.
|
|
60
|
-
* </p>
|
|
59
|
+
* service. </p>
|
|
61
60
|
*
|
|
62
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
|
-
* <p>The resource could not be found.
|
|
64
|
-
* </p>
|
|
62
|
+
* <p>The resource could not be found. </p>
|
|
65
63
|
*
|
|
66
64
|
* @throws {@link ValidationException} (client fault)
|
|
67
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
68
|
-
* Status Code: 400</code>
|
|
69
|
-
* </p>
|
|
65
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
70
66
|
*
|
|
71
67
|
* @throws {@link EntityResolutionServiceException}
|
|
72
68
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -56,34 +56,25 @@ declare const PutPolicyCommand_base: {
|
|
|
56
56
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
-
* <p>You do not have sufficient access to perform this action.
|
|
60
|
-
* 403</code>
|
|
61
|
-
* </p>
|
|
59
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
62
60
|
*
|
|
63
61
|
* @throws {@link ConflictException} (client fault)
|
|
64
62
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
65
63
|
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
66
|
-
* running, etc.
|
|
67
|
-
* </p>
|
|
64
|
+
* running, etc. </p>
|
|
68
65
|
*
|
|
69
66
|
* @throws {@link InternalServerException} (server fault)
|
|
70
67
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
71
|
-
* service.
|
|
72
|
-
* </p>
|
|
68
|
+
* service. </p>
|
|
73
69
|
*
|
|
74
70
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
-
* <p>The resource could not be found.
|
|
76
|
-
* </p>
|
|
71
|
+
* <p>The resource could not be found. </p>
|
|
77
72
|
*
|
|
78
73
|
* @throws {@link ThrottlingException} (client fault)
|
|
79
|
-
* <p>The request was denied due to request throttling.
|
|
80
|
-
* 429</code>
|
|
81
|
-
* </p>
|
|
74
|
+
* <p>The request was denied due to request throttling. </p>
|
|
82
75
|
*
|
|
83
76
|
* @throws {@link ValidationException} (client fault)
|
|
84
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
85
|
-
* Status Code: 400</code>
|
|
86
|
-
* </p>
|
|
77
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
87
78
|
*
|
|
88
79
|
* @throws {@link EntityResolutionServiceException}
|
|
89
80
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -67,40 +67,30 @@ declare const StartIdMappingJobCommand_base: {
|
|
|
67
67
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link AccessDeniedException} (client fault)
|
|
70
|
-
* <p>You do not have sufficient access to perform this action.
|
|
71
|
-
* 403</code>
|
|
72
|
-
* </p>
|
|
70
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
73
71
|
*
|
|
74
72
|
* @throws {@link ConflictException} (client fault)
|
|
75
73
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
76
74
|
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
77
|
-
* running, etc.
|
|
78
|
-
* </p>
|
|
75
|
+
* running, etc. </p>
|
|
79
76
|
*
|
|
80
77
|
* @throws {@link ExceedsLimitException} (client fault)
|
|
81
78
|
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
82
79
|
* Entity Resolution account limits. The error message describes the limit exceeded.
|
|
83
|
-
*
|
|
84
|
-
* </p>
|
|
80
|
+
* </p>
|
|
85
81
|
*
|
|
86
82
|
* @throws {@link InternalServerException} (server fault)
|
|
87
83
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
88
|
-
* service.
|
|
89
|
-
* </p>
|
|
84
|
+
* service. </p>
|
|
90
85
|
*
|
|
91
86
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
92
|
-
* <p>The resource could not be found.
|
|
93
|
-
* </p>
|
|
87
|
+
* <p>The resource could not be found. </p>
|
|
94
88
|
*
|
|
95
89
|
* @throws {@link ThrottlingException} (client fault)
|
|
96
|
-
* <p>The request was denied due to request throttling.
|
|
97
|
-
* 429</code>
|
|
98
|
-
* </p>
|
|
90
|
+
* <p>The request was denied due to request throttling. </p>
|
|
99
91
|
*
|
|
100
92
|
* @throws {@link ValidationException} (client fault)
|
|
101
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
102
|
-
* Status Code: 400</code>
|
|
103
|
-
* </p>
|
|
93
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
104
94
|
*
|
|
105
95
|
* @throws {@link EntityResolutionServiceException}
|
|
106
96
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -53,40 +53,30 @@ declare const StartMatchingJobCommand_base: {
|
|
|
53
53
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
-
* <p>You do not have sufficient access to perform this action.
|
|
57
|
-
* 403</code>
|
|
58
|
-
* </p>
|
|
56
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
59
57
|
*
|
|
60
58
|
* @throws {@link ConflictException} (client fault)
|
|
61
59
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
62
60
|
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
63
|
-
* running, etc.
|
|
64
|
-
* </p>
|
|
61
|
+
* running, etc. </p>
|
|
65
62
|
*
|
|
66
63
|
* @throws {@link ExceedsLimitException} (client fault)
|
|
67
64
|
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
68
65
|
* Entity Resolution account limits. The error message describes the limit exceeded.
|
|
69
|
-
*
|
|
70
|
-
* </p>
|
|
66
|
+
* </p>
|
|
71
67
|
*
|
|
72
68
|
* @throws {@link InternalServerException} (server fault)
|
|
73
69
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
74
|
-
* service.
|
|
75
|
-
* </p>
|
|
70
|
+
* service. </p>
|
|
76
71
|
*
|
|
77
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
|
-
* <p>The resource could not be found.
|
|
79
|
-
* </p>
|
|
73
|
+
* <p>The resource could not be found. </p>
|
|
80
74
|
*
|
|
81
75
|
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
-
* <p>The request was denied due to request throttling.
|
|
83
|
-
* 429</code>
|
|
84
|
-
* </p>
|
|
76
|
+
* <p>The request was denied due to request throttling. </p>
|
|
85
77
|
*
|
|
86
78
|
* @throws {@link ValidationException} (client fault)
|
|
87
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
88
|
-
* Status Code: 400</code>
|
|
89
|
-
* </p>
|
|
79
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
90
80
|
*
|
|
91
81
|
* @throws {@link EntityResolutionServiceException}
|
|
92
82
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -63,17 +63,13 @@ declare const TagResourceCommand_base: {
|
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link InternalServerException} (server fault)
|
|
65
65
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
66
|
-
* service.
|
|
67
|
-
* </p>
|
|
66
|
+
* service. </p>
|
|
68
67
|
*
|
|
69
68
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
-
* <p>The resource could not be found.
|
|
71
|
-
* </p>
|
|
69
|
+
* <p>The resource could not be found. </p>
|
|
72
70
|
*
|
|
73
71
|
* @throws {@link ValidationException} (client fault)
|
|
74
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
75
|
-
* Status Code: 400</code>
|
|
76
|
-
* </p>
|
|
72
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
77
73
|
*
|
|
78
74
|
* @throws {@link EntityResolutionServiceException}
|
|
79
75
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -55,12 +55,10 @@ declare const UntagResourceCommand_base: {
|
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link InternalServerException} (server fault)
|
|
57
57
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
58
|
-
* service.
|
|
59
|
-
* </p>
|
|
58
|
+
* service. </p>
|
|
60
59
|
*
|
|
61
60
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
62
|
-
* <p>The resource could not be found.
|
|
63
|
-
* </p>
|
|
61
|
+
* <p>The resource could not be found. </p>
|
|
64
62
|
*
|
|
65
63
|
* @throws {@link EntityResolutionServiceException}
|
|
66
64
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -54,7 +54,20 @@ declare const UpdateIdMappingWorkflowCommand_base: {
|
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
56
|
* idMappingTechniques: { // IdMappingTechniques
|
|
57
|
-
* idMappingType: "PROVIDER", // required
|
|
57
|
+
* idMappingType: "PROVIDER" || "RULE_BASED", // required
|
|
58
|
+
* ruleBasedProperties: { // IdMappingRuleBasedProperties
|
|
59
|
+
* rules: [ // RuleList
|
|
60
|
+
* { // Rule
|
|
61
|
+
* ruleName: "STRING_VALUE", // required
|
|
62
|
+
* matchingKeys: [ // MatchingKeys // required
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* ruleDefinitionType: "SOURCE" || "TARGET", // required
|
|
68
|
+
* attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
69
|
+
* recordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET", // required
|
|
70
|
+
* },
|
|
58
71
|
* providerProperties: { // ProviderProperties
|
|
59
72
|
* providerServiceArn: "STRING_VALUE", // required
|
|
60
73
|
* providerConfiguration: "DOCUMENT_VALUE",
|
|
@@ -63,7 +76,7 @@ declare const UpdateIdMappingWorkflowCommand_base: {
|
|
|
63
76
|
* },
|
|
64
77
|
* },
|
|
65
78
|
* },
|
|
66
|
-
* roleArn: "STRING_VALUE",
|
|
79
|
+
* roleArn: "STRING_VALUE",
|
|
67
80
|
* };
|
|
68
81
|
* const command = new UpdateIdMappingWorkflowCommand(input);
|
|
69
82
|
* const response = await client.send(command);
|
|
@@ -85,7 +98,20 @@ declare const UpdateIdMappingWorkflowCommand_base: {
|
|
|
85
98
|
* // },
|
|
86
99
|
* // ],
|
|
87
100
|
* // idMappingTechniques: { // IdMappingTechniques
|
|
88
|
-
* // idMappingType: "PROVIDER", // required
|
|
101
|
+
* // idMappingType: "PROVIDER" || "RULE_BASED", // required
|
|
102
|
+
* // ruleBasedProperties: { // IdMappingRuleBasedProperties
|
|
103
|
+
* // rules: [ // RuleList
|
|
104
|
+
* // { // Rule
|
|
105
|
+
* // ruleName: "STRING_VALUE", // required
|
|
106
|
+
* // matchingKeys: [ // MatchingKeys // required
|
|
107
|
+
* // "STRING_VALUE",
|
|
108
|
+
* // ],
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // ruleDefinitionType: "SOURCE" || "TARGET", // required
|
|
112
|
+
* // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
113
|
+
* // recordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET", // required
|
|
114
|
+
* // },
|
|
89
115
|
* // providerProperties: { // ProviderProperties
|
|
90
116
|
* // providerServiceArn: "STRING_VALUE", // required
|
|
91
117
|
* // providerConfiguration: "DOCUMENT_VALUE",
|
|
@@ -94,7 +120,7 @@ declare const UpdateIdMappingWorkflowCommand_base: {
|
|
|
94
120
|
* // },
|
|
95
121
|
* // },
|
|
96
122
|
* // },
|
|
97
|
-
* // roleArn: "STRING_VALUE",
|
|
123
|
+
* // roleArn: "STRING_VALUE",
|
|
98
124
|
* // };
|
|
99
125
|
*
|
|
100
126
|
* ```
|
|
@@ -106,28 +132,20 @@ declare const UpdateIdMappingWorkflowCommand_base: {
|
|
|
106
132
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
107
133
|
*
|
|
108
134
|
* @throws {@link AccessDeniedException} (client fault)
|
|
109
|
-
* <p>You do not have sufficient access to perform this action.
|
|
110
|
-
* 403</code>
|
|
111
|
-
* </p>
|
|
135
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
112
136
|
*
|
|
113
137
|
* @throws {@link InternalServerException} (server fault)
|
|
114
138
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
115
|
-
* service.
|
|
116
|
-
* </p>
|
|
139
|
+
* service. </p>
|
|
117
140
|
*
|
|
118
141
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
119
|
-
* <p>The resource could not be found.
|
|
120
|
-
* </p>
|
|
142
|
+
* <p>The resource could not be found. </p>
|
|
121
143
|
*
|
|
122
144
|
* @throws {@link ThrottlingException} (client fault)
|
|
123
|
-
* <p>The request was denied due to request throttling.
|
|
124
|
-
* 429</code>
|
|
125
|
-
* </p>
|
|
145
|
+
* <p>The request was denied due to request throttling. </p>
|
|
126
146
|
*
|
|
127
147
|
* @throws {@link ValidationException} (client fault)
|
|
128
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
129
|
-
* Status Code: 400</code>
|
|
130
|
-
* </p>
|
|
148
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
131
149
|
*
|
|
132
150
|
* @throws {@link EntityResolutionServiceException}
|
|
133
151
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -45,7 +45,24 @@ declare const UpdateIdNamespaceCommand_base: {
|
|
|
45
45
|
* ],
|
|
46
46
|
* idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowPropertiesList
|
|
47
47
|
* { // IdNamespaceIdMappingWorkflowProperties
|
|
48
|
-
* idMappingType: "PROVIDER", // required
|
|
48
|
+
* idMappingType: "PROVIDER" || "RULE_BASED", // required
|
|
49
|
+
* ruleBasedProperties: { // NamespaceRuleBasedProperties
|
|
50
|
+
* rules: [ // RuleList
|
|
51
|
+
* { // Rule
|
|
52
|
+
* ruleName: "STRING_VALUE", // required
|
|
53
|
+
* matchingKeys: [ // MatchingKeys // required
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* ruleDefinitionTypes: [ // IdMappingWorkflowRuleDefinitionTypeList
|
|
59
|
+
* "SOURCE" || "TARGET",
|
|
60
|
+
* ],
|
|
61
|
+
* attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY",
|
|
62
|
+
* recordMatchingModels: [ // RecordMatchingModelList
|
|
63
|
+
* "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
49
66
|
* providerProperties: { // NamespaceProviderProperties
|
|
50
67
|
* providerServiceArn: "STRING_VALUE", // required
|
|
51
68
|
* providerConfiguration: "DOCUMENT_VALUE",
|
|
@@ -68,7 +85,24 @@ declare const UpdateIdNamespaceCommand_base: {
|
|
|
68
85
|
* // ],
|
|
69
86
|
* // idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowPropertiesList
|
|
70
87
|
* // { // IdNamespaceIdMappingWorkflowProperties
|
|
71
|
-
* // idMappingType: "PROVIDER", // required
|
|
88
|
+
* // idMappingType: "PROVIDER" || "RULE_BASED", // required
|
|
89
|
+
* // ruleBasedProperties: { // NamespaceRuleBasedProperties
|
|
90
|
+
* // rules: [ // RuleList
|
|
91
|
+
* // { // Rule
|
|
92
|
+
* // ruleName: "STRING_VALUE", // required
|
|
93
|
+
* // matchingKeys: [ // MatchingKeys // required
|
|
94
|
+
* // "STRING_VALUE",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // ruleDefinitionTypes: [ // IdMappingWorkflowRuleDefinitionTypeList
|
|
99
|
+
* // "SOURCE" || "TARGET",
|
|
100
|
+
* // ],
|
|
101
|
+
* // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY",
|
|
102
|
+
* // recordMatchingModels: [ // RecordMatchingModelList
|
|
103
|
+
* // "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET",
|
|
104
|
+
* // ],
|
|
105
|
+
* // },
|
|
72
106
|
* // providerProperties: { // NamespaceProviderProperties
|
|
73
107
|
* // providerServiceArn: "STRING_VALUE", // required
|
|
74
108
|
* // providerConfiguration: "DOCUMENT_VALUE",
|
|
@@ -90,28 +124,20 @@ declare const UpdateIdNamespaceCommand_base: {
|
|
|
90
124
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
91
125
|
*
|
|
92
126
|
* @throws {@link AccessDeniedException} (client fault)
|
|
93
|
-
* <p>You do not have sufficient access to perform this action.
|
|
94
|
-
* 403</code>
|
|
95
|
-
* </p>
|
|
127
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
96
128
|
*
|
|
97
129
|
* @throws {@link InternalServerException} (server fault)
|
|
98
130
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
99
|
-
* service.
|
|
100
|
-
* </p>
|
|
131
|
+
* service. </p>
|
|
101
132
|
*
|
|
102
133
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
|
-
* <p>The resource could not be found.
|
|
104
|
-
* </p>
|
|
134
|
+
* <p>The resource could not be found. </p>
|
|
105
135
|
*
|
|
106
136
|
* @throws {@link ThrottlingException} (client fault)
|
|
107
|
-
* <p>The request was denied due to request throttling.
|
|
108
|
-
* 429</code>
|
|
109
|
-
* </p>
|
|
137
|
+
* <p>The request was denied due to request throttling. </p>
|
|
110
138
|
*
|
|
111
139
|
* @throws {@link ValidationException} (client fault)
|
|
112
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
113
|
-
* Status Code: 400</code>
|
|
114
|
-
* </p>
|
|
140
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
115
141
|
*
|
|
116
142
|
* @throws {@link EntityResolutionServiceException}
|
|
117
143
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|
|
@@ -72,6 +72,7 @@ declare const UpdateMatchingWorkflowCommand_base: {
|
|
|
72
72
|
* },
|
|
73
73
|
* ],
|
|
74
74
|
* attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
75
|
+
* matchPurpose: "IDENTIFIER_GENERATION" || "INDEXING",
|
|
75
76
|
* },
|
|
76
77
|
* providerProperties: { // ProviderProperties
|
|
77
78
|
* providerServiceArn: "STRING_VALUE", // required
|
|
@@ -123,6 +124,7 @@ declare const UpdateMatchingWorkflowCommand_base: {
|
|
|
123
124
|
* // },
|
|
124
125
|
* // ],
|
|
125
126
|
* // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required
|
|
127
|
+
* // matchPurpose: "IDENTIFIER_GENERATION" || "INDEXING",
|
|
126
128
|
* // },
|
|
127
129
|
* // providerProperties: { // ProviderProperties
|
|
128
130
|
* // providerServiceArn: "STRING_VALUE", // required
|
|
@@ -147,28 +149,20 @@ declare const UpdateMatchingWorkflowCommand_base: {
|
|
|
147
149
|
* @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
|
|
148
150
|
*
|
|
149
151
|
* @throws {@link AccessDeniedException} (client fault)
|
|
150
|
-
* <p>You do not have sufficient access to perform this action.
|
|
151
|
-
* 403</code>
|
|
152
|
-
* </p>
|
|
152
|
+
* <p>You do not have sufficient access to perform this action. </p>
|
|
153
153
|
*
|
|
154
154
|
* @throws {@link InternalServerException} (server fault)
|
|
155
155
|
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
156
|
-
* service.
|
|
157
|
-
* </p>
|
|
156
|
+
* service. </p>
|
|
158
157
|
*
|
|
159
158
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
160
|
-
* <p>The resource could not be found.
|
|
161
|
-
* </p>
|
|
159
|
+
* <p>The resource could not be found. </p>
|
|
162
160
|
*
|
|
163
161
|
* @throws {@link ThrottlingException} (client fault)
|
|
164
|
-
* <p>The request was denied due to request throttling.
|
|
165
|
-
* 429</code>
|
|
166
|
-
* </p>
|
|
162
|
+
* <p>The request was denied due to request throttling. </p>
|
|
167
163
|
*
|
|
168
164
|
* @throws {@link ValidationException} (client fault)
|
|
169
|
-
* <p>The input fails to satisfy the constraints specified by Entity Resolution.
|
|
170
|
-
* Status Code: 400</code>
|
|
171
|
-
* </p>
|
|
165
|
+
* <p>The input fails to satisfy the constraints specified by Entity Resolution. </p>
|
|
172
166
|
*
|
|
173
167
|
* @throws {@link EntityResolutionServiceException}
|
|
174
168
|
* <p>Base exception class for all service exceptions from EntityResolution service.</p>
|