@aws-sdk/client-cleanroomsml 3.840.0 → 3.841.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 +9 -6
- package/dist-cjs/index.js +239 -18
- package/dist-es/CleanRoomsML.js +2 -0
- package/dist-es/commands/ListTrainedModelVersionsCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +40 -0
- package/dist-es/pagination/ListTrainedModelVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +134 -7
- package/dist-types/CleanRoomsML.d.ts +8 -6
- package/dist-types/CleanRoomsMLClient.d.ts +4 -8
- package/dist-types/commands/CancelTrainedModelCommand.d.ts +4 -0
- package/dist-types/commands/CancelTrainedModelInferenceJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/CreateMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/CreateTrainedModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMLInputChannelDataCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTrainedModelOutputCommand.d.ts +5 -1
- package/dist-types/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/GetCollaborationMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/GetCollaborationTrainedModelCommand.d.ts +13 -0
- package/dist-types/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/GetMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/GetTrainedModelCommand.d.ts +14 -0
- package/dist-types/commands/GetTrainedModelInferenceJobCommand.d.ts +4 -0
- package/dist-types/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +3 -0
- package/dist-types/commands/ListCollaborationMLInputChannelsCommand.d.ts +3 -0
- package/dist-types/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListCollaborationTrainedModelsCommand.d.ts +11 -0
- package/dist-types/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +3 -0
- package/dist-types/commands/ListMLInputChannelsCommand.d.ts +3 -0
- package/dist-types/commands/ListTrainedModelInferenceJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListTrainedModelVersionsCommand.d.ts +109 -0
- package/dist-types/commands/ListTrainedModelsCommand.d.ts +11 -0
- package/dist-types/commands/PutMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/StartAudienceGenerationJobCommand.d.ts +3 -0
- package/dist-types/commands/StartTrainedModelExportJobCommand.d.ts +4 -0
- package/dist-types/commands/StartTrainedModelInferenceJobCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -6
- package/dist-types/models/models_0.d.ts +341 -411
- package/dist-types/pagination/ListTrainedModelVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/CleanRoomsML.d.ts +17 -0
- package/dist-types/ts3.4/CleanRoomsMLClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListTrainedModelVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +97 -0
- package/dist-types/ts3.4/pagination/ListTrainedModelVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +1 -1
|
@@ -48,6 +48,14 @@ declare const ListTrainedModelsCommand_base: {
|
|
|
48
48
|
* // createTime: new Date("TIMESTAMP"), // required
|
|
49
49
|
* // updateTime: new Date("TIMESTAMP"), // required
|
|
50
50
|
* // trainedModelArn: "STRING_VALUE", // required
|
|
51
|
+
* // versionIdentifier: "STRING_VALUE",
|
|
52
|
+
* // incrementalTrainingDataChannels: [ // IncrementalTrainingDataChannelsOutput
|
|
53
|
+
* // { // IncrementalTrainingDataChannelOutput
|
|
54
|
+
* // channelName: "STRING_VALUE", // required
|
|
55
|
+
* // versionIdentifier: "STRING_VALUE",
|
|
56
|
+
* // modelName: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
51
59
|
* // name: "STRING_VALUE", // required
|
|
52
60
|
* // description: "STRING_VALUE",
|
|
53
61
|
* // membershipIdentifier: "STRING_VALUE", // required
|
|
@@ -69,6 +77,9 @@ declare const ListTrainedModelsCommand_base: {
|
|
|
69
77
|
* @throws {@link AccessDeniedException} (client fault)
|
|
70
78
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
71
79
|
*
|
|
80
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
81
|
+
* <p>The request was denied due to request throttling.</p>
|
|
82
|
+
*
|
|
72
83
|
* @throws {@link ValidationException} (client fault)
|
|
73
84
|
* <p>The request parameters for this request are incorrect.</p>
|
|
74
85
|
*
|
|
@@ -60,6 +60,9 @@ declare const PutMLConfigurationCommand_base: {
|
|
|
60
60
|
* @throws {@link AccessDeniedException} (client fault)
|
|
61
61
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
62
62
|
*
|
|
63
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
64
|
+
* <p>The request was denied due to request throttling.</p>
|
|
65
|
+
*
|
|
63
66
|
* @throws {@link ValidationException} (client fault)
|
|
64
67
|
* <p>The request parameters for this request are incorrect.</p>
|
|
65
68
|
*
|
|
@@ -89,6 +89,9 @@ declare const StartAudienceGenerationJobCommand_base: {
|
|
|
89
89
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
90
90
|
* <p>You have exceeded your service quota.</p>
|
|
91
91
|
*
|
|
92
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
93
|
+
* <p>The request was denied due to request throttling.</p>
|
|
94
|
+
*
|
|
92
95
|
* @throws {@link ValidationException} (client fault)
|
|
93
96
|
* <p>The request parameters for this request are incorrect.</p>
|
|
94
97
|
*
|
|
@@ -37,6 +37,7 @@ declare const StartTrainedModelExportJobCommand_base: {
|
|
|
37
37
|
* const input = { // StartTrainedModelExportJobRequest
|
|
38
38
|
* name: "STRING_VALUE", // required
|
|
39
39
|
* trainedModelArn: "STRING_VALUE", // required
|
|
40
|
+
* trainedModelVersionIdentifier: "STRING_VALUE",
|
|
40
41
|
* membershipIdentifier: "STRING_VALUE", // required
|
|
41
42
|
* outputConfiguration: { // TrainedModelExportOutputConfiguration
|
|
42
43
|
* members: [ // TrainedModelExportReceiverMembers // required
|
|
@@ -68,6 +69,9 @@ declare const StartTrainedModelExportJobCommand_base: {
|
|
|
68
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
70
|
* <p>The resource you are requesting does not exist.</p>
|
|
70
71
|
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
71
75
|
* @throws {@link ValidationException} (client fault)
|
|
72
76
|
* <p>The request parameters for this request are incorrect.</p>
|
|
73
77
|
*
|
|
@@ -38,6 +38,7 @@ declare const StartTrainedModelInferenceJobCommand_base: {
|
|
|
38
38
|
* membershipIdentifier: "STRING_VALUE", // required
|
|
39
39
|
* name: "STRING_VALUE", // required
|
|
40
40
|
* trainedModelArn: "STRING_VALUE", // required
|
|
41
|
+
* trainedModelVersionIdentifier: "STRING_VALUE",
|
|
41
42
|
* configuredModelAlgorithmAssociationArn: "STRING_VALUE",
|
|
42
43
|
* resourceConfig: { // InferenceResourceConfig
|
|
43
44
|
* instanceType: "ml.r7i.48xlarge" || "ml.r6i.16xlarge" || "ml.m6i.xlarge" || "ml.m5.4xlarge" || "ml.p2.xlarge" || "ml.m4.16xlarge" || "ml.r7i.16xlarge" || "ml.m7i.xlarge" || "ml.m6i.12xlarge" || "ml.r7i.8xlarge" || "ml.r7i.large" || "ml.m7i.12xlarge" || "ml.m6i.24xlarge" || "ml.m7i.24xlarge" || "ml.r6i.8xlarge" || "ml.r6i.large" || "ml.g5.2xlarge" || "ml.m5.large" || "ml.p3.16xlarge" || "ml.m7i.48xlarge" || "ml.m6i.16xlarge" || "ml.p2.16xlarge" || "ml.g5.4xlarge" || "ml.m7i.16xlarge" || "ml.c4.2xlarge" || "ml.c5.2xlarge" || "ml.c6i.32xlarge" || "ml.c4.4xlarge" || "ml.g5.8xlarge" || "ml.c6i.xlarge" || "ml.c5.4xlarge" || "ml.g4dn.xlarge" || "ml.c7i.xlarge" || "ml.c6i.12xlarge" || "ml.g4dn.12xlarge" || "ml.c7i.12xlarge" || "ml.c6i.24xlarge" || "ml.g4dn.2xlarge" || "ml.c7i.24xlarge" || "ml.c7i.2xlarge" || "ml.c4.8xlarge" || "ml.c6i.2xlarge" || "ml.g4dn.4xlarge" || "ml.c7i.48xlarge" || "ml.c7i.4xlarge" || "ml.c6i.16xlarge" || "ml.c5.9xlarge" || "ml.g4dn.16xlarge" || "ml.c7i.16xlarge" || "ml.c6i.4xlarge" || "ml.c5.xlarge" || "ml.c4.xlarge" || "ml.g4dn.8xlarge" || "ml.c7i.8xlarge" || "ml.c7i.large" || "ml.g5.xlarge" || "ml.c6i.8xlarge" || "ml.c6i.large" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.m7i.2xlarge" || "ml.c5.18xlarge" || "ml.g5.48xlarge" || "ml.m6i.2xlarge" || "ml.g5.16xlarge" || "ml.m7i.4xlarge" || "ml.p3.2xlarge" || "ml.r6i.32xlarge" || "ml.m6i.4xlarge" || "ml.m5.xlarge" || "ml.m4.10xlarge" || "ml.r6i.xlarge" || "ml.m5.12xlarge" || "ml.m4.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.xlarge" || "ml.r6i.12xlarge" || "ml.m5.24xlarge" || "ml.r7i.12xlarge" || "ml.m7i.8xlarge" || "ml.m7i.large" || "ml.r6i.24xlarge" || "ml.r6i.2xlarge" || "ml.m4.2xlarge" || "ml.r7i.24xlarge" || "ml.r7i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.large" || "ml.m5.2xlarge" || "ml.p2.8xlarge" || "ml.r6i.4xlarge" || "ml.m6i.32xlarge" || "ml.p3.8xlarge" || "ml.m4.4xlarge", // required
|
|
@@ -92,6 +93,9 @@ declare const StartTrainedModelInferenceJobCommand_base: {
|
|
|
92
93
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
93
94
|
* <p>You have exceeded your service quota.</p>
|
|
94
95
|
*
|
|
96
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
97
|
+
* <p>The request was denied due to request throttling.</p>
|
|
98
|
+
*
|
|
95
99
|
* @throws {@link ValidationException} (client fault)
|
|
96
100
|
* <p>The request parameters for this request are incorrect.</p>
|
|
97
101
|
*
|
|
@@ -45,6 +45,7 @@ export * from "./ListConfiguredModelAlgorithmsCommand";
|
|
|
45
45
|
export * from "./ListMLInputChannelsCommand";
|
|
46
46
|
export * from "./ListTagsForResourceCommand";
|
|
47
47
|
export * from "./ListTrainedModelInferenceJobsCommand";
|
|
48
|
+
export * from "./ListTrainedModelVersionsCommand";
|
|
48
49
|
export * from "./ListTrainedModelsCommand";
|
|
49
50
|
export * from "./ListTrainingDatasetsCommand";
|
|
50
51
|
export * from "./PutConfiguredAudienceModelPolicyCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Welcome to the <i>Amazon Web Services Clean Rooms ML API Reference</i>.</p>
|
|
3
|
-
* <p>Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without the need to share their data with each other. The first party brings the training data to Clean Rooms so that they can create and configure an audience model (lookalike model) and associate it with a collaboration. The second party then brings their seed data to Clean Rooms and generates an audience (lookalike segment) that resembles the training data.</p>
|
|
4
|
-
* <p>To learn more about Amazon Web Services Clean Rooms ML concepts, procedures, and best practices, see the
|
|
5
|
-
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/machine-learning.html">Clean Rooms User Guide</a>.</p>
|
|
6
|
-
* <p>To learn more about SQL commands, functions, and conditions supported in Clean Rooms, see the
|
|
7
|
-
* <a href="https://docs.aws.amazon.com/clean-rooms/latest/sql-reference/sql-reference.html">Clean Rooms SQL Reference</a>.</p>
|
|
2
|
+
* <p>Welcome to the <i>Amazon Web Services Clean Rooms ML API Reference</i>.</p> <p>Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without the need to share their data with each other. The first party brings the training data to Clean Rooms so that they can create and configure an audience model (lookalike model) and associate it with a collaboration. The second party then brings their seed data to Clean Rooms and generates an audience (lookalike segment) that resembles the training data.</p> <p>To learn more about Amazon Web Services Clean Rooms ML concepts, procedures, and best practices, see the <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/machine-learning.html">Clean Rooms User Guide</a>.</p> <p>To learn more about SQL commands, functions, and conditions supported in Clean Rooms, see the <a href="https://docs.aws.amazon.com/clean-rooms/latest/sql-reference/sql-reference.html">Clean Rooms SQL Reference</a>.</p>
|
|
8
3
|
*
|
|
9
4
|
* @packageDocumentation
|
|
10
5
|
*/
|