@aws-sdk/client-cleanroomsml 3.686.0 → 3.691.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 +3512 -256
  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 +1028 -84
  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 +7 -7
@@ -3,6 +3,14 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CancelTrainedModelCommandInput,
8
+ CancelTrainedModelCommandOutput,
9
+ } from "../commands/CancelTrainedModelCommand";
10
+ import {
11
+ CancelTrainedModelInferenceJobCommandInput,
12
+ CancelTrainedModelInferenceJobCommandOutput,
13
+ } from "../commands/CancelTrainedModelInferenceJobCommand";
6
14
  import {
7
15
  CreateAudienceModelCommandInput,
8
16
  CreateAudienceModelCommandOutput,
@@ -11,6 +19,22 @@ import {
11
19
  CreateConfiguredAudienceModelCommandInput,
12
20
  CreateConfiguredAudienceModelCommandOutput,
13
21
  } from "../commands/CreateConfiguredAudienceModelCommand";
22
+ import {
23
+ CreateConfiguredModelAlgorithmAssociationCommandInput,
24
+ CreateConfiguredModelAlgorithmAssociationCommandOutput,
25
+ } from "../commands/CreateConfiguredModelAlgorithmAssociationCommand";
26
+ import {
27
+ CreateConfiguredModelAlgorithmCommandInput,
28
+ CreateConfiguredModelAlgorithmCommandOutput,
29
+ } from "../commands/CreateConfiguredModelAlgorithmCommand";
30
+ import {
31
+ CreateMLInputChannelCommandInput,
32
+ CreateMLInputChannelCommandOutput,
33
+ } from "../commands/CreateMLInputChannelCommand";
34
+ import {
35
+ CreateTrainedModelCommandInput,
36
+ CreateTrainedModelCommandOutput,
37
+ } from "../commands/CreateTrainedModelCommand";
14
38
  import {
15
39
  CreateTrainingDatasetCommandInput,
16
40
  CreateTrainingDatasetCommandOutput,
@@ -31,6 +55,26 @@ import {
31
55
  DeleteConfiguredAudienceModelPolicyCommandInput,
32
56
  DeleteConfiguredAudienceModelPolicyCommandOutput,
33
57
  } from "../commands/DeleteConfiguredAudienceModelPolicyCommand";
58
+ import {
59
+ DeleteConfiguredModelAlgorithmAssociationCommandInput,
60
+ DeleteConfiguredModelAlgorithmAssociationCommandOutput,
61
+ } from "../commands/DeleteConfiguredModelAlgorithmAssociationCommand";
62
+ import {
63
+ DeleteConfiguredModelAlgorithmCommandInput,
64
+ DeleteConfiguredModelAlgorithmCommandOutput,
65
+ } from "../commands/DeleteConfiguredModelAlgorithmCommand";
66
+ import {
67
+ DeleteMLConfigurationCommandInput,
68
+ DeleteMLConfigurationCommandOutput,
69
+ } from "../commands/DeleteMLConfigurationCommand";
70
+ import {
71
+ DeleteMLInputChannelDataCommandInput,
72
+ DeleteMLInputChannelDataCommandOutput,
73
+ } from "../commands/DeleteMLInputChannelDataCommand";
74
+ import {
75
+ DeleteTrainedModelOutputCommandInput,
76
+ DeleteTrainedModelOutputCommandOutput,
77
+ } from "../commands/DeleteTrainedModelOutputCommand";
34
78
  import {
35
79
  DeleteTrainingDatasetCommandInput,
36
80
  DeleteTrainingDatasetCommandOutput,
@@ -43,6 +87,18 @@ import {
43
87
  GetAudienceModelCommandInput,
44
88
  GetAudienceModelCommandOutput,
45
89
  } from "../commands/GetAudienceModelCommand";
90
+ import {
91
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
92
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput,
93
+ } from "../commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand";
94
+ import {
95
+ GetCollaborationMLInputChannelCommandInput,
96
+ GetCollaborationMLInputChannelCommandOutput,
97
+ } from "../commands/GetCollaborationMLInputChannelCommand";
98
+ import {
99
+ GetCollaborationTrainedModelCommandInput,
100
+ GetCollaborationTrainedModelCommandOutput,
101
+ } from "../commands/GetCollaborationTrainedModelCommand";
46
102
  import {
47
103
  GetConfiguredAudienceModelCommandInput,
48
104
  GetConfiguredAudienceModelCommandOutput,
@@ -51,6 +107,30 @@ import {
51
107
  GetConfiguredAudienceModelPolicyCommandInput,
52
108
  GetConfiguredAudienceModelPolicyCommandOutput,
53
109
  } from "../commands/GetConfiguredAudienceModelPolicyCommand";
110
+ import {
111
+ GetConfiguredModelAlgorithmAssociationCommandInput,
112
+ GetConfiguredModelAlgorithmAssociationCommandOutput,
113
+ } from "../commands/GetConfiguredModelAlgorithmAssociationCommand";
114
+ import {
115
+ GetConfiguredModelAlgorithmCommandInput,
116
+ GetConfiguredModelAlgorithmCommandOutput,
117
+ } from "../commands/GetConfiguredModelAlgorithmCommand";
118
+ import {
119
+ GetMLConfigurationCommandInput,
120
+ GetMLConfigurationCommandOutput,
121
+ } from "../commands/GetMLConfigurationCommand";
122
+ import {
123
+ GetMLInputChannelCommandInput,
124
+ GetMLInputChannelCommandOutput,
125
+ } from "../commands/GetMLInputChannelCommand";
126
+ import {
127
+ GetTrainedModelCommandInput,
128
+ GetTrainedModelCommandOutput,
129
+ } from "../commands/GetTrainedModelCommand";
130
+ import {
131
+ GetTrainedModelInferenceJobCommandInput,
132
+ GetTrainedModelInferenceJobCommandOutput,
133
+ } from "../commands/GetTrainedModelInferenceJobCommand";
54
134
  import {
55
135
  GetTrainingDatasetCommandInput,
56
136
  GetTrainingDatasetCommandOutput,
@@ -67,14 +147,54 @@ import {
67
147
  ListAudienceModelsCommandInput,
68
148
  ListAudienceModelsCommandOutput,
69
149
  } from "../commands/ListAudienceModelsCommand";
150
+ import {
151
+ ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
152
+ ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput,
153
+ } from "../commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand";
154
+ import {
155
+ ListCollaborationMLInputChannelsCommandInput,
156
+ ListCollaborationMLInputChannelsCommandOutput,
157
+ } from "../commands/ListCollaborationMLInputChannelsCommand";
158
+ import {
159
+ ListCollaborationTrainedModelExportJobsCommandInput,
160
+ ListCollaborationTrainedModelExportJobsCommandOutput,
161
+ } from "../commands/ListCollaborationTrainedModelExportJobsCommand";
162
+ import {
163
+ ListCollaborationTrainedModelInferenceJobsCommandInput,
164
+ ListCollaborationTrainedModelInferenceJobsCommandOutput,
165
+ } from "../commands/ListCollaborationTrainedModelInferenceJobsCommand";
166
+ import {
167
+ ListCollaborationTrainedModelsCommandInput,
168
+ ListCollaborationTrainedModelsCommandOutput,
169
+ } from "../commands/ListCollaborationTrainedModelsCommand";
70
170
  import {
71
171
  ListConfiguredAudienceModelsCommandInput,
72
172
  ListConfiguredAudienceModelsCommandOutput,
73
173
  } from "../commands/ListConfiguredAudienceModelsCommand";
174
+ import {
175
+ ListConfiguredModelAlgorithmAssociationsCommandInput,
176
+ ListConfiguredModelAlgorithmAssociationsCommandOutput,
177
+ } from "../commands/ListConfiguredModelAlgorithmAssociationsCommand";
178
+ import {
179
+ ListConfiguredModelAlgorithmsCommandInput,
180
+ ListConfiguredModelAlgorithmsCommandOutput,
181
+ } from "../commands/ListConfiguredModelAlgorithmsCommand";
182
+ import {
183
+ ListMLInputChannelsCommandInput,
184
+ ListMLInputChannelsCommandOutput,
185
+ } from "../commands/ListMLInputChannelsCommand";
74
186
  import {
75
187
  ListTagsForResourceCommandInput,
76
188
  ListTagsForResourceCommandOutput,
77
189
  } from "../commands/ListTagsForResourceCommand";
190
+ import {
191
+ ListTrainedModelInferenceJobsCommandInput,
192
+ ListTrainedModelInferenceJobsCommandOutput,
193
+ } from "../commands/ListTrainedModelInferenceJobsCommand";
194
+ import {
195
+ ListTrainedModelsCommandInput,
196
+ ListTrainedModelsCommandOutput,
197
+ } from "../commands/ListTrainedModelsCommand";
78
198
  import {
79
199
  ListTrainingDatasetsCommandInput,
80
200
  ListTrainingDatasetsCommandOutput,
@@ -83,6 +203,10 @@ import {
83
203
  PutConfiguredAudienceModelPolicyCommandInput,
84
204
  PutConfiguredAudienceModelPolicyCommandOutput,
85
205
  } from "../commands/PutConfiguredAudienceModelPolicyCommand";
206
+ import {
207
+ PutMLConfigurationCommandInput,
208
+ PutMLConfigurationCommandOutput,
209
+ } from "../commands/PutMLConfigurationCommand";
86
210
  import {
87
211
  StartAudienceExportJobCommandInput,
88
212
  StartAudienceExportJobCommandOutput,
@@ -91,6 +215,14 @@ import {
91
215
  StartAudienceGenerationJobCommandInput,
92
216
  StartAudienceGenerationJobCommandOutput,
93
217
  } from "../commands/StartAudienceGenerationJobCommand";
218
+ import {
219
+ StartTrainedModelExportJobCommandInput,
220
+ StartTrainedModelExportJobCommandOutput,
221
+ } from "../commands/StartTrainedModelExportJobCommand";
222
+ import {
223
+ StartTrainedModelInferenceJobCommandInput,
224
+ StartTrainedModelInferenceJobCommandOutput,
225
+ } from "../commands/StartTrainedModelInferenceJobCommand";
94
226
  import {
95
227
  TagResourceCommandInput,
96
228
  TagResourceCommandOutput,
@@ -103,6 +235,14 @@ import {
103
235
  UpdateConfiguredAudienceModelCommandInput,
104
236
  UpdateConfiguredAudienceModelCommandOutput,
105
237
  } from "../commands/UpdateConfiguredAudienceModelCommand";
238
+ export declare const se_CancelTrainedModelCommand: (
239
+ input: CancelTrainedModelCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const se_CancelTrainedModelInferenceJobCommand: (
243
+ input: CancelTrainedModelInferenceJobCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
106
246
  export declare const se_CreateAudienceModelCommand: (
107
247
  input: CreateAudienceModelCommandInput,
108
248
  context: __SerdeContext
@@ -111,6 +251,22 @@ export declare const se_CreateConfiguredAudienceModelCommand: (
111
251
  input: CreateConfiguredAudienceModelCommandInput,
112
252
  context: __SerdeContext
113
253
  ) => Promise<__HttpRequest>;
254
+ export declare const se_CreateConfiguredModelAlgorithmCommand: (
255
+ input: CreateConfiguredModelAlgorithmCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
258
+ export declare const se_CreateConfiguredModelAlgorithmAssociationCommand: (
259
+ input: CreateConfiguredModelAlgorithmAssociationCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
262
+ export declare const se_CreateMLInputChannelCommand: (
263
+ input: CreateMLInputChannelCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
266
+ export declare const se_CreateTrainedModelCommand: (
267
+ input: CreateTrainedModelCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
114
270
  export declare const se_CreateTrainingDatasetCommand: (
115
271
  input: CreateTrainingDatasetCommandInput,
116
272
  context: __SerdeContext
@@ -131,6 +287,26 @@ export declare const se_DeleteConfiguredAudienceModelPolicyCommand: (
131
287
  input: DeleteConfiguredAudienceModelPolicyCommandInput,
132
288
  context: __SerdeContext
133
289
  ) => Promise<__HttpRequest>;
290
+ export declare const se_DeleteConfiguredModelAlgorithmCommand: (
291
+ input: DeleteConfiguredModelAlgorithmCommandInput,
292
+ context: __SerdeContext
293
+ ) => Promise<__HttpRequest>;
294
+ export declare const se_DeleteConfiguredModelAlgorithmAssociationCommand: (
295
+ input: DeleteConfiguredModelAlgorithmAssociationCommandInput,
296
+ context: __SerdeContext
297
+ ) => Promise<__HttpRequest>;
298
+ export declare const se_DeleteMLConfigurationCommand: (
299
+ input: DeleteMLConfigurationCommandInput,
300
+ context: __SerdeContext
301
+ ) => Promise<__HttpRequest>;
302
+ export declare const se_DeleteMLInputChannelDataCommand: (
303
+ input: DeleteMLInputChannelDataCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
306
+ export declare const se_DeleteTrainedModelOutputCommand: (
307
+ input: DeleteTrainedModelOutputCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
134
310
  export declare const se_DeleteTrainingDatasetCommand: (
135
311
  input: DeleteTrainingDatasetCommandInput,
136
312
  context: __SerdeContext
@@ -143,6 +319,18 @@ export declare const se_GetAudienceModelCommand: (
143
319
  input: GetAudienceModelCommandInput,
144
320
  context: __SerdeContext
145
321
  ) => Promise<__HttpRequest>;
322
+ export declare const se_GetCollaborationConfiguredModelAlgorithmAssociationCommand: (
323
+ input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
324
+ context: __SerdeContext
325
+ ) => Promise<__HttpRequest>;
326
+ export declare const se_GetCollaborationMLInputChannelCommand: (
327
+ input: GetCollaborationMLInputChannelCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
330
+ export declare const se_GetCollaborationTrainedModelCommand: (
331
+ input: GetCollaborationTrainedModelCommandInput,
332
+ context: __SerdeContext
333
+ ) => Promise<__HttpRequest>;
146
334
  export declare const se_GetConfiguredAudienceModelCommand: (
147
335
  input: GetConfiguredAudienceModelCommandInput,
148
336
  context: __SerdeContext
@@ -151,6 +339,30 @@ export declare const se_GetConfiguredAudienceModelPolicyCommand: (
151
339
  input: GetConfiguredAudienceModelPolicyCommandInput,
152
340
  context: __SerdeContext
153
341
  ) => Promise<__HttpRequest>;
342
+ export declare const se_GetConfiguredModelAlgorithmCommand: (
343
+ input: GetConfiguredModelAlgorithmCommandInput,
344
+ context: __SerdeContext
345
+ ) => Promise<__HttpRequest>;
346
+ export declare const se_GetConfiguredModelAlgorithmAssociationCommand: (
347
+ input: GetConfiguredModelAlgorithmAssociationCommandInput,
348
+ context: __SerdeContext
349
+ ) => Promise<__HttpRequest>;
350
+ export declare const se_GetMLConfigurationCommand: (
351
+ input: GetMLConfigurationCommandInput,
352
+ context: __SerdeContext
353
+ ) => Promise<__HttpRequest>;
354
+ export declare const se_GetMLInputChannelCommand: (
355
+ input: GetMLInputChannelCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
358
+ export declare const se_GetTrainedModelCommand: (
359
+ input: GetTrainedModelCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
362
+ export declare const se_GetTrainedModelInferenceJobCommand: (
363
+ input: GetTrainedModelInferenceJobCommandInput,
364
+ context: __SerdeContext
365
+ ) => Promise<__HttpRequest>;
154
366
  export declare const se_GetTrainingDatasetCommand: (
155
367
  input: GetTrainingDatasetCommandInput,
156
368
  context: __SerdeContext
@@ -167,14 +379,54 @@ export declare const se_ListAudienceModelsCommand: (
167
379
  input: ListAudienceModelsCommandInput,
168
380
  context: __SerdeContext
169
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_ListCollaborationConfiguredModelAlgorithmAssociationsCommand: (
383
+ input: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
386
+ export declare const se_ListCollaborationMLInputChannelsCommand: (
387
+ input: ListCollaborationMLInputChannelsCommandInput,
388
+ context: __SerdeContext
389
+ ) => Promise<__HttpRequest>;
390
+ export declare const se_ListCollaborationTrainedModelExportJobsCommand: (
391
+ input: ListCollaborationTrainedModelExportJobsCommandInput,
392
+ context: __SerdeContext
393
+ ) => Promise<__HttpRequest>;
394
+ export declare const se_ListCollaborationTrainedModelInferenceJobsCommand: (
395
+ input: ListCollaborationTrainedModelInferenceJobsCommandInput,
396
+ context: __SerdeContext
397
+ ) => Promise<__HttpRequest>;
398
+ export declare const se_ListCollaborationTrainedModelsCommand: (
399
+ input: ListCollaborationTrainedModelsCommandInput,
400
+ context: __SerdeContext
401
+ ) => Promise<__HttpRequest>;
170
402
  export declare const se_ListConfiguredAudienceModelsCommand: (
171
403
  input: ListConfiguredAudienceModelsCommandInput,
172
404
  context: __SerdeContext
173
405
  ) => Promise<__HttpRequest>;
406
+ export declare const se_ListConfiguredModelAlgorithmAssociationsCommand: (
407
+ input: ListConfiguredModelAlgorithmAssociationsCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
410
+ export declare const se_ListConfiguredModelAlgorithmsCommand: (
411
+ input: ListConfiguredModelAlgorithmsCommandInput,
412
+ context: __SerdeContext
413
+ ) => Promise<__HttpRequest>;
414
+ export declare const se_ListMLInputChannelsCommand: (
415
+ input: ListMLInputChannelsCommandInput,
416
+ context: __SerdeContext
417
+ ) => Promise<__HttpRequest>;
174
418
  export declare const se_ListTagsForResourceCommand: (
175
419
  input: ListTagsForResourceCommandInput,
176
420
  context: __SerdeContext
177
421
  ) => Promise<__HttpRequest>;
422
+ export declare const se_ListTrainedModelInferenceJobsCommand: (
423
+ input: ListTrainedModelInferenceJobsCommandInput,
424
+ context: __SerdeContext
425
+ ) => Promise<__HttpRequest>;
426
+ export declare const se_ListTrainedModelsCommand: (
427
+ input: ListTrainedModelsCommandInput,
428
+ context: __SerdeContext
429
+ ) => Promise<__HttpRequest>;
178
430
  export declare const se_ListTrainingDatasetsCommand: (
179
431
  input: ListTrainingDatasetsCommandInput,
180
432
  context: __SerdeContext
@@ -183,6 +435,10 @@ export declare const se_PutConfiguredAudienceModelPolicyCommand: (
183
435
  input: PutConfiguredAudienceModelPolicyCommandInput,
184
436
  context: __SerdeContext
185
437
  ) => Promise<__HttpRequest>;
438
+ export declare const se_PutMLConfigurationCommand: (
439
+ input: PutMLConfigurationCommandInput,
440
+ context: __SerdeContext
441
+ ) => Promise<__HttpRequest>;
186
442
  export declare const se_StartAudienceExportJobCommand: (
187
443
  input: StartAudienceExportJobCommandInput,
188
444
  context: __SerdeContext
@@ -191,6 +447,14 @@ export declare const se_StartAudienceGenerationJobCommand: (
191
447
  input: StartAudienceGenerationJobCommandInput,
192
448
  context: __SerdeContext
193
449
  ) => Promise<__HttpRequest>;
450
+ export declare const se_StartTrainedModelExportJobCommand: (
451
+ input: StartTrainedModelExportJobCommandInput,
452
+ context: __SerdeContext
453
+ ) => Promise<__HttpRequest>;
454
+ export declare const se_StartTrainedModelInferenceJobCommand: (
455
+ input: StartTrainedModelInferenceJobCommandInput,
456
+ context: __SerdeContext
457
+ ) => Promise<__HttpRequest>;
194
458
  export declare const se_TagResourceCommand: (
195
459
  input: TagResourceCommandInput,
196
460
  context: __SerdeContext
@@ -203,6 +467,14 @@ export declare const se_UpdateConfiguredAudienceModelCommand: (
203
467
  input: UpdateConfiguredAudienceModelCommandInput,
204
468
  context: __SerdeContext
205
469
  ) => Promise<__HttpRequest>;
470
+ export declare const de_CancelTrainedModelCommand: (
471
+ output: __HttpResponse,
472
+ context: __SerdeContext
473
+ ) => Promise<CancelTrainedModelCommandOutput>;
474
+ export declare const de_CancelTrainedModelInferenceJobCommand: (
475
+ output: __HttpResponse,
476
+ context: __SerdeContext
477
+ ) => Promise<CancelTrainedModelInferenceJobCommandOutput>;
206
478
  export declare const de_CreateAudienceModelCommand: (
207
479
  output: __HttpResponse,
208
480
  context: __SerdeContext
@@ -211,6 +483,22 @@ export declare const de_CreateConfiguredAudienceModelCommand: (
211
483
  output: __HttpResponse,
212
484
  context: __SerdeContext
213
485
  ) => Promise<CreateConfiguredAudienceModelCommandOutput>;
486
+ export declare const de_CreateConfiguredModelAlgorithmCommand: (
487
+ output: __HttpResponse,
488
+ context: __SerdeContext
489
+ ) => Promise<CreateConfiguredModelAlgorithmCommandOutput>;
490
+ export declare const de_CreateConfiguredModelAlgorithmAssociationCommand: (
491
+ output: __HttpResponse,
492
+ context: __SerdeContext
493
+ ) => Promise<CreateConfiguredModelAlgorithmAssociationCommandOutput>;
494
+ export declare const de_CreateMLInputChannelCommand: (
495
+ output: __HttpResponse,
496
+ context: __SerdeContext
497
+ ) => Promise<CreateMLInputChannelCommandOutput>;
498
+ export declare const de_CreateTrainedModelCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<CreateTrainedModelCommandOutput>;
214
502
  export declare const de_CreateTrainingDatasetCommand: (
215
503
  output: __HttpResponse,
216
504
  context: __SerdeContext
@@ -231,6 +519,26 @@ export declare const de_DeleteConfiguredAudienceModelPolicyCommand: (
231
519
  output: __HttpResponse,
232
520
  context: __SerdeContext
233
521
  ) => Promise<DeleteConfiguredAudienceModelPolicyCommandOutput>;
522
+ export declare const de_DeleteConfiguredModelAlgorithmCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<DeleteConfiguredModelAlgorithmCommandOutput>;
526
+ export declare const de_DeleteConfiguredModelAlgorithmAssociationCommand: (
527
+ output: __HttpResponse,
528
+ context: __SerdeContext
529
+ ) => Promise<DeleteConfiguredModelAlgorithmAssociationCommandOutput>;
530
+ export declare const de_DeleteMLConfigurationCommand: (
531
+ output: __HttpResponse,
532
+ context: __SerdeContext
533
+ ) => Promise<DeleteMLConfigurationCommandOutput>;
534
+ export declare const de_DeleteMLInputChannelDataCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<DeleteMLInputChannelDataCommandOutput>;
538
+ export declare const de_DeleteTrainedModelOutputCommand: (
539
+ output: __HttpResponse,
540
+ context: __SerdeContext
541
+ ) => Promise<DeleteTrainedModelOutputCommandOutput>;
234
542
  export declare const de_DeleteTrainingDatasetCommand: (
235
543
  output: __HttpResponse,
236
544
  context: __SerdeContext
@@ -243,6 +551,18 @@ export declare const de_GetAudienceModelCommand: (
243
551
  output: __HttpResponse,
244
552
  context: __SerdeContext
245
553
  ) => Promise<GetAudienceModelCommandOutput>;
554
+ export declare const de_GetCollaborationConfiguredModelAlgorithmAssociationCommand: (
555
+ output: __HttpResponse,
556
+ context: __SerdeContext
557
+ ) => Promise<GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput>;
558
+ export declare const de_GetCollaborationMLInputChannelCommand: (
559
+ output: __HttpResponse,
560
+ context: __SerdeContext
561
+ ) => Promise<GetCollaborationMLInputChannelCommandOutput>;
562
+ export declare const de_GetCollaborationTrainedModelCommand: (
563
+ output: __HttpResponse,
564
+ context: __SerdeContext
565
+ ) => Promise<GetCollaborationTrainedModelCommandOutput>;
246
566
  export declare const de_GetConfiguredAudienceModelCommand: (
247
567
  output: __HttpResponse,
248
568
  context: __SerdeContext
@@ -251,6 +571,30 @@ export declare const de_GetConfiguredAudienceModelPolicyCommand: (
251
571
  output: __HttpResponse,
252
572
  context: __SerdeContext
253
573
  ) => Promise<GetConfiguredAudienceModelPolicyCommandOutput>;
574
+ export declare const de_GetConfiguredModelAlgorithmCommand: (
575
+ output: __HttpResponse,
576
+ context: __SerdeContext
577
+ ) => Promise<GetConfiguredModelAlgorithmCommandOutput>;
578
+ export declare const de_GetConfiguredModelAlgorithmAssociationCommand: (
579
+ output: __HttpResponse,
580
+ context: __SerdeContext
581
+ ) => Promise<GetConfiguredModelAlgorithmAssociationCommandOutput>;
582
+ export declare const de_GetMLConfigurationCommand: (
583
+ output: __HttpResponse,
584
+ context: __SerdeContext
585
+ ) => Promise<GetMLConfigurationCommandOutput>;
586
+ export declare const de_GetMLInputChannelCommand: (
587
+ output: __HttpResponse,
588
+ context: __SerdeContext
589
+ ) => Promise<GetMLInputChannelCommandOutput>;
590
+ export declare const de_GetTrainedModelCommand: (
591
+ output: __HttpResponse,
592
+ context: __SerdeContext
593
+ ) => Promise<GetTrainedModelCommandOutput>;
594
+ export declare const de_GetTrainedModelInferenceJobCommand: (
595
+ output: __HttpResponse,
596
+ context: __SerdeContext
597
+ ) => Promise<GetTrainedModelInferenceJobCommandOutput>;
254
598
  export declare const de_GetTrainingDatasetCommand: (
255
599
  output: __HttpResponse,
256
600
  context: __SerdeContext
@@ -267,14 +611,54 @@ export declare const de_ListAudienceModelsCommand: (
267
611
  output: __HttpResponse,
268
612
  context: __SerdeContext
269
613
  ) => Promise<ListAudienceModelsCommandOutput>;
614
+ export declare const de_ListCollaborationConfiguredModelAlgorithmAssociationsCommand: (
615
+ output: __HttpResponse,
616
+ context: __SerdeContext
617
+ ) => Promise<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
618
+ export declare const de_ListCollaborationMLInputChannelsCommand: (
619
+ output: __HttpResponse,
620
+ context: __SerdeContext
621
+ ) => Promise<ListCollaborationMLInputChannelsCommandOutput>;
622
+ export declare const de_ListCollaborationTrainedModelExportJobsCommand: (
623
+ output: __HttpResponse,
624
+ context: __SerdeContext
625
+ ) => Promise<ListCollaborationTrainedModelExportJobsCommandOutput>;
626
+ export declare const de_ListCollaborationTrainedModelInferenceJobsCommand: (
627
+ output: __HttpResponse,
628
+ context: __SerdeContext
629
+ ) => Promise<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
630
+ export declare const de_ListCollaborationTrainedModelsCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<ListCollaborationTrainedModelsCommandOutput>;
270
634
  export declare const de_ListConfiguredAudienceModelsCommand: (
271
635
  output: __HttpResponse,
272
636
  context: __SerdeContext
273
637
  ) => Promise<ListConfiguredAudienceModelsCommandOutput>;
638
+ export declare const de_ListConfiguredModelAlgorithmAssociationsCommand: (
639
+ output: __HttpResponse,
640
+ context: __SerdeContext
641
+ ) => Promise<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
642
+ export declare const de_ListConfiguredModelAlgorithmsCommand: (
643
+ output: __HttpResponse,
644
+ context: __SerdeContext
645
+ ) => Promise<ListConfiguredModelAlgorithmsCommandOutput>;
646
+ export declare const de_ListMLInputChannelsCommand: (
647
+ output: __HttpResponse,
648
+ context: __SerdeContext
649
+ ) => Promise<ListMLInputChannelsCommandOutput>;
274
650
  export declare const de_ListTagsForResourceCommand: (
275
651
  output: __HttpResponse,
276
652
  context: __SerdeContext
277
653
  ) => Promise<ListTagsForResourceCommandOutput>;
654
+ export declare const de_ListTrainedModelInferenceJobsCommand: (
655
+ output: __HttpResponse,
656
+ context: __SerdeContext
657
+ ) => Promise<ListTrainedModelInferenceJobsCommandOutput>;
658
+ export declare const de_ListTrainedModelsCommand: (
659
+ output: __HttpResponse,
660
+ context: __SerdeContext
661
+ ) => Promise<ListTrainedModelsCommandOutput>;
278
662
  export declare const de_ListTrainingDatasetsCommand: (
279
663
  output: __HttpResponse,
280
664
  context: __SerdeContext
@@ -283,6 +667,10 @@ export declare const de_PutConfiguredAudienceModelPolicyCommand: (
283
667
  output: __HttpResponse,
284
668
  context: __SerdeContext
285
669
  ) => Promise<PutConfiguredAudienceModelPolicyCommandOutput>;
670
+ export declare const de_PutMLConfigurationCommand: (
671
+ output: __HttpResponse,
672
+ context: __SerdeContext
673
+ ) => Promise<PutMLConfigurationCommandOutput>;
286
674
  export declare const de_StartAudienceExportJobCommand: (
287
675
  output: __HttpResponse,
288
676
  context: __SerdeContext
@@ -291,6 +679,14 @@ export declare const de_StartAudienceGenerationJobCommand: (
291
679
  output: __HttpResponse,
292
680
  context: __SerdeContext
293
681
  ) => Promise<StartAudienceGenerationJobCommandOutput>;
682
+ export declare const de_StartTrainedModelExportJobCommand: (
683
+ output: __HttpResponse,
684
+ context: __SerdeContext
685
+ ) => Promise<StartTrainedModelExportJobCommandOutput>;
686
+ export declare const de_StartTrainedModelInferenceJobCommand: (
687
+ output: __HttpResponse,
688
+ context: __SerdeContext
689
+ ) => Promise<StartTrainedModelInferenceJobCommandOutput>;
294
690
  export declare const de_TagResourceCommand: (
295
691
  output: __HttpResponse,
296
692
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cleanroomsml",
3
3
  "description": "AWS SDK for JavaScript Cleanroomsml Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cleanroomsml",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",