@aws-sdk/client-cleanroomsml 3.686.0 → 3.687.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 (149) hide show
  1. package/README.md +264 -0
  2. package/dist-cjs/index.js +2347 -97
  3. package/dist-es/CleanRoomsML.js +66 -0
  4. package/dist-es/commands/CancelTrainedModelCommand.js +22 -0
  5. package/dist-es/commands/CancelTrainedModelInferenceJobCommand.js +22 -0
  6. package/dist-es/commands/CreateConfiguredModelAlgorithmAssociationCommand.js +22 -0
  7. package/dist-es/commands/CreateConfiguredModelAlgorithmCommand.js +22 -0
  8. package/dist-es/commands/CreateMLInputChannelCommand.js +23 -0
  9. package/dist-es/commands/CreateTrainedModelCommand.js +22 -0
  10. package/dist-es/commands/DeleteConfiguredModelAlgorithmAssociationCommand.js +22 -0
  11. package/dist-es/commands/DeleteConfiguredModelAlgorithmCommand.js +22 -0
  12. package/dist-es/commands/DeleteMLConfigurationCommand.js +22 -0
  13. package/dist-es/commands/DeleteMLInputChannelDataCommand.js +22 -0
  14. package/dist-es/commands/DeleteTrainedModelOutputCommand.js +22 -0
  15. package/dist-es/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.js +22 -0
  16. package/dist-es/commands/GetCollaborationMLInputChannelCommand.js +22 -0
  17. package/dist-es/commands/GetCollaborationTrainedModelCommand.js +22 -0
  18. package/dist-es/commands/GetConfiguredModelAlgorithmAssociationCommand.js +22 -0
  19. package/dist-es/commands/GetConfiguredModelAlgorithmCommand.js +22 -0
  20. package/dist-es/commands/GetMLConfigurationCommand.js +22 -0
  21. package/dist-es/commands/GetMLInputChannelCommand.js +23 -0
  22. package/dist-es/commands/GetTrainedModelCommand.js +22 -0
  23. package/dist-es/commands/GetTrainedModelInferenceJobCommand.js +22 -0
  24. package/dist-es/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  25. package/dist-es/commands/ListCollaborationMLInputChannelsCommand.js +22 -0
  26. package/dist-es/commands/ListCollaborationTrainedModelExportJobsCommand.js +22 -0
  27. package/dist-es/commands/ListCollaborationTrainedModelInferenceJobsCommand.js +22 -0
  28. package/dist-es/commands/ListCollaborationTrainedModelsCommand.js +22 -0
  29. package/dist-es/commands/ListConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  30. package/dist-es/commands/ListConfiguredModelAlgorithmsCommand.js +22 -0
  31. package/dist-es/commands/ListMLInputChannelsCommand.js +22 -0
  32. package/dist-es/commands/ListTrainedModelInferenceJobsCommand.js +22 -0
  33. package/dist-es/commands/ListTrainedModelsCommand.js +22 -0
  34. package/dist-es/commands/PutMLConfigurationCommand.js +22 -0
  35. package/dist-es/commands/StartTrainedModelExportJobCommand.js +22 -0
  36. package/dist-es/commands/StartTrainedModelInferenceJobCommand.js +22 -0
  37. package/dist-es/commands/index.js +33 -0
  38. package/dist-es/models/models_0.js +295 -0
  39. package/dist-es/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  40. package/dist-es/pagination/ListCollaborationMLInputChannelsPaginator.js +4 -0
  41. package/dist-es/pagination/ListCollaborationTrainedModelExportJobsPaginator.js +4 -0
  42. package/dist-es/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.js +4 -0
  43. package/dist-es/pagination/ListCollaborationTrainedModelsPaginator.js +4 -0
  44. package/dist-es/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  45. package/dist-es/pagination/ListConfiguredModelAlgorithmsPaginator.js +4 -0
  46. package/dist-es/pagination/ListMLInputChannelsPaginator.js +4 -0
  47. package/dist-es/pagination/ListTrainedModelInferenceJobsPaginator.js +4 -0
  48. package/dist-es/pagination/ListTrainedModelsPaginator.js +4 -0
  49. package/dist-es/pagination/index.js +10 -0
  50. package/dist-es/protocols/Aws_restJson1.js +1320 -47
  51. package/dist-types/CleanRoomsML.d.ts +232 -0
  52. package/dist-types/CleanRoomsMLClient.d.ts +35 -2
  53. package/dist-types/commands/CancelTrainedModelCommand.d.ts +82 -0
  54. package/dist-types/commands/CancelTrainedModelInferenceJobCommand.d.ts +82 -0
  55. package/dist-types/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +132 -0
  56. package/dist-types/commands/CreateConfiguredModelAlgorithmCommand.d.ts +107 -0
  57. package/dist-types/commands/CreateMLInputChannelCommand.d.ts +116 -0
  58. package/dist-types/commands/CreateTrainedModelCommand.d.ts +113 -0
  59. package/dist-types/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +82 -0
  60. package/dist-types/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +81 -0
  61. package/dist-types/commands/DeleteMLConfigurationCommand.d.ts +78 -0
  62. package/dist-types/commands/DeleteMLInputChannelDataCommand.d.ts +82 -0
  63. package/dist-types/commands/DeleteTrainedModelOutputCommand.d.ts +82 -0
  64. package/dist-types/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +129 -0
  65. package/dist-types/commands/GetCollaborationMLInputChannelCommand.d.ts +98 -0
  66. package/dist-types/commands/GetCollaborationTrainedModelCommand.d.ts +107 -0
  67. package/dist-types/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +131 -0
  68. package/dist-types/commands/GetConfiguredModelAlgorithmCommand.d.ts +107 -0
  69. package/dist-types/commands/GetMLConfigurationCommand.d.ts +90 -0
  70. package/dist-types/commands/GetMLInputChannelCommand.d.ts +124 -0
  71. package/dist-types/commands/GetTrainedModelCommand.d.ts +122 -0
  72. package/dist-types/commands/GetTrainedModelInferenceJobCommand.d.ts +123 -0
  73. package/dist-types/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +92 -0
  74. package/dist-types/commands/ListCollaborationMLInputChannelsCommand.d.ts +95 -0
  75. package/dist-types/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +104 -0
  76. package/dist-types/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +107 -0
  77. package/dist-types/commands/ListCollaborationTrainedModelsCommand.d.ts +93 -0
  78. package/dist-types/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +91 -0
  79. package/dist-types/commands/ListConfiguredModelAlgorithmsCommand.d.ts +87 -0
  80. package/dist-types/commands/ListMLInputChannelsCommand.d.ts +95 -0
  81. package/dist-types/commands/ListTrainedModelInferenceJobsCommand.d.ts +106 -0
  82. package/dist-types/commands/ListTrainedModelsCommand.d.ts +92 -0
  83. package/dist-types/commands/PutMLConfigurationCommand.d.ts +83 -0
  84. package/dist-types/commands/StartTrainedModelExportJobCommand.d.ts +91 -0
  85. package/dist-types/commands/StartTrainedModelInferenceJobCommand.d.ts +115 -0
  86. package/dist-types/commands/index.d.ts +33 -0
  87. package/dist-types/models/models_0.d.ts +3461 -205
  88. package/dist-types/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  89. package/dist-types/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +7 -0
  92. package/dist-types/pagination/ListCollaborationTrainedModelsPaginator.d.ts +7 -0
  93. package/dist-types/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  94. package/dist-types/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +7 -0
  95. package/dist-types/pagination/ListMLInputChannelsPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListTrainedModelsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +10 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +297 -0
  100. package/dist-types/ts3.4/CleanRoomsML.d.ts +610 -0
  101. package/dist-types/ts3.4/CleanRoomsMLClient.d.ts +198 -0
  102. package/dist-types/ts3.4/commands/CancelTrainedModelCommand.d.ts +46 -0
  103. package/dist-types/ts3.4/commands/CancelTrainedModelInferenceJobCommand.d.ts +47 -0
  104. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/CreateMLInputChannelCommand.d.ts +51 -0
  107. package/dist-types/ts3.4/commands/CreateTrainedModelCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +47 -0
  109. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/DeleteMLConfigurationCommand.d.ts +46 -0
  111. package/dist-types/ts3.4/commands/DeleteMLInputChannelDataCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/DeleteTrainedModelOutputCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetCollaborationMLInputChannelCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/GetCollaborationTrainedModelCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  117. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/GetMLConfigurationCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/GetMLInputChannelCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/GetTrainedModelCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetTrainedModelInferenceJobCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/ListCollaborationMLInputChannelsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListMLInputChannelsCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListTrainedModelInferenceJobsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListTrainedModelsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/PutMLConfigurationCommand.d.ts +46 -0
  133. package/dist-types/ts3.4/commands/StartTrainedModelExportJobCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/StartTrainedModelInferenceJobCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +33 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +938 -0
  137. package/dist-types/ts3.4/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  138. package/dist-types/ts3.4/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelsPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/ListMLInputChannelsPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListTrainedModelsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  148. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +396 -0
  149. package/package.json +6 -6
