@aws-sdk/client-entityresolution 3.552.0 → 3.556.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.
Files changed (60) hide show
  1. package/README.md +79 -7
  2. package/dist-cjs/index.js +614 -56
  3. package/dist-es/EntityResolution.js +18 -0
  4. package/dist-es/commands/AddPolicyStatementCommand.js +24 -0
  5. package/dist-es/commands/CreateIdNamespaceCommand.js +24 -0
  6. package/dist-es/commands/DeleteIdNamespaceCommand.js +24 -0
  7. package/dist-es/commands/DeletePolicyStatementCommand.js +24 -0
  8. package/dist-es/commands/GetIdNamespaceCommand.js +24 -0
  9. package/dist-es/commands/GetPolicyCommand.js +24 -0
  10. package/dist-es/commands/ListIdNamespacesCommand.js +24 -0
  11. package/dist-es/commands/PutPolicyCommand.js +24 -0
  12. package/dist-es/commands/UpdateIdNamespaceCommand.js +24 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +40 -32
  15. package/dist-es/pagination/ListIdNamespacesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +363 -7
  18. package/dist-types/EntityResolution.d.ts +64 -0
  19. package/dist-types/EntityResolutionClient.d.ts +11 -2
  20. package/dist-types/commands/AddPolicyStatementCommand.d.ts +101 -0
  21. package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +6 -4
  22. package/dist-types/commands/CreateIdNamespaceCommand.d.ts +138 -0
  23. package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +6 -0
  24. package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +79 -0
  25. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +6 -0
  26. package/dist-types/commands/DeletePolicyStatementCommand.d.ts +92 -0
  27. package/dist-types/commands/GetIdMappingJobCommand.d.ts +7 -0
  28. package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +3 -2
  29. package/dist-types/commands/GetIdNamespaceCommand.d.ts +107 -0
  30. package/dist-types/commands/GetMatchIdCommand.d.ts +2 -0
  31. package/dist-types/commands/GetMatchingJobCommand.d.ts +7 -0
  32. package/dist-types/commands/GetPolicyCommand.d.ts +85 -0
  33. package/dist-types/commands/GetProviderServiceCommand.d.ts +21 -0
  34. package/dist-types/commands/ListIdNamespacesCommand.d.ts +90 -0
  35. package/dist-types/commands/PutPolicyCommand.d.ts +93 -0
  36. package/dist-types/commands/StartIdMappingJobCommand.d.ts +14 -0
  37. package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +6 -4
  38. package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +121 -0
  39. package/dist-types/commands/index.d.ts +9 -0
  40. package/dist-types/models/models_0.d.ts +876 -83
  41. package/dist-types/pagination/ListIdNamespacesPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  44. package/dist-types/ts3.4/EntityResolution.d.ts +154 -0
  45. package/dist-types/ts3.4/EntityResolutionClient.d.ts +54 -0
  46. package/dist-types/ts3.4/commands/AddPolicyStatementCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/CreateIdNamespaceCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/DeleteIdNamespaceCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/DeletePolicyStatementCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/GetIdNamespaceCommand.d.ts +35 -0
  51. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  52. package/dist-types/ts3.4/commands/ListIdNamespacesCommand.d.ts +38 -0
  53. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/UpdateIdNamespaceCommand.d.ts +38 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +216 -41
  57. package/dist-types/ts3.4/pagination/ListIdNamespacesPaginator.d.ts +11 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  60. package/package.json +4 -4
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
4
+ import { DeletePolicyStatementInput, DeletePolicyStatementOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link DeletePolicyStatementCommand}.
13
+ */
14
+ export interface DeletePolicyStatementCommandInput extends DeletePolicyStatementInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link DeletePolicyStatementCommand}.
20
+ */
21
+ export interface DeletePolicyStatementCommandOutput extends DeletePolicyStatementOutput, __MetadataBearer {
22
+ }
23
+ declare const DeletePolicyStatementCommand_base: {
24
+ new (input: DeletePolicyStatementCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeletePolicyStatementCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePolicyStatementCommandInput, DeletePolicyStatementCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Deletes the policy statement.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, DeletePolicyStatementCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, DeletePolicyStatementCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // DeletePolicyStatementInput
37
+ * arn: "STRING_VALUE", // required
38
+ * statementId: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DeletePolicyStatementCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DeletePolicyStatementOutput
43
+ * // arn: "STRING_VALUE", // required
44
+ * // token: "STRING_VALUE", // required
45
+ * // policy: "STRING_VALUE",
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param DeletePolicyStatementCommandInput - {@link DeletePolicyStatementCommandInput}
51
+ * @returns {@link DeletePolicyStatementCommandOutput}
52
+ * @see {@link DeletePolicyStatementCommandInput} for command's `input` shape.
53
+ * @see {@link DeletePolicyStatementCommandOutput} for command's `response` shape.
54
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
55
+ *
56
+ * @throws {@link AccessDeniedException} (client fault)
57
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
58
+ * 403</code>
59
+ * </p>
60
+ *
61
+ * @throws {@link ConflictException} (client fault)
62
+ * <p>The request could not be processed because of conflict in the current state of the
63
+ * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
64
+ * running, etc. <code>HTTP Status Code: 400</code>
65
+ * </p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
69
+ * service. <code>HTTP Status Code: 500</code>
70
+ * </p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
74
+ * </p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
78
+ * 429</code>
79
+ * </p>
80
+ *
81
+ * @throws {@link ValidationException} (client fault)
82
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
83
+ * Status Code: 400</code>
84
+ * </p>
85
+ *
86
+ * @throws {@link EntityResolutionServiceException}
87
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
88
+ *
89
+ * @public
90
+ */
91
+ export declare class DeletePolicyStatementCommand extends DeletePolicyStatementCommand_base {
92
+ }
@@ -53,6 +53,13 @@ declare const GetIdMappingJobCommand_base: {
53
53
  * // errorDetails: { // ErrorDetails
54
54
  * // errorMessage: "STRING_VALUE",
55
55
  * // },
56
+ * // outputSourceConfig: [ // IdMappingJobOutputSourceConfig
57
+ * // { // IdMappingJobOutputSource
58
+ * // roleArn: "STRING_VALUE", // required
59
+ * // outputS3Path: "STRING_VALUE", // required
60
+ * // KMSArn: "STRING_VALUE",
61
+ * // },
62
+ * // ],
56
63
  * // };
57
64
  *
58
65
  * ```
@@ -45,10 +45,11 @@ declare const GetIdMappingWorkflowCommand_base: {
45
45
  * // inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
46
46
  * // { // IdMappingWorkflowInputSource
47
47
  * // inputSourceARN: "STRING_VALUE", // required
48
- * // schemaName: "STRING_VALUE", // required
48
+ * // schemaName: "STRING_VALUE",
49
+ * // type: "SOURCE" || "TARGET",
49
50
  * // },
50
51
  * // ],
51
- * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig // required
52
+ * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
52
53
  * // { // IdMappingWorkflowOutputSource
53
54
  * // outputS3Path: "STRING_VALUE", // required
54
55
  * // KMSArn: "STRING_VALUE",
@@ -0,0 +1,107 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
4
+ import { GetIdNamespaceInput, GetIdNamespaceOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link GetIdNamespaceCommand}.
13
+ */
14
+ export interface GetIdNamespaceCommandInput extends GetIdNamespaceInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link GetIdNamespaceCommand}.
20
+ */
21
+ export interface GetIdNamespaceCommandOutput extends GetIdNamespaceOutput, __MetadataBearer {
22
+ }
23
+ declare const GetIdNamespaceCommand_base: {
24
+ new (input: GetIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetIdNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetIdNamespaceCommandInput, GetIdNamespaceCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Returns the <code>IdNamespace</code> with a given name, if it exists.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, GetIdNamespaceCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, GetIdNamespaceCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // GetIdNamespaceInput
37
+ * idNamespaceName: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new GetIdNamespaceCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // GetIdNamespaceOutput
42
+ * // idNamespaceName: "STRING_VALUE", // required
43
+ * // idNamespaceArn: "STRING_VALUE", // required
44
+ * // description: "STRING_VALUE",
45
+ * // inputSourceConfig: [ // IdNamespaceInputSourceConfig
46
+ * // { // IdNamespaceInputSource
47
+ * // inputSourceARN: "STRING_VALUE", // required
48
+ * // schemaName: "STRING_VALUE",
49
+ * // },
50
+ * // ],
51
+ * // idMappingWorkflowProperties: [ // IdNamespaceIdMappingWorkflowPropertiesList
52
+ * // { // IdNamespaceIdMappingWorkflowProperties
53
+ * // idMappingType: "PROVIDER", // required
54
+ * // providerProperties: { // NamespaceProviderProperties
55
+ * // providerServiceArn: "STRING_VALUE", // required
56
+ * // providerConfiguration: "DOCUMENT_VALUE",
57
+ * // },
58
+ * // },
59
+ * // ],
60
+ * // type: "SOURCE" || "TARGET", // required
61
+ * // roleArn: "STRING_VALUE",
62
+ * // createdAt: new Date("TIMESTAMP"), // required
63
+ * // updatedAt: new Date("TIMESTAMP"), // required
64
+ * // tags: { // TagMap
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // };
68
+ *
69
+ * ```
70
+ *
71
+ * @param GetIdNamespaceCommandInput - {@link GetIdNamespaceCommandInput}
72
+ * @returns {@link GetIdNamespaceCommandOutput}
73
+ * @see {@link GetIdNamespaceCommandInput} for command's `input` shape.
74
+ * @see {@link GetIdNamespaceCommandOutput} for command's `response` shape.
75
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
76
+ *
77
+ * @throws {@link AccessDeniedException} (client fault)
78
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
79
+ * 403</code>
80
+ * </p>
81
+ *
82
+ * @throws {@link InternalServerException} (server fault)
83
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
84
+ * service. <code>HTTP Status Code: 500</code>
85
+ * </p>
86
+ *
87
+ * @throws {@link ResourceNotFoundException} (client fault)
88
+ * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
89
+ * </p>
90
+ *
91
+ * @throws {@link ThrottlingException} (client fault)
92
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
93
+ * 429</code>
94
+ * </p>
95
+ *
96
+ * @throws {@link ValidationException} (client fault)
97
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
98
+ * Status Code: 400</code>
99
+ * </p>
100
+ *
101
+ * @throws {@link EntityResolutionServiceException}
102
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
103
+ *
104
+ * @public
105
+ */
106
+ export declare class GetIdNamespaceCommand extends GetIdNamespaceCommand_base {
107
+ }
@@ -39,11 +39,13 @@ declare const GetMatchIdCommand_base: {
39
39
  * record: { // RecordAttributeMap // required
40
40
  * "<keys>": "STRING_VALUE",
41
41
  * },
42
+ * applyNormalization: true || false,
42
43
  * };
43
44
  * const command = new GetMatchIdCommand(input);
44
45
  * const response = await client.send(command);
45
46
  * // { // GetMatchIdOutput
46
47
  * // matchId: "STRING_VALUE",
48
+ * // matchRule: "STRING_VALUE",
47
49
  * // };
48
50
  *
49
51
  * ```
@@ -54,6 +54,13 @@ declare const GetMatchingJobCommand_base: {
54
54
  * // errorDetails: { // ErrorDetails
55
55
  * // errorMessage: "STRING_VALUE",
56
56
  * // },
57
+ * // outputSourceConfig: [ // JobOutputSourceConfig
58
+ * // { // JobOutputSource
59
+ * // roleArn: "STRING_VALUE", // required
60
+ * // outputS3Path: "STRING_VALUE", // required
61
+ * // KMSArn: "STRING_VALUE",
62
+ * // },
63
+ * // ],
57
64
  * // };
58
65
  *
59
66
  * ```
@@ -0,0 +1,85 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
4
+ import { GetPolicyInput, GetPolicyOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link GetPolicyCommand}.
13
+ */
14
+ export interface GetPolicyCommandInput extends GetPolicyInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link GetPolicyCommand}.
20
+ */
21
+ export interface GetPolicyCommandOutput extends GetPolicyOutput, __MetadataBearer {
22
+ }
23
+ declare const GetPolicyCommand_base: {
24
+ new (input: GetPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetPolicyCommandInput, GetPolicyCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetPolicyCommandInput, GetPolicyCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Returns the resource-based policy.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, GetPolicyCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, GetPolicyCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // GetPolicyInput
37
+ * arn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new GetPolicyCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // GetPolicyOutput
42
+ * // arn: "STRING_VALUE", // required
43
+ * // token: "STRING_VALUE", // required
44
+ * // policy: "STRING_VALUE",
45
+ * // };
46
+ *
47
+ * ```
48
+ *
49
+ * @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
50
+ * @returns {@link GetPolicyCommandOutput}
51
+ * @see {@link GetPolicyCommandInput} for command's `input` shape.
52
+ * @see {@link GetPolicyCommandOutput} for command's `response` shape.
53
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
57
+ * 403</code>
58
+ * </p>
59
+ *
60
+ * @throws {@link InternalServerException} (server fault)
61
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
62
+ * service. <code>HTTP Status Code: 500</code>
63
+ * </p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
67
+ * </p>
68
+ *
69
+ * @throws {@link ThrottlingException} (client fault)
70
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
71
+ * 429</code>
72
+ * </p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
76
+ * Status Code: 400</code>
77
+ * </p>
78
+ *
79
+ * @throws {@link EntityResolutionServiceException}
80
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
81
+ *
82
+ * @public
83
+ */
84
+ export declare class GetPolicyCommand extends GetPolicyCommand_base {
85
+ }
@@ -46,6 +46,12 @@ declare const GetProviderServiceCommand_base: {
46
46
  * // providerServiceType: "ASSIGNMENT" || "ID_MAPPING", // required
47
47
  * // providerServiceArn: "STRING_VALUE", // required
48
48
  * // providerConfigurationDefinition: "DOCUMENT_VALUE",
49
+ * // providerIdNameSpaceConfiguration: { // ProviderIdNameSpaceConfiguration
50
+ * // description: "STRING_VALUE",
51
+ * // providerTargetConfigurationDefinition: "DOCUMENT_VALUE",
52
+ * // providerSourceConfigurationDefinition: "DOCUMENT_VALUE",
53
+ * // },
54
+ * // providerJobConfiguration: "DOCUMENT_VALUE",
49
55
  * // providerEndpointConfiguration: { // ProviderEndpointConfiguration Union: only one key present
50
56
  * // marketplaceConfiguration: { // ProviderMarketplaceConfiguration
51
57
  * // dataSetId: "STRING_VALUE", // required
@@ -64,6 +70,21 @@ declare const GetProviderServiceCommand_base: {
64
70
  * // "STRING_VALUE",
65
71
  * // ],
66
72
  * // },
73
+ * // providerComponentSchema: { // ProviderComponentSchema
74
+ * // schemas: [ // Schemas
75
+ * // [ // SchemaList
76
+ * // "STRING_VALUE",
77
+ * // ],
78
+ * // ],
79
+ * // providerSchemaAttributes: [ // ProviderSchemaAttributes
80
+ * // { // ProviderSchemaAttribute
81
+ * // fieldName: "STRING_VALUE", // required
82
+ * // 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" || "PROVIDER_ID", // required
83
+ * // subType: "STRING_VALUE",
84
+ * // hashing: true || false,
85
+ * // },
86
+ * // ],
87
+ * // },
67
88
  * // };
68
89
  *
69
90
  * ```
@@ -0,0 +1,90 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
4
+ import { ListIdNamespacesInput, ListIdNamespacesOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link ListIdNamespacesCommand}.
13
+ */
14
+ export interface ListIdNamespacesCommandInput extends ListIdNamespacesInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link ListIdNamespacesCommand}.
20
+ */
21
+ export interface ListIdNamespacesCommandOutput extends ListIdNamespacesOutput, __MetadataBearer {
22
+ }
23
+ declare const ListIdNamespacesCommand_base: {
24
+ new (input: ListIdNamespacesCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListIdNamespacesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListIdNamespacesCommandInput, ListIdNamespacesCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Returns a list of all ID namespaces.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, ListIdNamespacesCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, ListIdNamespacesCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // ListIdNamespacesInput
37
+ * nextToken: "STRING_VALUE",
38
+ * maxResults: Number("int"),
39
+ * };
40
+ * const command = new ListIdNamespacesCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // ListIdNamespacesOutput
43
+ * // idNamespaceSummaries: [ // IdNamespaceList
44
+ * // { // IdNamespaceSummary
45
+ * // idNamespaceName: "STRING_VALUE", // required
46
+ * // idNamespaceArn: "STRING_VALUE", // required
47
+ * // description: "STRING_VALUE",
48
+ * // type: "SOURCE" || "TARGET", // required
49
+ * // createdAt: new Date("TIMESTAMP"), // required
50
+ * // updatedAt: new Date("TIMESTAMP"), // required
51
+ * // },
52
+ * // ],
53
+ * // nextToken: "STRING_VALUE",
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param ListIdNamespacesCommandInput - {@link ListIdNamespacesCommandInput}
59
+ * @returns {@link ListIdNamespacesCommandOutput}
60
+ * @see {@link ListIdNamespacesCommandInput} for command's `input` shape.
61
+ * @see {@link ListIdNamespacesCommandOutput} for command's `response` shape.
62
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
66
+ * 403</code>
67
+ * </p>
68
+ *
69
+ * @throws {@link InternalServerException} (server fault)
70
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
71
+ * service. <code>HTTP Status Code: 500</code>
72
+ * </p>
73
+ *
74
+ * @throws {@link ThrottlingException} (client fault)
75
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
76
+ * 429</code>
77
+ * </p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
81
+ * Status Code: 400</code>
82
+ * </p>
83
+ *
84
+ * @throws {@link EntityResolutionServiceException}
85
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
86
+ *
87
+ * @public
88
+ */
89
+ export declare class ListIdNamespacesCommand extends ListIdNamespacesCommand_base {
90
+ }
@@ -0,0 +1,93 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient";
4
+ import { PutPolicyInput, PutPolicyOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link PutPolicyCommand}.
13
+ */
14
+ export interface PutPolicyCommandInput extends PutPolicyInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link PutPolicyCommand}.
20
+ */
21
+ export interface PutPolicyCommandOutput extends PutPolicyOutput, __MetadataBearer {
22
+ }
23
+ declare const PutPolicyCommand_base: {
24
+ new (input: PutPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutPolicyCommandInput, PutPolicyCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutPolicyCommandInput, PutPolicyCommandOutput, EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Updates the resource-based policy.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EntityResolutionClient, PutPolicyCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import
34
+ * // const { EntityResolutionClient, PutPolicyCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import
35
+ * const client = new EntityResolutionClient(config);
36
+ * const input = { // PutPolicyInput
37
+ * arn: "STRING_VALUE", // required
38
+ * token: "STRING_VALUE",
39
+ * policy: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new PutPolicyCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // PutPolicyOutput
44
+ * // arn: "STRING_VALUE", // required
45
+ * // token: "STRING_VALUE", // required
46
+ * // policy: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param PutPolicyCommandInput - {@link PutPolicyCommandInput}
52
+ * @returns {@link PutPolicyCommandOutput}
53
+ * @see {@link PutPolicyCommandInput} for command's `input` shape.
54
+ * @see {@link PutPolicyCommandOutput} for command's `response` shape.
55
+ * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape.
56
+ *
57
+ * @throws {@link AccessDeniedException} (client fault)
58
+ * <p>You do not have sufficient access to perform this action. <code>HTTP Status Code:
59
+ * 403</code>
60
+ * </p>
61
+ *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>The request could not be processed because of conflict in the current state of the
64
+ * resource. Example: Workflow already exists, Schema already exists, Workflow is currently
65
+ * running, etc. <code>HTTP Status Code: 400</code>
66
+ * </p>
67
+ *
68
+ * @throws {@link InternalServerException} (server fault)
69
+ * <p>This exception occurs when there is an internal failure in the Entity Resolution
70
+ * service. <code>HTTP Status Code: 500</code>
71
+ * </p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>The resource could not be found. <code>HTTP Status Code: 404</code>
75
+ * </p>
76
+ *
77
+ * @throws {@link ThrottlingException} (client fault)
78
+ * <p>The request was denied due to request throttling. <code>HTTP Status Code:
79
+ * 429</code>
80
+ * </p>
81
+ *
82
+ * @throws {@link ValidationException} (client fault)
83
+ * <p>The input fails to satisfy the constraints specified by Entity Resolution. <code>HTTP
84
+ * Status Code: 400</code>
85
+ * </p>
86
+ *
87
+ * @throws {@link EntityResolutionServiceException}
88
+ * <p>Base exception class for all service exceptions from EntityResolution service.</p>
89
+ *
90
+ * @public
91
+ */
92
+ export declare class PutPolicyCommand extends PutPolicyCommand_base {
93
+ }
@@ -36,11 +36,25 @@ declare const StartIdMappingJobCommand_base: {
36
36
  * const client = new EntityResolutionClient(config);
37
37
  * const input = { // StartIdMappingJobInput
38
38
  * workflowName: "STRING_VALUE", // required
39
+ * outputSourceConfig: [ // IdMappingJobOutputSourceConfig
40
+ * { // IdMappingJobOutputSource
41
+ * roleArn: "STRING_VALUE", // required
42
+ * outputS3Path: "STRING_VALUE", // required
43
+ * KMSArn: "STRING_VALUE",
44
+ * },
45
+ * ],
39
46
  * };
40
47
  * const command = new StartIdMappingJobCommand(input);
41
48
  * const response = await client.send(command);
42
49
  * // { // StartIdMappingJobOutput
43
50
  * // jobId: "STRING_VALUE", // required
51
+ * // outputSourceConfig: [ // IdMappingJobOutputSourceConfig
52
+ * // { // IdMappingJobOutputSource
53
+ * // roleArn: "STRING_VALUE", // required
54
+ * // outputS3Path: "STRING_VALUE", // required
55
+ * // KMSArn: "STRING_VALUE",
56
+ * // },
57
+ * // ],
44
58
  * // };
45
59
  *
46
60
  * ```
@@ -42,10 +42,11 @@ declare const UpdateIdMappingWorkflowCommand_base: {
42
42
  * inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
43
43
  * { // IdMappingWorkflowInputSource
44
44
  * inputSourceARN: "STRING_VALUE", // required
45
- * schemaName: "STRING_VALUE", // required
45
+ * schemaName: "STRING_VALUE",
46
+ * type: "SOURCE" || "TARGET",
46
47
  * },
47
48
  * ],
48
- * outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig // required
49
+ * outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
49
50
  * { // IdMappingWorkflowOutputSource
50
51
  * outputS3Path: "STRING_VALUE", // required
51
52
  * KMSArn: "STRING_VALUE",
@@ -72,10 +73,11 @@ declare const UpdateIdMappingWorkflowCommand_base: {
72
73
  * // inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required
73
74
  * // { // IdMappingWorkflowInputSource
74
75
  * // inputSourceARN: "STRING_VALUE", // required
75
- * // schemaName: "STRING_VALUE", // required
76
+ * // schemaName: "STRING_VALUE",
77
+ * // type: "SOURCE" || "TARGET",
76
78
  * // },
77
79
  * // ],
78
- * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig // required
80
+ * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig
79
81
  * // { // IdMappingWorkflowOutputSource
80
82
  * // outputS3Path: "STRING_VALUE", // required
81
83
  * // KMSArn: "STRING_VALUE",