@@ -1,5 +1,13 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { CleanRoomsMLClient } from "./CleanRoomsMLClient";
3
+ import {
4
+ CancelTrainedModelCommandInput,
5
+ CancelTrainedModelCommandOutput,
6
+ } from "./commands/CancelTrainedModelCommand";
7
+ import {
8
+ CancelTrainedModelInferenceJobCommandInput,
9
+ CancelTrainedModelInferenceJobCommandOutput,
10
+ } from "./commands/CancelTrainedModelInferenceJobCommand";
3
11
  import {
4
12
  CreateAudienceModelCommandInput,
5
13
  CreateAudienceModelCommandOutput,
@@ -8,6 +16,22 @@ import {
8
16
  CreateConfiguredAudienceModelCommandInput,
9
17
  CreateConfiguredAudienceModelCommandOutput,
10
18
  } from "./commands/CreateConfiguredAudienceModelCommand";
19
+ import {
20
+ CreateConfiguredModelAlgorithmAssociationCommandInput,
21
+ CreateConfiguredModelAlgorithmAssociationCommandOutput,
22
+ } from "./commands/CreateConfiguredModelAlgorithmAssociationCommand";
23
+ import {
24
+ CreateConfiguredModelAlgorithmCommandInput,
25
+ CreateConfiguredModelAlgorithmCommandOutput,
26
+ } from "./commands/CreateConfiguredModelAlgorithmCommand";
27
+ import {
28
+ CreateMLInputChannelCommandInput,
29
+ CreateMLInputChannelCommandOutput,
30
+ } from "./commands/CreateMLInputChannelCommand";
31
+ import {
32
+ CreateTrainedModelCommandInput,
33
+ CreateTrainedModelCommandOutput,
34
+ } from "./commands/CreateTrainedModelCommand";
11
35
  import {
12
36
  CreateTrainingDatasetCommandInput,
13
37
  CreateTrainingDatasetCommandOutput,
@@ -28,6 +52,26 @@ import {
28
52
  DeleteConfiguredAudienceModelPolicyCommandInput,
29
53
  DeleteConfiguredAudienceModelPolicyCommandOutput,
30
54
  } from "./commands/DeleteConfiguredAudienceModelPolicyCommand";
55
+ import {
56
+ DeleteConfiguredModelAlgorithmAssociationCommandInput,
57
+ DeleteConfiguredModelAlgorithmAssociationCommandOutput,
58
+ } from "./commands/DeleteConfiguredModelAlgorithmAssociationCommand";
59
+ import {
60
+ DeleteConfiguredModelAlgorithmCommandInput,
61
+ DeleteConfiguredModelAlgorithmCommandOutput,
62
+ } from "./commands/DeleteConfiguredModelAlgorithmCommand";
63
+ import {
64
+ DeleteMLConfigurationCommandInput,
65
+ DeleteMLConfigurationCommandOutput,
66
+ } from "./commands/DeleteMLConfigurationCommand";
67
+ import {
68
+ DeleteMLInputChannelDataCommandInput,
69
+ DeleteMLInputChannelDataCommandOutput,
70
+ } from "./commands/DeleteMLInputChannelDataCommand";
71
+ import {
72
+ DeleteTrainedModelOutputCommandInput,
73
+ DeleteTrainedModelOutputCommandOutput,
74
+ } from "./commands/DeleteTrainedModelOutputCommand";
31
75
  import {
32
76
  DeleteTrainingDatasetCommandInput,
33
77
  DeleteTrainingDatasetCommandOutput,
@@ -40,6 +84,18 @@ import {
40
84
  GetAudienceModelCommandInput,
41
85
  GetAudienceModelCommandOutput,
42
86
  } from "./commands/GetAudienceModelCommand";
87
+ import {
88
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
89
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput,
90
+ } from "./commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand";
91
+ import {
92
+ GetCollaborationMLInputChannelCommandInput,
93
+ GetCollaborationMLInputChannelCommandOutput,
94
+ } from "./commands/GetCollaborationMLInputChannelCommand";
95
+ import {
96
+ GetCollaborationTrainedModelCommandInput,
97
+ GetCollaborationTrainedModelCommandOutput,
98
+ } from "./commands/GetCollaborationTrainedModelCommand";
43
99
  import {
44
100
  GetConfiguredAudienceModelCommandInput,
45
101
  GetConfiguredAudienceModelCommandOutput,
@@ -48,6 +104,30 @@ import {
48
104
  GetConfiguredAudienceModelPolicyCommandInput,
49
105
  GetConfiguredAudienceModelPolicyCommandOutput,
50
106
  } from "./commands/GetConfiguredAudienceModelPolicyCommand";
107
+ import {
108
+ GetConfiguredModelAlgorithmAssociationCommandInput,
109
+ GetConfiguredModelAlgorithmAssociationCommandOutput,
110
+ } from "./commands/GetConfiguredModelAlgorithmAssociationCommand";
111
+ import {
112
+ GetConfiguredModelAlgorithmCommandInput,
113
+ GetConfiguredModelAlgorithmCommandOutput,
114
+ } from "./commands/GetConfiguredModelAlgorithmCommand";
115
+ import {
116
+ GetMLConfigurationCommandInput,
117
+ GetMLConfigurationCommandOutput,
118
+ } from "./commands/GetMLConfigurationCommand";
119
+ import {
120
+ GetMLInputChannelCommandInput,
121
+ GetMLInputChannelCommandOutput,
122
+ } from "./commands/GetMLInputChannelCommand";
123
+ import {
124
+ GetTrainedModelCommandInput,
125
+ GetTrainedModelCommandOutput,
126
+ } from "./commands/GetTrainedModelCommand";
127
+ import {
128
+ GetTrainedModelInferenceJobCommandInput,
129
+ GetTrainedModelInferenceJobCommandOutput,
130
+ } from "./commands/GetTrainedModelInferenceJobCommand";
51
131
  import {
52
132
  GetTrainingDatasetCommandInput,
53
133
  GetTrainingDatasetCommandOutput,
@@ -64,14 +144,54 @@ import {
64
144
  ListAudienceModelsCommandInput,
65
145
  ListAudienceModelsCommandOutput,
66
146
  } from "./commands/ListAudienceModelsCommand";
147
+ import {
148
+ ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
149
+ ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput,
150
+ } from "./commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand";
151
+ import {
152
+ ListCollaborationMLInputChannelsCommandInput,
153
+ ListCollaborationMLInputChannelsCommandOutput,
154
+ } from "./commands/ListCollaborationMLInputChannelsCommand";
155
+ import {
156
+ ListCollaborationTrainedModelExportJobsCommandInput,
157
+ ListCollaborationTrainedModelExportJobsCommandOutput,
158
+ } from "./commands/ListCollaborationTrainedModelExportJobsCommand";
159
+ import {
160
+ ListCollaborationTrainedModelInferenceJobsCommandInput,
161
+ ListCollaborationTrainedModelInferenceJobsCommandOutput,
162
+ } from "./commands/ListCollaborationTrainedModelInferenceJobsCommand";
163
+ import {
164
+ ListCollaborationTrainedModelsCommandInput,
165
+ ListCollaborationTrainedModelsCommandOutput,
166
+ } from "./commands/ListCollaborationTrainedModelsCommand";
67
167
  import {
68
168
  ListConfiguredAudienceModelsCommandInput,
69
169
  ListConfiguredAudienceModelsCommandOutput,
70
170
  } from "./commands/ListConfiguredAudienceModelsCommand";
171
+ import {
172
+ ListConfiguredModelAlgorithmAssociationsCommandInput,
173
+ ListConfiguredModelAlgorithmAssociationsCommandOutput,
174
+ } from "./commands/ListConfiguredModelAlgorithmAssociationsCommand";
175
+ import {
176
+ ListConfiguredModelAlgorithmsCommandInput,
177
+ ListConfiguredModelAlgorithmsCommandOutput,
178
+ } from "./commands/ListConfiguredModelAlgorithmsCommand";
179
+ import {
180
+ ListMLInputChannelsCommandInput,
181
+ ListMLInputChannelsCommandOutput,
182
+ } from "./commands/ListMLInputChannelsCommand";
71
183
  import {
72
184
  ListTagsForResourceCommandInput,
73
185
  ListTagsForResourceCommandOutput,
74
186
  } from "./commands/ListTagsForResourceCommand";
187
+ import {
188
+ ListTrainedModelInferenceJobsCommandInput,
189
+ ListTrainedModelInferenceJobsCommandOutput,
190
+ } from "./commands/ListTrainedModelInferenceJobsCommand";
191
+ import {
192
+ ListTrainedModelsCommandInput,
193
+ ListTrainedModelsCommandOutput,
194
+ } from "./commands/ListTrainedModelsCommand";
75
195
  import {
76
196
  ListTrainingDatasetsCommandInput,
77
197
  ListTrainingDatasetsCommandOutput,
@@ -80,6 +200,10 @@ import {
80
200
  PutConfiguredAudienceModelPolicyCommandInput,
81
201
  PutConfiguredAudienceModelPolicyCommandOutput,
82
202
  } from "./commands/PutConfiguredAudienceModelPolicyCommand";
203
+ import {
204
+ PutMLConfigurationCommandInput,
205
+ PutMLConfigurationCommandOutput,
206
+ } from "./commands/PutMLConfigurationCommand";
83
207
  import {
84
208
  StartAudienceExportJobCommandInput,
85
209
  StartAudienceExportJobCommandOutput,
@@ -88,6 +212,14 @@ import {
88
212
  StartAudienceGenerationJobCommandInput,
89
213
  StartAudienceGenerationJobCommandOutput,
90
214
  } from "./commands/StartAudienceGenerationJobCommand";
215
+ import {
216
+ StartTrainedModelExportJobCommandInput,
217
+ StartTrainedModelExportJobCommandOutput,
218
+ } from "./commands/StartTrainedModelExportJobCommand";
219
+ import {
220
+ StartTrainedModelInferenceJobCommandInput,
221
+ StartTrainedModelInferenceJobCommandOutput,
222
+ } from "./commands/StartTrainedModelInferenceJobCommand";
91
223
  import {
92
224
  TagResourceCommandInput,
93
225
  TagResourceCommandOutput,
@@ -101,6 +233,32 @@ import {
101
233
  UpdateConfiguredAudienceModelCommandOutput,
102
234
  } from "./commands/UpdateConfiguredAudienceModelCommand";
103
235
  export interface CleanRoomsML {
236
+ cancelTrainedModel(
237
+ args: CancelTrainedModelCommandInput,
238
+ options?: __HttpHandlerOptions
239
+ ): Promise<CancelTrainedModelCommandOutput>;
240
+ cancelTrainedModel(
241
+ args: CancelTrainedModelCommandInput,
242
+ cb: (err: any, data?: CancelTrainedModelCommandOutput) => void
243
+ ): void;
244
+ cancelTrainedModel(
245
+ args: CancelTrainedModelCommandInput,
246
+ options: __HttpHandlerOptions,
247
+ cb: (err: any, data?: CancelTrainedModelCommandOutput) => void
248
+ ): void;
249
+ cancelTrainedModelInferenceJob(
250
+ args: CancelTrainedModelInferenceJobCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<CancelTrainedModelInferenceJobCommandOutput>;
253
+ cancelTrainedModelInferenceJob(
254
+ args: CancelTrainedModelInferenceJobCommandInput,
255
+ cb: (err: any, data?: CancelTrainedModelInferenceJobCommandOutput) => void
256
+ ): void;
257
+ cancelTrainedModelInferenceJob(
258
+ args: CancelTrainedModelInferenceJobCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: CancelTrainedModelInferenceJobCommandOutput) => void
261
+ ): void;
104
262
  createAudienceModel(
105
263
  args: CreateAudienceModelCommandInput,
106
264
  options?: __HttpHandlerOptions
@@ -127,6 +285,64 @@ export interface CleanRoomsML {
127
285
  options: __HttpHandlerOptions,
128
286
  cb: (err: any, data?: CreateConfiguredAudienceModelCommandOutput) => void
129
287
  ): void;
288
+ createConfiguredModelAlgorithm(
289
+ args: CreateConfiguredModelAlgorithmCommandInput,
290
+ options?: __HttpHandlerOptions
291
+ ): Promise<CreateConfiguredModelAlgorithmCommandOutput>;
292
+ createConfiguredModelAlgorithm(
293
+ args: CreateConfiguredModelAlgorithmCommandInput,
294
+ cb: (err: any, data?: CreateConfiguredModelAlgorithmCommandOutput) => void
295
+ ): void;
296
+ createConfiguredModelAlgorithm(
297
+ args: CreateConfiguredModelAlgorithmCommandInput,
298
+ options: __HttpHandlerOptions,
299
+ cb: (err: any, data?: CreateConfiguredModelAlgorithmCommandOutput) => void
300
+ ): void;
301
+ createConfiguredModelAlgorithmAssociation(
302
+ args: CreateConfiguredModelAlgorithmAssociationCommandInput,
303
+ options?: __HttpHandlerOptions
304
+ ): Promise<CreateConfiguredModelAlgorithmAssociationCommandOutput>;
305
+ createConfiguredModelAlgorithmAssociation(
306
+ args: CreateConfiguredModelAlgorithmAssociationCommandInput,
307
+ cb: (
308
+ err: any,
309
+ data?: CreateConfiguredModelAlgorithmAssociationCommandOutput
310
+ ) => void
311
+ ): void;
312
+ createConfiguredModelAlgorithmAssociation(
313
+ args: CreateConfiguredModelAlgorithmAssociationCommandInput,
314
+ options: __HttpHandlerOptions,
315
+ cb: (
316
+ err: any,
317
+ data?: CreateConfiguredModelAlgorithmAssociationCommandOutput
318
+ ) => void
319
+ ): void;
320
+ createMLInputChannel(
321
+ args: CreateMLInputChannelCommandInput,
322
+ options?: __HttpHandlerOptions
323
+ ): Promise<CreateMLInputChannelCommandOutput>;
324
+ createMLInputChannel(
325
+ args: CreateMLInputChannelCommandInput,
326
+ cb: (err: any, data?: CreateMLInputChannelCommandOutput) => void
327
+ ): void;
328
+ createMLInputChannel(
329
+ args: CreateMLInputChannelCommandInput,
330
+ options: __HttpHandlerOptions,
331
+ cb: (err: any, data?: CreateMLInputChannelCommandOutput) => void
332
+ ): void;
333
+ createTrainedModel(
334
+ args: CreateTrainedModelCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<CreateTrainedModelCommandOutput>;
337
+ createTrainedModel(
338
+ args: CreateTrainedModelCommandInput,
339
+ cb: (err: any, data?: CreateTrainedModelCommandOutput) => void
340
+ ): void;
341
+ createTrainedModel(
342
+ args: CreateTrainedModelCommandInput,
343
+ options: __HttpHandlerOptions,
344
+ cb: (err: any, data?: CreateTrainedModelCommandOutput) => void
345
+ ): void;
130
346
  createTrainingDataset(
131
347
  args: CreateTrainingDatasetCommandInput,
132
348
  options?: __HttpHandlerOptions
@@ -198,6 +414,77 @@ export interface CleanRoomsML {
198
414
  data?: DeleteConfiguredAudienceModelPolicyCommandOutput
199
415
  ) => void
200
416
  ): void;
417
+ deleteConfiguredModelAlgorithm(
418
+ args: DeleteConfiguredModelAlgorithmCommandInput,
419
+ options?: __HttpHandlerOptions
420
+ ): Promise<DeleteConfiguredModelAlgorithmCommandOutput>;
421
+ deleteConfiguredModelAlgorithm(
422
+ args: DeleteConfiguredModelAlgorithmCommandInput,
423
+ cb: (err: any, data?: DeleteConfiguredModelAlgorithmCommandOutput) => void
424
+ ): void;
425
+ deleteConfiguredModelAlgorithm(
426
+ args: DeleteConfiguredModelAlgorithmCommandInput,
427
+ options: __HttpHandlerOptions,
428
+ cb: (err: any, data?: DeleteConfiguredModelAlgorithmCommandOutput) => void
429
+ ): void;
430
+ deleteConfiguredModelAlgorithmAssociation(
431
+ args: DeleteConfiguredModelAlgorithmAssociationCommandInput,
432
+ options?: __HttpHandlerOptions
433
+ ): Promise<DeleteConfiguredModelAlgorithmAssociationCommandOutput>;
434
+ deleteConfiguredModelAlgorithmAssociation(
435
+ args: DeleteConfiguredModelAlgorithmAssociationCommandInput,
436
+ cb: (
437
+ err: any,
438
+ data?: DeleteConfiguredModelAlgorithmAssociationCommandOutput
439
+ ) => void
440
+ ): void;
441
+ deleteConfiguredModelAlgorithmAssociation(
442
+ args: DeleteConfiguredModelAlgorithmAssociationCommandInput,
443
+ options: __HttpHandlerOptions,
444
+ cb: (
445
+ err: any,
446
+ data?: DeleteConfiguredModelAlgorithmAssociationCommandOutput
447
+ ) => void
448
+ ): void;
449
+ deleteMLConfiguration(
450
+ args: DeleteMLConfigurationCommandInput,
451
+ options?: __HttpHandlerOptions
452
+ ): Promise<DeleteMLConfigurationCommandOutput>;
453
+ deleteMLConfiguration(
454
+ args: DeleteMLConfigurationCommandInput,
455
+ cb: (err: any, data?: DeleteMLConfigurationCommandOutput) => void
456
+ ): void;
457
+ deleteMLConfiguration(
458
+ args: DeleteMLConfigurationCommandInput,
459
+ options: __HttpHandlerOptions,
460
+ cb: (err: any, data?: DeleteMLConfigurationCommandOutput) => void
461
+ ): void;
462
+ deleteMLInputChannelData(
463
+ args: DeleteMLInputChannelDataCommandInput,
464
+ options?: __HttpHandlerOptions
465
+ ): Promise<DeleteMLInputChannelDataCommandOutput>;
466
+ deleteMLInputChannelData(
467
+ args: DeleteMLInputChannelDataCommandInput,
468
+ cb: (err: any, data?: DeleteMLInputChannelDataCommandOutput) => void
469
+ ): void;
470
+ deleteMLInputChannelData(
471
+ args: DeleteMLInputChannelDataCommandInput,
472
+ options: __HttpHandlerOptions,
473
+ cb: (err: any, data?: DeleteMLInputChannelDataCommandOutput) => void
474
+ ): void;
475
+ deleteTrainedModelOutput(
476
+ args: DeleteTrainedModelOutputCommandInput,
477
+ options?: __HttpHandlerOptions
478
+ ): Promise<DeleteTrainedModelOutputCommandOutput>;
479
+ deleteTrainedModelOutput(
480
+ args: DeleteTrainedModelOutputCommandInput,
481
+ cb: (err: any, data?: DeleteTrainedModelOutputCommandOutput) => void
482
+ ): void;
483
+ deleteTrainedModelOutput(
484
+ args: DeleteTrainedModelOutputCommandInput,
485
+ options: __HttpHandlerOptions,
486
+ cb: (err: any, data?: DeleteTrainedModelOutputCommandOutput) => void
487
+ ): void;
201
488
  deleteTrainingDataset(
202
489
  args: DeleteTrainingDatasetCommandInput,
203
490
  options?: __HttpHandlerOptions
@@ -237,6 +524,51 @@ export interface CleanRoomsML {
237
524
  options: __HttpHandlerOptions,
238
525
  cb: (err: any, data?: GetAudienceModelCommandOutput) => void
239
526
  ): void;
527
+ getCollaborationConfiguredModelAlgorithmAssociation(
528
+ args: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
529
+ options?: __HttpHandlerOptions
530
+ ): Promise<GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput>;
531
+ getCollaborationConfiguredModelAlgorithmAssociation(
532
+ args: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
533
+ cb: (
534
+ err: any,
535
+ data?: GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput
536
+ ) => void
537
+ ): void;
538
+ getCollaborationConfiguredModelAlgorithmAssociation(
539
+ args: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
540
+ options: __HttpHandlerOptions,
541
+ cb: (
542
+ err: any,
543
+ data?: GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput
544
+ ) => void
545
+ ): void;
546
+ getCollaborationMLInputChannel(
547
+ args: GetCollaborationMLInputChannelCommandInput,
548
+ options?: __HttpHandlerOptions
549
+ ): Promise<GetCollaborationMLInputChannelCommandOutput>;
550
+ getCollaborationMLInputChannel(
551
+ args: GetCollaborationMLInputChannelCommandInput,
552
+ cb: (err: any, data?: GetCollaborationMLInputChannelCommandOutput) => void
553
+ ): void;
554
+ getCollaborationMLInputChannel(
555
+ args: GetCollaborationMLInputChannelCommandInput,
556
+ options: __HttpHandlerOptions,
557
+ cb: (err: any, data?: GetCollaborationMLInputChannelCommandOutput) => void
558
+ ): void;
559
+ getCollaborationTrainedModel(
560
+ args: GetCollaborationTrainedModelCommandInput,
561
+ options?: __HttpHandlerOptions
562
+ ): Promise<GetCollaborationTrainedModelCommandOutput>;
563
+ getCollaborationTrainedModel(
564
+ args: GetCollaborationTrainedModelCommandInput,
565
+ cb: (err: any, data?: GetCollaborationTrainedModelCommandOutput) => void
566
+ ): void;
567
+ getCollaborationTrainedModel(
568
+ args: GetCollaborationTrainedModelCommandInput,
569
+ options: __HttpHandlerOptions,
570
+ cb: (err: any, data?: GetCollaborationTrainedModelCommandOutput) => void
571
+ ): void;
240
572
  getConfiguredAudienceModel(
241
573
  args: GetConfiguredAudienceModelCommandInput,
242
574
  options?: __HttpHandlerOptions
@@ -263,6 +595,90 @@ export interface CleanRoomsML {
263
595
  options: __HttpHandlerOptions,
264
596
  cb: (err: any, data?: GetConfiguredAudienceModelPolicyCommandOutput) => void
265
597
  ): void;
598
+ getConfiguredModelAlgorithm(
599
+ args: GetConfiguredModelAlgorithmCommandInput,
600
+ options?: __HttpHandlerOptions
601
+ ): Promise<GetConfiguredModelAlgorithmCommandOutput>;
602
+ getConfiguredModelAlgorithm(
603
+ args: GetConfiguredModelAlgorithmCommandInput,
604
+ cb: (err: any, data?: GetConfiguredModelAlgorithmCommandOutput) => void
605
+ ): void;
606
+ getConfiguredModelAlgorithm(
607
+ args: GetConfiguredModelAlgorithmCommandInput,
608
+ options: __HttpHandlerOptions,
609
+ cb: (err: any, data?: GetConfiguredModelAlgorithmCommandOutput) => void
610
+ ): void;
611
+ getConfiguredModelAlgorithmAssociation(
612
+ args: GetConfiguredModelAlgorithmAssociationCommandInput,
613
+ options?: __HttpHandlerOptions
614
+ ): Promise<GetConfiguredModelAlgorithmAssociationCommandOutput>;
615
+ getConfiguredModelAlgorithmAssociation(
616
+ args: GetConfiguredModelAlgorithmAssociationCommandInput,
617
+ cb: (
618
+ err: any,
619
+ data?: GetConfiguredModelAlgorithmAssociationCommandOutput
620
+ ) => void
621
+ ): void;
622
+ getConfiguredModelAlgorithmAssociation(
623
+ args: GetConfiguredModelAlgorithmAssociationCommandInput,
624
+ options: __HttpHandlerOptions,
625
+ cb: (
626
+ err: any,
627
+ data?: GetConfiguredModelAlgorithmAssociationCommandOutput
628
+ ) => void
629
+ ): void;
630
+ getMLConfiguration(
631
+ args: GetMLConfigurationCommandInput,
632
+ options?: __HttpHandlerOptions
633
+ ): Promise<GetMLConfigurationCommandOutput>;
634
+ getMLConfiguration(
635
+ args: GetMLConfigurationCommandInput,
636
+ cb: (err: any, data?: GetMLConfigurationCommandOutput) => void
637
+ ): void;
638
+ getMLConfiguration(
639
+ args: GetMLConfigurationCommandInput,
640
+ options: __HttpHandlerOptions,
641
+ cb: (err: any, data?: GetMLConfigurationCommandOutput) => void
642
+ ): void;
643
+ getMLInputChannel(
644
+ args: GetMLInputChannelCommandInput,
645
+ options?: __HttpHandlerOptions
646
+ ): Promise<GetMLInputChannelCommandOutput>;
647
+ getMLInputChannel(
648
+ args: GetMLInputChannelCommandInput,
649
+ cb: (err: any, data?: GetMLInputChannelCommandOutput) => void
650
+ ): void;
651
+ getMLInputChannel(
652
+ args: GetMLInputChannelCommandInput,
653
+ options: __HttpHandlerOptions,
654
+ cb: (err: any, data?: GetMLInputChannelCommandOutput) => void
655
+ ): void;
656
+ getTrainedModel(
657
+ args: GetTrainedModelCommandInput,
658
+ options?: __HttpHandlerOptions
659
+ ): Promise<GetTrainedModelCommandOutput>;
660
+ getTrainedModel(
661
+ args: GetTrainedModelCommandInput,
662
+ cb: (err: any, data?: GetTrainedModelCommandOutput) => void
663
+ ): void;
664
+ getTrainedModel(
665
+ args: GetTrainedModelCommandInput,
666
+ options: __HttpHandlerOptions,
667
+ cb: (err: any, data?: GetTrainedModelCommandOutput) => void
668
+ ): void;
669
+ getTrainedModelInferenceJob(
670
+ args: GetTrainedModelInferenceJobCommandInput,
671
+ options?: __HttpHandlerOptions
672
+ ): Promise<GetTrainedModelInferenceJobCommandOutput>;
673
+ getTrainedModelInferenceJob(
674
+ args: GetTrainedModelInferenceJobCommandInput,
675
+ cb: (err: any, data?: GetTrainedModelInferenceJobCommandOutput) => void
676
+ ): void;
677
+ getTrainedModelInferenceJob(
678
+ args: GetTrainedModelInferenceJobCommandInput,
679
+ options: __HttpHandlerOptions,
680
+ cb: (err: any, data?: GetTrainedModelInferenceJobCommandOutput) => void
681
+ ): void;
266
682
  getTrainingDataset(
267
683
  args: GetTrainingDatasetCommandInput,
268
684
  options?: __HttpHandlerOptions
@@ -318,6 +734,89 @@ export interface CleanRoomsML {
318
734
  options: __HttpHandlerOptions,
319
735
  cb: (err: any, data?: ListAudienceModelsCommandOutput) => void
320
736
  ): void;
737
+ listCollaborationConfiguredModelAlgorithmAssociations(
738
+ args: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
739
+ options?: __HttpHandlerOptions
740
+ ): Promise<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
741
+ listCollaborationConfiguredModelAlgorithmAssociations(
742
+ args: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
743
+ cb: (
744
+ err: any,
745
+ data?: ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput
746
+ ) => void
747
+ ): void;
748
+ listCollaborationConfiguredModelAlgorithmAssociations(
749
+ args: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
750
+ options: __HttpHandlerOptions,
751
+ cb: (
752
+ err: any,
753
+ data?: ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput
754
+ ) => void
755
+ ): void;
756
+ listCollaborationMLInputChannels(
757
+ args: ListCollaborationMLInputChannelsCommandInput,
758
+ options?: __HttpHandlerOptions
759
+ ): Promise<ListCollaborationMLInputChannelsCommandOutput>;
760
+ listCollaborationMLInputChannels(
761
+ args: ListCollaborationMLInputChannelsCommandInput,
762
+ cb: (err: any, data?: ListCollaborationMLInputChannelsCommandOutput) => void
763
+ ): void;
764
+ listCollaborationMLInputChannels(
765
+ args: ListCollaborationMLInputChannelsCommandInput,
766
+ options: __HttpHandlerOptions,
767
+ cb: (err: any, data?: ListCollaborationMLInputChannelsCommandOutput) => void
768
+ ): void;
769
+ listCollaborationTrainedModelExportJobs(
770
+ args: ListCollaborationTrainedModelExportJobsCommandInput,
771
+ options?: __HttpHandlerOptions
772
+ ): Promise<ListCollaborationTrainedModelExportJobsCommandOutput>;
773
+ listCollaborationTrainedModelExportJobs(
774
+ args: ListCollaborationTrainedModelExportJobsCommandInput,
775
+ cb: (
776
+ err: any,
777
+ data?: ListCollaborationTrainedModelExportJobsCommandOutput
778
+ ) => void
779
+ ): void;
780
+ listCollaborationTrainedModelExportJobs(
781
+ args: ListCollaborationTrainedModelExportJobsCommandInput,
782
+ options: __HttpHandlerOptions,
783
+ cb: (
784
+ err: any,
785
+ data?: ListCollaborationTrainedModelExportJobsCommandOutput
786
+ ) => void
787
+ ): void;
788
+ listCollaborationTrainedModelInferenceJobs(
789
+ args: ListCollaborationTrainedModelInferenceJobsCommandInput,
790
+ options?: __HttpHandlerOptions
791
+ ): Promise<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
792
+ listCollaborationTrainedModelInferenceJobs(
793
+ args: ListCollaborationTrainedModelInferenceJobsCommandInput,
794
+ cb: (
795
+ err: any,
796
+ data?: ListCollaborationTrainedModelInferenceJobsCommandOutput
797
+ ) => void
798
+ ): void;
799
+ listCollaborationTrainedModelInferenceJobs(
800
+ args: ListCollaborationTrainedModelInferenceJobsCommandInput,
801
+ options: __HttpHandlerOptions,
802
+ cb: (
803
+ err: any,
804
+ data?: ListCollaborationTrainedModelInferenceJobsCommandOutput
805
+ ) => void
806
+ ): void;
807
+ listCollaborationTrainedModels(
808
+ args: ListCollaborationTrainedModelsCommandInput,
809
+ options?: __HttpHandlerOptions
810
+ ): Promise<ListCollaborationTrainedModelsCommandOutput>;
811
+ listCollaborationTrainedModels(
812
+ args: ListCollaborationTrainedModelsCommandInput,
813
+ cb: (err: any, data?: ListCollaborationTrainedModelsCommandOutput) => void
814
+ ): void;
815
+ listCollaborationTrainedModels(
816
+ args: ListCollaborationTrainedModelsCommandInput,
817
+ options: __HttpHandlerOptions,
818
+ cb: (err: any, data?: ListCollaborationTrainedModelsCommandOutput) => void
819
+ ): void;
321
820
  listConfiguredAudienceModels(): Promise<ListConfiguredAudienceModelsCommandOutput>;
322
821
  listConfiguredAudienceModels(
323
822
  args: ListConfiguredAudienceModelsCommandInput,
@@ -332,6 +831,52 @@ export interface CleanRoomsML {
332
831
  options: __HttpHandlerOptions,
333
832
  cb: (err: any, data?: ListConfiguredAudienceModelsCommandOutput) => void
334
833
  ): void;
834
+ listConfiguredModelAlgorithmAssociations(
835
+ args: ListConfiguredModelAlgorithmAssociationsCommandInput,
836
+ options?: __HttpHandlerOptions
837
+ ): Promise<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
838
+ listConfiguredModelAlgorithmAssociations(
839
+ args: ListConfiguredModelAlgorithmAssociationsCommandInput,
840
+ cb: (
841
+ err: any,
842
+ data?: ListConfiguredModelAlgorithmAssociationsCommandOutput
843
+ ) => void
844
+ ): void;
845
+ listConfiguredModelAlgorithmAssociations(
846
+ args: ListConfiguredModelAlgorithmAssociationsCommandInput,
847
+ options: __HttpHandlerOptions,
848
+ cb: (
849
+ err: any,
850
+ data?: ListConfiguredModelAlgorithmAssociationsCommandOutput
851
+ ) => void
852
+ ): void;
853
+ listConfiguredModelAlgorithms(): Promise<ListConfiguredModelAlgorithmsCommandOutput>;
854
+ listConfiguredModelAlgorithms(
855
+ args: ListConfiguredModelAlgorithmsCommandInput,
856
+ options?: __HttpHandlerOptions
857
+ ): Promise<ListConfiguredModelAlgorithmsCommandOutput>;
858
+ listConfiguredModelAlgorithms(
859
+ args: ListConfiguredModelAlgorithmsCommandInput,
860
+ cb: (err: any, data?: ListConfiguredModelAlgorithmsCommandOutput) => void
861
+ ): void;
862
+ listConfiguredModelAlgorithms(
863
+ args: ListConfiguredModelAlgorithmsCommandInput,
864
+ options: __HttpHandlerOptions,
865
+ cb: (err: any, data?: ListConfiguredModelAlgorithmsCommandOutput) => void
866
+ ): void;
867
+ listMLInputChannels(
868
+ args: ListMLInputChannelsCommandInput,
869
+ options?: __HttpHandlerOptions
870
+ ): Promise<ListMLInputChannelsCommandOutput>;
871
+ listMLInputChannels(
872
+ args: ListMLInputChannelsCommandInput,
873
+ cb: (err: any, data?: ListMLInputChannelsCommandOutput) => void
874
+ ): void;
875
+ listMLInputChannels(
876
+ args: ListMLInputChannelsCommandInput,
877
+ options: __HttpHandlerOptions,
878
+ cb: (err: any, data?: ListMLInputChannelsCommandOutput) => void
879
+ ): void;
335
880
  listTagsForResource(
336
881
  args: ListTagsForResourceCommandInput,
337
882
  options?: __HttpHandlerOptions
@@ -345,6 +890,32 @@ export interface CleanRoomsML {
345
890
  options: __HttpHandlerOptions,
346
891
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
347
892
  ): void;
893
+ listTrainedModelInferenceJobs(
894
+ args: ListTrainedModelInferenceJobsCommandInput,
895
+ options?: __HttpHandlerOptions
896
+ ): Promise<ListTrainedModelInferenceJobsCommandOutput>;
897
+ listTrainedModelInferenceJobs(
898
+ args: ListTrainedModelInferenceJobsCommandInput,
899
+ cb: (err: any, data?: ListTrainedModelInferenceJobsCommandOutput) => void
900
+ ): void;
901
+ listTrainedModelInferenceJobs(
902
+ args: ListTrainedModelInferenceJobsCommandInput,
903
+ options: __HttpHandlerOptions,
904
+ cb: (err: any, data?: ListTrainedModelInferenceJobsCommandOutput) => void
905
+ ): void;
906
+ listTrainedModels(
907
+ args: ListTrainedModelsCommandInput,
908
+ options?: __HttpHandlerOptions
909
+ ): Promise<ListTrainedModelsCommandOutput>;
910
+ listTrainedModels(
911
+ args: ListTrainedModelsCommandInput,
912
+ cb: (err: any, data?: ListTrainedModelsCommandOutput) => void
913
+ ): void;
914
+ listTrainedModels(
915
+ args: ListTrainedModelsCommandInput,
916
+ options: __HttpHandlerOptions,
917
+ cb: (err: any, data?: ListTrainedModelsCommandOutput) => void
918
+ ): void;
348
919
  listTrainingDatasets(): Promise<ListTrainingDatasetsCommandOutput>;
349
920
  listTrainingDatasets(
350
921
  args: ListTrainingDatasetsCommandInput,
@@ -372,6 +943,19 @@ export interface CleanRoomsML {
372
943
  options: __HttpHandlerOptions,
373
944
  cb: (err: any, data?: PutConfiguredAudienceModelPolicyCommandOutput) => void
374
945
  ): void;
946
+ putMLConfiguration(
947
+ args: PutMLConfigurationCommandInput,
948
+ options?: __HttpHandlerOptions
949
+ ): Promise<PutMLConfigurationCommandOutput>;
950
+ putMLConfiguration(
951
+ args: PutMLConfigurationCommandInput,
952
+ cb: (err: any, data?: PutMLConfigurationCommandOutput) => void
953
+ ): void;
954
+ putMLConfiguration(
955
+ args: PutMLConfigurationCommandInput,
956
+ options: __HttpHandlerOptions,
957
+ cb: (err: any, data?: PutMLConfigurationCommandOutput) => void
958
+ ): void;
375
959
  startAudienceExportJob(
376
960
  args: StartAudienceExportJobCommandInput,
377
961
  options?: __HttpHandlerOptions
@@ -398,6 +982,32 @@ export interface CleanRoomsML {
398
982
  options: __HttpHandlerOptions,
399
983
  cb: (err: any, data?: StartAudienceGenerationJobCommandOutput) => void
400
984
  ): void;
985
+ startTrainedModelExportJob(
986
+ args: StartTrainedModelExportJobCommandInput,
987
+ options?: __HttpHandlerOptions
988
+ ): Promise<StartTrainedModelExportJobCommandOutput>;
989
+ startTrainedModelExportJob(
990
+ args: StartTrainedModelExportJobCommandInput,
991
+ cb: (err: any, data?: StartTrainedModelExportJobCommandOutput) => void
992
+ ): void;
993
+ startTrainedModelExportJob(
994
+ args: StartTrainedModelExportJobCommandInput,
995
+ options: __HttpHandlerOptions,
996
+ cb: (err: any, data?: StartTrainedModelExportJobCommandOutput) => void
997
+ ): void;
998
+ startTrainedModelInferenceJob(
999
+ args: StartTrainedModelInferenceJobCommandInput,
1000
+ options?: __HttpHandlerOptions
1001
+ ): Promise<StartTrainedModelInferenceJobCommandOutput>;
1002
+ startTrainedModelInferenceJob(
1003
+ args: StartTrainedModelInferenceJobCommandInput,
1004
+ cb: (err: any, data?: StartTrainedModelInferenceJobCommandOutput) => void
1005
+ ): void;
1006
+ startTrainedModelInferenceJob(
1007
+ args: StartTrainedModelInferenceJobCommandInput,
1008
+ options: __HttpHandlerOptions,
1009
+ cb: (err: any, data?: StartTrainedModelInferenceJobCommandOutput) => void
1010
+ ): void;
401
1011
  tagResource(
402
1012
  args: TagResourceCommandInput,
403
1013
  options?: __HttpHandlerOptions