@aws-sdk/client-sagemaker 3.699.0 → 3.706.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 (266) hide show
  1. package/README.md +160 -0
  2. package/dist-cjs/index.js +1583 -204
  3. package/dist-es/SageMaker.js +40 -0
  4. package/dist-es/commands/CreateClusterSchedulerConfigCommand.js +22 -0
  5. package/dist-es/commands/CreateComputeQuotaCommand.js +22 -0
  6. package/dist-es/commands/CreatePartnerAppCommand.js +22 -0
  7. package/dist-es/commands/CreatePartnerAppPresignedUrlCommand.js +22 -0
  8. package/dist-es/commands/CreateTrainingPlanCommand.js +22 -0
  9. package/dist-es/commands/DeleteClusterSchedulerConfigCommand.js +22 -0
  10. package/dist-es/commands/DeleteComputeQuotaCommand.js +22 -0
  11. package/dist-es/commands/DeletePartnerAppCommand.js +22 -0
  12. package/dist-es/commands/DescribeClusterSchedulerConfigCommand.js +22 -0
  13. package/dist-es/commands/DescribeComputeQuotaCommand.js +22 -0
  14. package/dist-es/commands/DescribePartnerAppCommand.js +22 -0
  15. package/dist-es/commands/DescribeTrainingPlanCommand.js +22 -0
  16. package/dist-es/commands/ListClusterSchedulerConfigsCommand.js +22 -0
  17. package/dist-es/commands/ListComputeQuotasCommand.js +22 -0
  18. package/dist-es/commands/ListPartnerAppsCommand.js +22 -0
  19. package/dist-es/commands/ListTrainingPlansCommand.js +22 -0
  20. package/dist-es/commands/SearchTrainingPlanOfferingsCommand.js +22 -0
  21. package/dist-es/commands/UpdateClusterSchedulerConfigCommand.js +22 -0
  22. package/dist-es/commands/UpdateComputeQuotaCommand.js +22 -0
  23. package/dist-es/commands/UpdateModelCardCommand.js +1 -1
  24. package/dist-es/commands/UpdateModelPackageCommand.js +1 -1
  25. package/dist-es/commands/UpdatePartnerAppCommand.js +22 -0
  26. package/dist-es/commands/index.js +20 -0
  27. package/dist-es/models/models_0.js +40 -10
  28. package/dist-es/models/models_1.js +21 -56
  29. package/dist-es/models/models_2.js +67 -56
  30. package/dist-es/models/models_3.js +101 -43
  31. package/dist-es/models/models_4.js +55 -13
  32. package/dist-es/models/models_5.js +15 -0
  33. package/dist-es/pagination/ListClusterSchedulerConfigsPaginator.js +4 -0
  34. package/dist-es/pagination/ListComputeQuotasPaginator.js +4 -0
  35. package/dist-es/pagination/ListPartnerAppsPaginator.js +4 -0
  36. package/dist-es/pagination/ListTrainingPlansPaginator.js +4 -0
  37. package/dist-es/pagination/index.js +4 -0
  38. package/dist-es/protocols/Aws_json1_1.js +907 -24
  39. package/dist-types/SageMaker.d.ts +144 -0
  40. package/dist-types/SageMakerClient.d.ts +22 -2
  41. package/dist-types/commands/CreateActionCommand.d.ts +1 -1
  42. package/dist-types/commands/CreateAlgorithmCommand.d.ts +4 -3
  43. package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
  44. package/dist-types/commands/CreateClusterSchedulerConfigCommand.d.ts +99 -0
  45. package/dist-types/commands/CreateComputeQuotaCommand.d.ts +108 -0
  46. package/dist-types/commands/CreateDomainCommand.d.ts +9 -1
  47. package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +10 -8
  48. package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  49. package/dist-types/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  50. package/dist-types/commands/CreatePartnerAppCommand.d.ts +102 -0
  51. package/dist-types/commands/CreatePartnerAppPresignedUrlCommand.d.ts +76 -0
  52. package/dist-types/commands/CreateSpaceCommand.d.ts +3 -0
  53. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -2
  54. package/dist-types/commands/CreateTrainingPlanCommand.d.ts +148 -0
  55. package/dist-types/commands/CreateUserProfileCommand.d.ts +5 -1
  56. package/dist-types/commands/DeleteClusterSchedulerConfigCommand.d.ts +72 -0
  57. package/dist-types/commands/DeleteComputeQuotaCommand.d.ts +72 -0
  58. package/dist-types/commands/DeletePartnerAppCommand.d.ts +79 -0
  59. package/dist-types/commands/DescribeAlgorithmCommand.d.ts +4 -3
  60. package/dist-types/commands/DescribeClusterCommand.d.ts +4 -1
  61. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
  62. package/dist-types/commands/DescribeClusterSchedulerConfigCommand.d.ts +115 -0
  63. package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +122 -0
  64. package/dist-types/commands/DescribeDomainCommand.d.ts +9 -1
  65. package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
  66. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +11 -9
  67. package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
  68. package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
  69. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +1 -1
  70. package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  71. package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
  72. package/dist-types/commands/DescribePartnerAppCommand.d.ts +99 -0
  73. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  74. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -2
  75. package/dist-types/commands/DescribeTrainingPlanCommand.d.ts +102 -0
  76. package/dist-types/commands/DescribeUserProfileCommand.d.ts +5 -1
  77. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  78. package/dist-types/commands/ListClusterSchedulerConfigsCommand.d.ts +91 -0
  79. package/dist-types/commands/ListClustersCommand.d.ts +4 -0
  80. package/dist-types/commands/ListComputeQuotasCommand.d.ts +109 -0
  81. package/dist-types/commands/ListDeviceFleetsCommand.d.ts +2 -1
  82. package/dist-types/commands/ListDevicesCommand.d.ts +1 -1
  83. package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
  84. package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +1 -1
  85. package/dist-types/commands/ListEdgePackagingJobsCommand.d.ts +1 -1
  86. package/dist-types/commands/ListEndpointConfigsCommand.d.ts +1 -1
  87. package/dist-types/commands/ListEndpointsCommand.d.ts +1 -1
  88. package/dist-types/commands/ListExperimentsCommand.d.ts +1 -1
  89. package/dist-types/commands/ListFeatureGroupsCommand.d.ts +1 -1
  90. package/dist-types/commands/ListFlowDefinitionsCommand.d.ts +1 -1
  91. package/dist-types/commands/ListHubContentVersionsCommand.d.ts +1 -1
  92. package/dist-types/commands/ListHubContentsCommand.d.ts +1 -1
  93. package/dist-types/commands/ListHubsCommand.d.ts +1 -1
  94. package/dist-types/commands/ListHumanTaskUisCommand.d.ts +1 -1
  95. package/dist-types/commands/ListHyperParameterTuningJobsCommand.d.ts +1 -1
  96. package/dist-types/commands/ListImageVersionsCommand.d.ts +1 -1
  97. package/dist-types/commands/ListImagesCommand.d.ts +1 -1
  98. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  100. package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  101. package/dist-types/commands/ListInferenceRecommendationsJobsCommand.d.ts +1 -1
  102. package/dist-types/commands/ListLabelingJobsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListLabelingJobsForWorkteamCommand.d.ts +1 -1
  104. package/dist-types/commands/ListLineageGroupsCommand.d.ts +1 -2
  105. package/dist-types/commands/ListPartnerAppsCommand.d.ts +81 -0
  106. package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -0
  107. package/dist-types/commands/ListTrainingPlansCommand.d.ts +115 -0
  108. package/dist-types/commands/SearchCommand.d.ts +10 -8
  109. package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +120 -0
  110. package/dist-types/commands/UpdateActionCommand.d.ts +2 -1
  111. package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdateArtifactCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +3 -2
  114. package/dist-types/commands/UpdateClusterSchedulerConfigCommand.d.ts +94 -0
  115. package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +1 -1
  116. package/dist-types/commands/UpdateCodeRepositoryCommand.d.ts +1 -1
  117. package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +103 -0
  118. package/dist-types/commands/UpdateContextCommand.d.ts +1 -1
  119. package/dist-types/commands/UpdateDeviceFleetCommand.d.ts +1 -1
  120. package/dist-types/commands/UpdateDevicesCommand.d.ts +1 -1
  121. package/dist-types/commands/UpdateDomainCommand.d.ts +10 -2
  122. package/dist-types/commands/UpdateEndpointCommand.d.ts +1 -1
  123. package/dist-types/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  124. package/dist-types/commands/UpdateExperimentCommand.d.ts +1 -1
  125. package/dist-types/commands/UpdateFeatureGroupCommand.d.ts +1 -1
  126. package/dist-types/commands/UpdateFeatureMetadataCommand.d.ts +1 -1
  127. package/dist-types/commands/UpdateHubCommand.d.ts +1 -1
  128. package/dist-types/commands/UpdateImageCommand.d.ts +1 -1
  129. package/dist-types/commands/UpdateImageVersionCommand.d.ts +1 -1
  130. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +1 -1
  131. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +1 -1
  132. package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  133. package/dist-types/commands/UpdateMlflowTrackingServerCommand.d.ts +1 -1
  134. package/dist-types/commands/UpdateModelCardCommand.d.ts +1 -1
  135. package/dist-types/commands/UpdateModelPackageCommand.d.ts +1 -1
  136. package/dist-types/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  137. package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
  138. package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  139. package/dist-types/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  140. package/dist-types/commands/UpdatePartnerAppCommand.d.ts +98 -0
  141. package/dist-types/commands/UpdatePipelineCommand.d.ts +1 -1
  142. package/dist-types/commands/UpdatePipelineExecutionCommand.d.ts +1 -1
  143. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
  144. package/dist-types/commands/UpdateSpaceCommand.d.ts +4 -1
  145. package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
  146. package/dist-types/commands/UpdateTrialCommand.d.ts +1 -1
  147. package/dist-types/commands/UpdateTrialComponentCommand.d.ts +1 -2
  148. package/dist-types/commands/UpdateUserProfileCommand.d.ts +5 -1
  149. package/dist-types/commands/index.d.ts +20 -0
  150. package/dist-types/models/models_0.d.ts +361 -285
  151. package/dist-types/models/models_1.d.ts +493 -485
  152. package/dist-types/models/models_2.d.ts +4294 -4703
  153. package/dist-types/models/models_3.d.ts +5930 -5721
  154. package/dist-types/models/models_4.d.ts +5296 -4824
  155. package/dist-types/models/models_5.d.ts +1786 -5
  156. package/dist-types/pagination/ListClusterSchedulerConfigsPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListComputeQuotasPaginator.d.ts +7 -0
  158. package/dist-types/pagination/ListPartnerAppsPaginator.d.ts +7 -0
  159. package/dist-types/pagination/ListTrainingPlansPaginator.d.ts +7 -0
  160. package/dist-types/pagination/index.d.ts +4 -0
  161. package/dist-types/protocols/Aws_json1_1.d.ts +180 -0
  162. package/dist-types/ts3.4/SageMaker.d.ts +344 -0
  163. package/dist-types/ts3.4/SageMakerClient.d.ts +120 -0
  164. package/dist-types/ts3.4/commands/CreateActionCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/CreateClusterSchedulerConfigCommand.d.ts +51 -0
  166. package/dist-types/ts3.4/commands/CreateComputeQuotaCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/CreatePartnerAppCommand.d.ts +50 -0
  170. package/dist-types/ts3.4/commands/CreatePartnerAppPresignedUrlCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/CreateTrainingPlanCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/DeleteClusterSchedulerConfigCommand.d.ts +47 -0
  173. package/dist-types/ts3.4/commands/DeleteComputeQuotaCommand.d.ts +46 -0
  174. package/dist-types/ts3.4/commands/DeletePartnerAppCommand.d.ts +50 -0
  175. package/dist-types/ts3.4/commands/DescribeClusterSchedulerConfigCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/DescribeComputeQuotaCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +2 -4
  178. package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +4 -2
  184. package/dist-types/ts3.4/commands/DescribePartnerAppCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/DescribeTrainingPlanCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/ListClusterSchedulerConfigsCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListComputeQuotasCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/ListDeviceFleetsCommand.d.ts +2 -4
  189. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +1 -1
  190. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +1 -1
  191. package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +1 -1
  192. package/dist-types/ts3.4/commands/ListEdgePackagingJobsCommand.d.ts +1 -1
  193. package/dist-types/ts3.4/commands/ListEndpointConfigsCommand.d.ts +1 -1
  194. package/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +1 -1
  195. package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +1 -1
  196. package/dist-types/ts3.4/commands/ListFeatureGroupsCommand.d.ts +1 -1
  197. package/dist-types/ts3.4/commands/ListFlowDefinitionsCommand.d.ts +1 -1
  198. package/dist-types/ts3.4/commands/ListHubContentVersionsCommand.d.ts +1 -1
  199. package/dist-types/ts3.4/commands/ListHubContentsCommand.d.ts +1 -1
  200. package/dist-types/ts3.4/commands/ListHubsCommand.d.ts +1 -1
  201. package/dist-types/ts3.4/commands/ListHumanTaskUisCommand.d.ts +1 -1
  202. package/dist-types/ts3.4/commands/ListHyperParameterTuningJobsCommand.d.ts +1 -1
  203. package/dist-types/ts3.4/commands/ListImageVersionsCommand.d.ts +1 -1
  204. package/dist-types/ts3.4/commands/ListImagesCommand.d.ts +1 -1
  205. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +1 -1
  206. package/dist-types/ts3.4/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  207. package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  208. package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobsCommand.d.ts +1 -1
  209. package/dist-types/ts3.4/commands/ListLabelingJobsCommand.d.ts +1 -1
  210. package/dist-types/ts3.4/commands/ListLabelingJobsForWorkteamCommand.d.ts +1 -1
  211. package/dist-types/ts3.4/commands/ListLineageGroupsCommand.d.ts +4 -2
  212. package/dist-types/ts3.4/commands/ListPartnerAppsCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/ListTrainingPlansCommand.d.ts +51 -0
  214. package/dist-types/ts3.4/commands/SearchTrainingPlanOfferingsCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateActionCommand.d.ts +2 -1
  216. package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +1 -1
  217. package/dist-types/ts3.4/commands/UpdateArtifactCommand.d.ts +1 -1
  218. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +1 -1
  219. package/dist-types/ts3.4/commands/UpdateClusterSchedulerConfigCommand.d.ts +51 -0
  220. package/dist-types/ts3.4/commands/UpdateClusterSoftwareCommand.d.ts +1 -1
  221. package/dist-types/ts3.4/commands/UpdateCodeRepositoryCommand.d.ts +1 -1
  222. package/dist-types/ts3.4/commands/UpdateComputeQuotaCommand.d.ts +51 -0
  223. package/dist-types/ts3.4/commands/UpdateContextCommand.d.ts +1 -1
  224. package/dist-types/ts3.4/commands/UpdateDeviceFleetCommand.d.ts +1 -1
  225. package/dist-types/ts3.4/commands/UpdateDevicesCommand.d.ts +1 -1
  226. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  227. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  228. package/dist-types/ts3.4/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  229. package/dist-types/ts3.4/commands/UpdateExperimentCommand.d.ts +1 -1
  230. package/dist-types/ts3.4/commands/UpdateFeatureGroupCommand.d.ts +1 -1
  231. package/dist-types/ts3.4/commands/UpdateFeatureMetadataCommand.d.ts +1 -1
  232. package/dist-types/ts3.4/commands/UpdateHubCommand.d.ts +1 -1
  233. package/dist-types/ts3.4/commands/UpdateImageCommand.d.ts +1 -1
  234. package/dist-types/ts3.4/commands/UpdateImageVersionCommand.d.ts +1 -1
  235. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +1 -1
  236. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +1 -1
  237. package/dist-types/ts3.4/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  238. package/dist-types/ts3.4/commands/UpdateMlflowTrackingServerCommand.d.ts +1 -1
  239. package/dist-types/ts3.4/commands/UpdateModelCardCommand.d.ts +1 -1
  240. package/dist-types/ts3.4/commands/UpdateModelPackageCommand.d.ts +1 -1
  241. package/dist-types/ts3.4/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  242. package/dist-types/ts3.4/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
  243. package/dist-types/ts3.4/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  244. package/dist-types/ts3.4/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  245. package/dist-types/ts3.4/commands/UpdatePartnerAppCommand.d.ts +50 -0
  246. package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +1 -1
  247. package/dist-types/ts3.4/commands/UpdatePipelineExecutionCommand.d.ts +1 -1
  248. package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +1 -1
  249. package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +1 -1
  250. package/dist-types/ts3.4/commands/UpdateTrainingJobCommand.d.ts +1 -1
  251. package/dist-types/ts3.4/commands/UpdateTrialCommand.d.ts +1 -1
  252. package/dist-types/ts3.4/commands/UpdateTrialComponentCommand.d.ts +4 -2
  253. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  254. package/dist-types/ts3.4/models/models_0.d.ts +96 -76
  255. package/dist-types/ts3.4/models/models_1.d.ts +141 -160
  256. package/dist-types/ts3.4/models/models_2.d.ts +280 -318
  257. package/dist-types/ts3.4/models/models_3.d.ts +471 -420
  258. package/dist-types/ts3.4/models/models_4.d.ts +546 -394
  259. package/dist-types/ts3.4/models/models_5.d.ts +458 -3
  260. package/dist-types/ts3.4/pagination/ListClusterSchedulerConfigsPaginator.d.ts +11 -0
  261. package/dist-types/ts3.4/pagination/ListComputeQuotasPaginator.d.ts +11 -0
  262. package/dist-types/ts3.4/pagination/ListPartnerAppsPaginator.d.ts +11 -0
  263. package/dist-types/ts3.4/pagination/ListTrainingPlansPaginator.d.ts +11 -0
  264. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  265. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +240 -0
  266. package/package.json +1 -1
@@ -2,8 +2,6 @@ import {
2
2
  ActionStatus,
3
3
  AdditionalInferenceSpecificationDefinition,
4
4
  AlgorithmSpecification,
5
- AppNetworkAccessType,
6
- AppSecurityGroupManagement,
7
5
  AppSpecification,
8
6
  AppType,
9
7
  AutoMLJobStepMetadata,
@@ -15,15 +13,9 @@ import {
15
13
  Channel,
16
14
  CheckpointConfig,
17
15
  ClarifyCheckStepMetadata,
18
- ClusterInstanceGroupSpecification,
19
- ClusterNodeRecovery,
20
- CodeEditorAppImageConfig,
21
16
  ConditionStepMetadata,
22
17
  ContainerDefinition,
23
18
  InferenceSpecification,
24
- JupyterLabAppImageConfig,
25
- KernelGatewayImageConfig,
26
- MetadataProperties,
27
19
  ModelApprovalStatus,
28
20
  ModelPackageStatus,
29
21
  OutputDataConfig,
@@ -39,18 +31,10 @@ import {
39
31
  } from "./models_0";
40
32
  import {
41
33
  _InstanceType,
42
- DefaultSpaceSettings,
43
- DeploymentConfig,
44
34
  DriftCheckBaselines,
45
- EdgeOutputConfig,
46
- FeatureDefinition,
47
- InferenceComponentRuntimeConfig,
48
- InferenceComponentSpecification,
49
35
  InferenceExecutionConfig,
50
- InferenceExperimentDataStorageConfig,
51
- InferenceExperimentSchedule,
52
- InstanceMetadataServiceConfiguration,
53
- JobType,
36
+ InferenceExperimentType,
37
+ MetadataProperties,
54
38
  ModelCardSecurityConfig,
55
39
  ModelCardStatus,
56
40
  ModelLifeCycle,
@@ -62,22 +46,11 @@ import {
62
46
  MonitoringScheduleConfig,
63
47
  MonitoringType,
64
48
  NetworkConfig,
65
- NotebookInstanceAcceleratorType,
66
- NotebookInstanceLifecycleHook,
67
- OptimizationJobDeploymentInstanceType,
68
- Processor,
69
49
  RetryStrategy,
70
- RootAccess,
71
- ShadowModeConfig,
72
50
  SkipModelValidation,
73
51
  SourceAlgorithmSpecification,
74
- TagPropagation,
75
- ThroughputMode,
76
- TrackingServerSize,
77
52
  TtlDuration,
78
53
  UiTemplate,
79
- UserSettings,
80
- VendorGuidance,
81
54
  } from "./models_1";
82
55
  import {
83
56
  CrossAccountFilterOption,
@@ -86,53 +59,88 @@ import {
86
59
  DebugRuleConfiguration,
87
60
  DebugRuleEvaluationStatus,
88
61
  DeploymentRecommendation,
62
+ EdgePackagingJobStatus,
89
63
  EndpointStatus,
90
64
  ExperimentConfig,
91
- FeatureParameter,
92
- HyperParameterTrainingJobSummary,
65
+ FeatureGroupStatus,
66
+ HubContentType,
93
67
  ModelArtifacts,
94
68
  ModelClientConfig,
69
+ OfflineStoreStatusValue,
70
+ OptimizationJobDeploymentInstanceType,
95
71
  ParallelismConfiguration,
96
- PipelineDefinitionS3Location,
72
+ PartnerAppType,
97
73
  ProcessingInput,
98
74
  ProcessingOutputConfig,
99
75
  ProcessingResources,
100
76
  ProcessingStoppingCondition,
101
77
  ProfilerConfig,
102
- ProfilerRuleConfiguration,
103
- ProvisioningParameter,
104
78
  ServiceCatalogProvisioningDetails,
105
79
  SharingType,
106
- SpaceSettings,
107
80
  SpaceStorageSettings,
108
81
  StudioLifecycleConfigAppType,
109
82
  TensorBoardOutputConfig,
110
- TrainingJobStatus,
111
83
  TrialComponentArtifact,
112
84
  TrialComponentParameterValue,
113
85
  TrialComponentStatus,
114
86
  } from "./models_2";
115
87
  import {
116
- DesiredWeightAndCapacity,
117
88
  Device,
118
89
  DeviceDeploymentSummary,
90
+ DeviceFleetSummary,
91
+ DeviceSummary,
119
92
  Direction,
120
- DomainSettingsForUpdate,
93
+ DomainDetails,
121
94
  Edge,
95
+ EdgeDeploymentPlanSummary,
96
+ EdgePackagingJobSummary,
122
97
  EMRStepMetadata,
123
98
  Endpoint,
99
+ EndpointConfigSortKey,
124
100
  EndpointConfigStepMetadata,
101
+ EndpointConfigSummary,
102
+ EndpointSortKey,
125
103
  EndpointStepMetadata,
104
+ EndpointSummary,
126
105
  ExecutionStatus,
127
106
  Experiment,
107
+ ExperimentSummary,
128
108
  FailStepMetadata,
129
109
  FeatureGroup,
110
+ FeatureGroupSortBy,
111
+ FeatureGroupSortOrder,
112
+ FeatureGroupSummary,
130
113
  FeatureMetadata,
131
114
  Filter,
132
- GitConfigForUpdate,
115
+ FlowDefinitionSummary,
116
+ HubContentInfo,
117
+ HubContentSortBy,
118
+ HubInfo,
119
+ HubSortBy,
120
+ HumanTaskUiSummary,
121
+ HyperParameterTrainingJobSummary,
133
122
  HyperParameterTuningJobSearchEntity,
123
+ HyperParameterTuningJobSortByOptions,
124
+ HyperParameterTuningJobStatus,
125
+ HyperParameterTuningJobSummary,
126
+ Image,
127
+ ImageSortBy,
128
+ ImageSortOrder,
129
+ ImageVersion,
130
+ ImageVersionSortBy,
131
+ ImageVersionSortOrder,
132
+ InferenceComponentSortKey,
133
+ InferenceComponentStatus,
134
+ InferenceComponentSummary,
135
+ InferenceExperimentStatus,
134
136
  InferenceExperimentStopDesiredState,
137
+ InferenceExperimentSummary,
138
+ InferenceRecommendationsJob,
139
+ InferenceRecommendationsJobStep,
135
140
  IsTrackingServerActive,
141
+ LabelingJobForWorkteamSummary,
142
+ LabelingJobStatus,
143
+ LabelingJobSummary,
136
144
  LambdaStepMetadata,
137
145
  LineageGroupSummary,
138
146
  LineageType,
@@ -145,22 +153,28 @@ import {
145
153
  MonitoringJobDefinitionSummary,
146
154
  NotebookInstanceStatus,
147
155
  OptimizationJobStatus,
148
- OrderKey,
156
+ PartnerAppStatus,
149
157
  PipelineExecutionStatus,
150
158
  PipelineExperimentConfig,
151
159
  PipelineStatus,
152
160
  ProcessingJobStatus,
153
161
  ProjectStatus,
162
+ RecommendationJobStatus,
163
+ RecommendationStepType,
164
+ ReservedCapacityInstanceType,
165
+ ReservedCapacitySummary,
166
+ SageMakerResourceName,
154
167
  ScheduleStatus,
155
168
  SecondaryStatus,
156
169
  SecondaryStatusTransition,
157
170
  SelectiveExecutionConfig,
158
171
  ServiceCatalogProvisionedProductDetails,
159
- SortBy,
160
172
  SortOrder,
161
173
  SpaceStatus,
162
174
  SubscribedWorkteam,
163
175
  TrackingServerStatus,
176
+ TrainingJobStatus,
177
+ TrainingPlanStatus,
164
178
  TransformJobStatus,
165
179
  TrialComponentMetricSummary,
166
180
  TrialComponentSource,
@@ -171,6 +185,397 @@ import {
171
185
  Workforce,
172
186
  Workteam,
173
187
  } from "./models_3";
188
+ export interface ListDeviceFleetsResponse {
189
+ DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
190
+ NextToken?: string | undefined;
191
+ }
192
+ export interface ListDevicesRequest {
193
+ NextToken?: string | undefined;
194
+ MaxResults?: number | undefined;
195
+ LatestHeartbeatAfter?: Date | undefined;
196
+ ModelName?: string | undefined;
197
+ DeviceFleetName?: string | undefined;
198
+ }
199
+ export interface ListDevicesResponse {
200
+ DeviceSummaries: DeviceSummary[] | undefined;
201
+ NextToken?: string | undefined;
202
+ }
203
+ export interface ListDomainsRequest {
204
+ NextToken?: string | undefined;
205
+ MaxResults?: number | undefined;
206
+ }
207
+ export interface ListDomainsResponse {
208
+ Domains?: DomainDetails[] | undefined;
209
+ NextToken?: string | undefined;
210
+ }
211
+ export declare const ListEdgeDeploymentPlansSortBy: {
212
+ readonly CreationTime: "CREATION_TIME";
213
+ readonly DeviceFleetName: "DEVICE_FLEET_NAME";
214
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
215
+ readonly Name: "NAME";
216
+ };
217
+ export type ListEdgeDeploymentPlansSortBy =
218
+ (typeof ListEdgeDeploymentPlansSortBy)[keyof typeof ListEdgeDeploymentPlansSortBy];
219
+ export interface ListEdgeDeploymentPlansRequest {
220
+ NextToken?: string | undefined;
221
+ MaxResults?: number | undefined;
222
+ CreationTimeAfter?: Date | undefined;
223
+ CreationTimeBefore?: Date | undefined;
224
+ LastModifiedTimeAfter?: Date | undefined;
225
+ LastModifiedTimeBefore?: Date | undefined;
226
+ NameContains?: string | undefined;
227
+ DeviceFleetNameContains?: string | undefined;
228
+ SortBy?: ListEdgeDeploymentPlansSortBy | undefined;
229
+ SortOrder?: SortOrder | undefined;
230
+ }
231
+ export interface ListEdgeDeploymentPlansResponse {
232
+ EdgeDeploymentPlanSummaries: EdgeDeploymentPlanSummary[] | undefined;
233
+ NextToken?: string | undefined;
234
+ }
235
+ export declare const ListEdgePackagingJobsSortBy: {
236
+ readonly CreationTime: "CREATION_TIME";
237
+ readonly EdgePackagingJobStatus: "STATUS";
238
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
239
+ readonly ModelName: "MODEL_NAME";
240
+ readonly Name: "NAME";
241
+ };
242
+ export type ListEdgePackagingJobsSortBy =
243
+ (typeof ListEdgePackagingJobsSortBy)[keyof typeof ListEdgePackagingJobsSortBy];
244
+ export interface ListEdgePackagingJobsRequest {
245
+ NextToken?: string | undefined;
246
+ MaxResults?: number | undefined;
247
+ CreationTimeAfter?: Date | undefined;
248
+ CreationTimeBefore?: Date | undefined;
249
+ LastModifiedTimeAfter?: Date | undefined;
250
+ LastModifiedTimeBefore?: Date | undefined;
251
+ NameContains?: string | undefined;
252
+ ModelNameContains?: string | undefined;
253
+ StatusEquals?: EdgePackagingJobStatus | undefined;
254
+ SortBy?: ListEdgePackagingJobsSortBy | undefined;
255
+ SortOrder?: SortOrder | undefined;
256
+ }
257
+ export interface ListEdgePackagingJobsResponse {
258
+ EdgePackagingJobSummaries: EdgePackagingJobSummary[] | undefined;
259
+ NextToken?: string | undefined;
260
+ }
261
+ export declare const OrderKey: {
262
+ readonly Ascending: "Ascending";
263
+ readonly Descending: "Descending";
264
+ };
265
+ export type OrderKey = (typeof OrderKey)[keyof typeof OrderKey];
266
+ export interface ListEndpointConfigsInput {
267
+ SortBy?: EndpointConfigSortKey | undefined;
268
+ SortOrder?: OrderKey | undefined;
269
+ NextToken?: string | undefined;
270
+ MaxResults?: number | undefined;
271
+ NameContains?: string | undefined;
272
+ CreationTimeBefore?: Date | undefined;
273
+ CreationTimeAfter?: Date | undefined;
274
+ }
275
+ export interface ListEndpointConfigsOutput {
276
+ EndpointConfigs: EndpointConfigSummary[] | undefined;
277
+ NextToken?: string | undefined;
278
+ }
279
+ export interface ListEndpointsInput {
280
+ SortBy?: EndpointSortKey | undefined;
281
+ SortOrder?: OrderKey | undefined;
282
+ NextToken?: string | undefined;
283
+ MaxResults?: number | undefined;
284
+ NameContains?: string | undefined;
285
+ CreationTimeBefore?: Date | undefined;
286
+ CreationTimeAfter?: Date | undefined;
287
+ LastModifiedTimeBefore?: Date | undefined;
288
+ LastModifiedTimeAfter?: Date | undefined;
289
+ StatusEquals?: EndpointStatus | undefined;
290
+ }
291
+ export interface ListEndpointsOutput {
292
+ Endpoints: EndpointSummary[] | undefined;
293
+ NextToken?: string | undefined;
294
+ }
295
+ export declare const SortExperimentsBy: {
296
+ readonly CREATION_TIME: "CreationTime";
297
+ readonly NAME: "Name";
298
+ };
299
+ export type SortExperimentsBy =
300
+ (typeof SortExperimentsBy)[keyof typeof SortExperimentsBy];
301
+ export interface ListExperimentsRequest {
302
+ CreatedAfter?: Date | undefined;
303
+ CreatedBefore?: Date | undefined;
304
+ SortBy?: SortExperimentsBy | undefined;
305
+ SortOrder?: SortOrder | undefined;
306
+ NextToken?: string | undefined;
307
+ MaxResults?: number | undefined;
308
+ }
309
+ export interface ListExperimentsResponse {
310
+ ExperimentSummaries?: ExperimentSummary[] | undefined;
311
+ NextToken?: string | undefined;
312
+ }
313
+ export interface ListFeatureGroupsRequest {
314
+ NameContains?: string | undefined;
315
+ FeatureGroupStatusEquals?: FeatureGroupStatus | undefined;
316
+ OfflineStoreStatusEquals?: OfflineStoreStatusValue | undefined;
317
+ CreationTimeAfter?: Date | undefined;
318
+ CreationTimeBefore?: Date | undefined;
319
+ SortOrder?: FeatureGroupSortOrder | undefined;
320
+ SortBy?: FeatureGroupSortBy | undefined;
321
+ MaxResults?: number | undefined;
322
+ NextToken?: string | undefined;
323
+ }
324
+ export interface ListFeatureGroupsResponse {
325
+ FeatureGroupSummaries: FeatureGroupSummary[] | undefined;
326
+ NextToken?: string | undefined;
327
+ }
328
+ export interface ListFlowDefinitionsRequest {
329
+ CreationTimeAfter?: Date | undefined;
330
+ CreationTimeBefore?: Date | undefined;
331
+ SortOrder?: SortOrder | undefined;
332
+ NextToken?: string | undefined;
333
+ MaxResults?: number | undefined;
334
+ }
335
+ export interface ListFlowDefinitionsResponse {
336
+ FlowDefinitionSummaries: FlowDefinitionSummary[] | undefined;
337
+ NextToken?: string | undefined;
338
+ }
339
+ export interface ListHubContentsRequest {
340
+ HubName: string | undefined;
341
+ HubContentType: HubContentType | undefined;
342
+ NameContains?: string | undefined;
343
+ MaxSchemaVersion?: string | undefined;
344
+ CreationTimeBefore?: Date | undefined;
345
+ CreationTimeAfter?: Date | undefined;
346
+ SortBy?: HubContentSortBy | undefined;
347
+ SortOrder?: SortOrder | undefined;
348
+ MaxResults?: number | undefined;
349
+ NextToken?: string | undefined;
350
+ }
351
+ export interface ListHubContentsResponse {
352
+ HubContentSummaries: HubContentInfo[] | undefined;
353
+ NextToken?: string | undefined;
354
+ }
355
+ export interface ListHubContentVersionsRequest {
356
+ HubName: string | undefined;
357
+ HubContentType: HubContentType | undefined;
358
+ HubContentName: string | undefined;
359
+ MinVersion?: string | undefined;
360
+ MaxSchemaVersion?: string | undefined;
361
+ CreationTimeBefore?: Date | undefined;
362
+ CreationTimeAfter?: Date | undefined;
363
+ SortBy?: HubContentSortBy | undefined;
364
+ SortOrder?: SortOrder | undefined;
365
+ MaxResults?: number | undefined;
366
+ NextToken?: string | undefined;
367
+ }
368
+ export interface ListHubContentVersionsResponse {
369
+ HubContentSummaries: HubContentInfo[] | undefined;
370
+ NextToken?: string | undefined;
371
+ }
372
+ export interface ListHubsRequest {
373
+ NameContains?: string | undefined;
374
+ CreationTimeBefore?: Date | undefined;
375
+ CreationTimeAfter?: Date | undefined;
376
+ LastModifiedTimeBefore?: Date | undefined;
377
+ LastModifiedTimeAfter?: Date | undefined;
378
+ SortBy?: HubSortBy | undefined;
379
+ SortOrder?: SortOrder | undefined;
380
+ MaxResults?: number | undefined;
381
+ NextToken?: string | undefined;
382
+ }
383
+ export interface ListHubsResponse {
384
+ HubSummaries: HubInfo[] | undefined;
385
+ NextToken?: string | undefined;
386
+ }
387
+ export interface ListHumanTaskUisRequest {
388
+ CreationTimeAfter?: Date | undefined;
389
+ CreationTimeBefore?: Date | undefined;
390
+ SortOrder?: SortOrder | undefined;
391
+ NextToken?: string | undefined;
392
+ MaxResults?: number | undefined;
393
+ }
394
+ export interface ListHumanTaskUisResponse {
395
+ HumanTaskUiSummaries: HumanTaskUiSummary[] | undefined;
396
+ NextToken?: string | undefined;
397
+ }
398
+ export interface ListHyperParameterTuningJobsRequest {
399
+ NextToken?: string | undefined;
400
+ MaxResults?: number | undefined;
401
+ SortBy?: HyperParameterTuningJobSortByOptions | undefined;
402
+ SortOrder?: SortOrder | undefined;
403
+ NameContains?: string | undefined;
404
+ CreationTimeAfter?: Date | undefined;
405
+ CreationTimeBefore?: Date | undefined;
406
+ LastModifiedTimeAfter?: Date | undefined;
407
+ LastModifiedTimeBefore?: Date | undefined;
408
+ StatusEquals?: HyperParameterTuningJobStatus | undefined;
409
+ }
410
+ export interface ListHyperParameterTuningJobsResponse {
411
+ HyperParameterTuningJobSummaries:
412
+ | HyperParameterTuningJobSummary[]
413
+ | undefined;
414
+ NextToken?: string | undefined;
415
+ }
416
+ export interface ListImagesRequest {
417
+ CreationTimeAfter?: Date | undefined;
418
+ CreationTimeBefore?: Date | undefined;
419
+ LastModifiedTimeAfter?: Date | undefined;
420
+ LastModifiedTimeBefore?: Date | undefined;
421
+ MaxResults?: number | undefined;
422
+ NameContains?: string | undefined;
423
+ NextToken?: string | undefined;
424
+ SortBy?: ImageSortBy | undefined;
425
+ SortOrder?: ImageSortOrder | undefined;
426
+ }
427
+ export interface ListImagesResponse {
428
+ Images?: Image[] | undefined;
429
+ NextToken?: string | undefined;
430
+ }
431
+ export interface ListImageVersionsRequest {
432
+ CreationTimeAfter?: Date | undefined;
433
+ CreationTimeBefore?: Date | undefined;
434
+ ImageName: string | undefined;
435
+ LastModifiedTimeAfter?: Date | undefined;
436
+ LastModifiedTimeBefore?: Date | undefined;
437
+ MaxResults?: number | undefined;
438
+ NextToken?: string | undefined;
439
+ SortBy?: ImageVersionSortBy | undefined;
440
+ SortOrder?: ImageVersionSortOrder | undefined;
441
+ }
442
+ export interface ListImageVersionsResponse {
443
+ ImageVersions?: ImageVersion[] | undefined;
444
+ NextToken?: string | undefined;
445
+ }
446
+ export interface ListInferenceComponentsInput {
447
+ SortBy?: InferenceComponentSortKey | undefined;
448
+ SortOrder?: OrderKey | undefined;
449
+ NextToken?: string | undefined;
450
+ MaxResults?: number | undefined;
451
+ NameContains?: string | undefined;
452
+ CreationTimeBefore?: Date | undefined;
453
+ CreationTimeAfter?: Date | undefined;
454
+ LastModifiedTimeBefore?: Date | undefined;
455
+ LastModifiedTimeAfter?: Date | undefined;
456
+ StatusEquals?: InferenceComponentStatus | undefined;
457
+ EndpointNameEquals?: string | undefined;
458
+ VariantNameEquals?: string | undefined;
459
+ }
460
+ export interface ListInferenceComponentsOutput {
461
+ InferenceComponents: InferenceComponentSummary[] | undefined;
462
+ NextToken?: string | undefined;
463
+ }
464
+ export declare const SortInferenceExperimentsBy: {
465
+ readonly CREATION_TIME: "CreationTime";
466
+ readonly NAME: "Name";
467
+ readonly STATUS: "Status";
468
+ };
469
+ export type SortInferenceExperimentsBy =
470
+ (typeof SortInferenceExperimentsBy)[keyof typeof SortInferenceExperimentsBy];
471
+ export interface ListInferenceExperimentsRequest {
472
+ NameContains?: string | undefined;
473
+ Type?: InferenceExperimentType | undefined;
474
+ StatusEquals?: InferenceExperimentStatus | undefined;
475
+ CreationTimeAfter?: Date | undefined;
476
+ CreationTimeBefore?: Date | undefined;
477
+ LastModifiedTimeAfter?: Date | undefined;
478
+ LastModifiedTimeBefore?: Date | undefined;
479
+ SortBy?: SortInferenceExperimentsBy | undefined;
480
+ SortOrder?: SortOrder | undefined;
481
+ NextToken?: string | undefined;
482
+ MaxResults?: number | undefined;
483
+ }
484
+ export interface ListInferenceExperimentsResponse {
485
+ InferenceExperiments?: InferenceExperimentSummary[] | undefined;
486
+ NextToken?: string | undefined;
487
+ }
488
+ export declare const ListInferenceRecommendationsJobsSortBy: {
489
+ readonly CREATION_TIME: "CreationTime";
490
+ readonly NAME: "Name";
491
+ readonly STATUS: "Status";
492
+ };
493
+ export type ListInferenceRecommendationsJobsSortBy =
494
+ (typeof ListInferenceRecommendationsJobsSortBy)[keyof typeof ListInferenceRecommendationsJobsSortBy];
495
+ export interface ListInferenceRecommendationsJobsRequest {
496
+ CreationTimeAfter?: Date | undefined;
497
+ CreationTimeBefore?: Date | undefined;
498
+ LastModifiedTimeAfter?: Date | undefined;
499
+ LastModifiedTimeBefore?: Date | undefined;
500
+ NameContains?: string | undefined;
501
+ StatusEquals?: RecommendationJobStatus | undefined;
502
+ SortBy?: ListInferenceRecommendationsJobsSortBy | undefined;
503
+ SortOrder?: SortOrder | undefined;
504
+ NextToken?: string | undefined;
505
+ MaxResults?: number | undefined;
506
+ ModelNameEquals?: string | undefined;
507
+ ModelPackageVersionArnEquals?: string | undefined;
508
+ }
509
+ export interface ListInferenceRecommendationsJobsResponse {
510
+ InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
511
+ NextToken?: string | undefined;
512
+ }
513
+ export interface ListInferenceRecommendationsJobStepsRequest {
514
+ JobName: string | undefined;
515
+ Status?: RecommendationJobStatus | undefined;
516
+ StepType?: RecommendationStepType | undefined;
517
+ MaxResults?: number | undefined;
518
+ NextToken?: string | undefined;
519
+ }
520
+ export interface ListInferenceRecommendationsJobStepsResponse {
521
+ Steps?: InferenceRecommendationsJobStep[] | undefined;
522
+ NextToken?: string | undefined;
523
+ }
524
+ export declare const SortBy: {
525
+ readonly CREATION_TIME: "CreationTime";
526
+ readonly NAME: "Name";
527
+ readonly STATUS: "Status";
528
+ };
529
+ export type SortBy = (typeof SortBy)[keyof typeof SortBy];
530
+ export interface ListLabelingJobsRequest {
531
+ CreationTimeAfter?: Date | undefined;
532
+ CreationTimeBefore?: Date | undefined;
533
+ LastModifiedTimeAfter?: Date | undefined;
534
+ LastModifiedTimeBefore?: Date | undefined;
535
+ MaxResults?: number | undefined;
536
+ NextToken?: string | undefined;
537
+ NameContains?: string | undefined;
538
+ SortBy?: SortBy | undefined;
539
+ SortOrder?: SortOrder | undefined;
540
+ StatusEquals?: LabelingJobStatus | undefined;
541
+ }
542
+ export interface ListLabelingJobsResponse {
543
+ LabelingJobSummaryList?: LabelingJobSummary[] | undefined;
544
+ NextToken?: string | undefined;
545
+ }
546
+ export declare const ListLabelingJobsForWorkteamSortByOptions: {
547
+ readonly CREATION_TIME: "CreationTime";
548
+ };
549
+ export type ListLabelingJobsForWorkteamSortByOptions =
550
+ (typeof ListLabelingJobsForWorkteamSortByOptions)[keyof typeof ListLabelingJobsForWorkteamSortByOptions];
551
+ export interface ListLabelingJobsForWorkteamRequest {
552
+ WorkteamArn: string | undefined;
553
+ MaxResults?: number | undefined;
554
+ NextToken?: string | undefined;
555
+ CreationTimeAfter?: Date | undefined;
556
+ CreationTimeBefore?: Date | undefined;
557
+ JobReferenceCodeContains?: string | undefined;
558
+ SortBy?: ListLabelingJobsForWorkteamSortByOptions | undefined;
559
+ SortOrder?: SortOrder | undefined;
560
+ }
561
+ export interface ListLabelingJobsForWorkteamResponse {
562
+ LabelingJobSummaryList: LabelingJobForWorkteamSummary[] | undefined;
563
+ NextToken?: string | undefined;
564
+ }
565
+ export declare const SortLineageGroupsBy: {
566
+ readonly CREATION_TIME: "CreationTime";
567
+ readonly NAME: "Name";
568
+ };
569
+ export type SortLineageGroupsBy =
570
+ (typeof SortLineageGroupsBy)[keyof typeof SortLineageGroupsBy];
571
+ export interface ListLineageGroupsRequest {
572
+ CreatedAfter?: Date | undefined;
573
+ CreatedBefore?: Date | undefined;
574
+ SortBy?: SortLineageGroupsBy | undefined;
575
+ SortOrder?: SortOrder | undefined;
576
+ NextToken?: string | undefined;
577
+ MaxResults?: number | undefined;
578
+ }
174
579
  export interface ListLineageGroupsResponse {
175
580
  LineageGroupSummaries?: LineageGroupSummary[] | undefined;
176
581
  NextToken?: string | undefined;
@@ -701,6 +1106,21 @@ export interface ListOptimizationJobsResponse {
701
1106
  OptimizationJobSummaries: OptimizationJobSummary[] | undefined;
702
1107
  NextToken?: string | undefined;
703
1108
  }
1109
+ export interface ListPartnerAppsRequest {
1110
+ MaxResults?: number | undefined;
1111
+ NextToken?: string | undefined;
1112
+ }
1113
+ export interface PartnerAppSummary {
1114
+ Arn?: string | undefined;
1115
+ Name?: string | undefined;
1116
+ Type?: PartnerAppType | undefined;
1117
+ Status?: PartnerAppStatus | undefined;
1118
+ CreationTime?: Date | undefined;
1119
+ }
1120
+ export interface ListPartnerAppsResponse {
1121
+ Summaries?: PartnerAppSummary[] | undefined;
1122
+ NextToken?: string | undefined;
1123
+ }
704
1124
  export declare const SortPipelineExecutionsBy: {
705
1125
  readonly CREATION_TIME: "CreationTime";
706
1126
  readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
@@ -1050,6 +1470,7 @@ export interface ListTrainingJobsRequest {
1050
1470
  SortBy?: SortBy | undefined;
1051
1471
  SortOrder?: SortOrder | undefined;
1052
1472
  WarmPoolStatusEquals?: WarmPoolResourceStatus | undefined;
1473
+ TrainingPlanArnEquals?: string | undefined;
1053
1474
  }
1054
1475
  export interface TrainingJobSummary {
1055
1476
  TrainingJobName: string | undefined;
@@ -1060,6 +1481,7 @@ export interface TrainingJobSummary {
1060
1481
  TrainingJobStatus: TrainingJobStatus | undefined;
1061
1482
  SecondaryStatus?: SecondaryStatus | undefined;
1062
1483
  WarmPoolStatus?: WarmPoolStatus | undefined;
1484
+ TrainingPlanArn?: string | undefined;
1063
1485
  }
1064
1486
  export interface ListTrainingJobsResponse {
1065
1487
  TrainingJobSummaries: TrainingJobSummary[] | undefined;
@@ -1085,6 +1507,58 @@ export interface ListTrainingJobsForHyperParameterTuningJobResponse {
1085
1507
  TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
1086
1508
  NextToken?: string | undefined;
1087
1509
  }
1510
+ export declare const TrainingPlanFilterName: {
1511
+ readonly STATUS: "Status";
1512
+ };
1513
+ export type TrainingPlanFilterName =
1514
+ (typeof TrainingPlanFilterName)[keyof typeof TrainingPlanFilterName];
1515
+ export interface TrainingPlanFilter {
1516
+ Name: TrainingPlanFilterName | undefined;
1517
+ Value: string | undefined;
1518
+ }
1519
+ export declare const TrainingPlanSortBy: {
1520
+ readonly NAME: "TrainingPlanName";
1521
+ readonly START_TIME: "StartTime";
1522
+ readonly STATUS: "Status";
1523
+ };
1524
+ export type TrainingPlanSortBy =
1525
+ (typeof TrainingPlanSortBy)[keyof typeof TrainingPlanSortBy];
1526
+ export declare const TrainingPlanSortOrder: {
1527
+ readonly ASCENDING: "Ascending";
1528
+ readonly DESCENDING: "Descending";
1529
+ };
1530
+ export type TrainingPlanSortOrder =
1531
+ (typeof TrainingPlanSortOrder)[keyof typeof TrainingPlanSortOrder];
1532
+ export interface ListTrainingPlansRequest {
1533
+ NextToken?: string | undefined;
1534
+ MaxResults?: number | undefined;
1535
+ StartTimeAfter?: Date | undefined;
1536
+ StartTimeBefore?: Date | undefined;
1537
+ SortBy?: TrainingPlanSortBy | undefined;
1538
+ SortOrder?: TrainingPlanSortOrder | undefined;
1539
+ Filters?: TrainingPlanFilter[] | undefined;
1540
+ }
1541
+ export interface TrainingPlanSummary {
1542
+ TrainingPlanArn: string | undefined;
1543
+ TrainingPlanName: string | undefined;
1544
+ Status: TrainingPlanStatus | undefined;
1545
+ StatusMessage?: string | undefined;
1546
+ DurationHours?: number | undefined;
1547
+ DurationMinutes?: number | undefined;
1548
+ StartTime?: Date | undefined;
1549
+ EndTime?: Date | undefined;
1550
+ UpfrontFee?: string | undefined;
1551
+ CurrencyCode?: string | undefined;
1552
+ TotalInstanceCount?: number | undefined;
1553
+ AvailableInstanceCount?: number | undefined;
1554
+ InUseInstanceCount?: number | undefined;
1555
+ TargetResources?: SageMakerResourceName[] | undefined;
1556
+ ReservedCapacitySummaries?: ReservedCapacitySummary[] | undefined;
1557
+ }
1558
+ export interface ListTrainingPlansResponse {
1559
+ NextToken?: string | undefined;
1560
+ TrainingPlanSummaries: TrainingPlanSummary[] | undefined;
1561
+ }
1088
1562
  export interface ListTransformJobsRequest {
1089
1563
  CreationTimeAfter?: Date | undefined;
1090
1564
  CreationTimeBefore?: Date | undefined;
@@ -1526,6 +2000,15 @@ export interface RenderUiTemplateResponse {
1526
2000
  RenderedContent: string | undefined;
1527
2001
  Errors: RenderingError[] | undefined;
1528
2002
  }
2003
+ export interface ReservedCapacityOffering {
2004
+ InstanceType: ReservedCapacityInstanceType | undefined;
2005
+ InstanceCount: number | undefined;
2006
+ AvailabilityZone?: string | undefined;
2007
+ DurationHours?: number | undefined;
2008
+ DurationMinutes?: number | undefined;
2009
+ StartTime?: Date | undefined;
2010
+ EndTime?: Date | undefined;
2011
+ }
1529
2012
  export interface ResourceConfigForUpdate {
1530
2013
  KeepAlivePeriodInSeconds: number | undefined;
1531
2014
  }
@@ -1658,6 +2141,28 @@ export interface SearchResponse {
1658
2141
  Results?: SearchRecord[] | undefined;
1659
2142
  NextToken?: string | undefined;
1660
2143
  }
2144
+ export interface SearchTrainingPlanOfferingsRequest {
2145
+ InstanceType: ReservedCapacityInstanceType | undefined;
2146
+ InstanceCount: number | undefined;
2147
+ StartTimeAfter?: Date | undefined;
2148
+ EndTimeBefore?: Date | undefined;
2149
+ DurationHours?: number | undefined;
2150
+ TargetResources: SageMakerResourceName[] | undefined;
2151
+ }
2152
+ export interface TrainingPlanOffering {
2153
+ TrainingPlanOfferingId: string | undefined;
2154
+ TargetResources: SageMakerResourceName[] | undefined;
2155
+ RequestedStartTimeAfter?: Date | undefined;
2156
+ RequestedEndTimeBefore?: Date | undefined;
2157
+ DurationHours?: number | undefined;
2158
+ DurationMinutes?: number | undefined;
2159
+ UpfrontFee?: string | undefined;
2160
+ CurrencyCode?: string | undefined;
2161
+ ReservedCapacityOfferings?: ReservedCapacityOffering[] | undefined;
2162
+ }
2163
+ export interface SearchTrainingPlanOfferingsResponse {
2164
+ TrainingPlanOfferings: TrainingPlanOffering[] | undefined;
2165
+ }
1661
2166
  export interface SendPipelineExecutionStepFailureRequest {
1662
2167
  CallbackToken: string | undefined;
1663
2168
  FailureReason?: string | undefined;
@@ -1778,362 +2283,9 @@ export interface UpdateActionRequest {
1778
2283
  Properties?: Record<string, string> | undefined;
1779
2284
  PropertiesToRemove?: string[] | undefined;
1780
2285
  }
1781
- export interface UpdateActionResponse {
1782
- ActionArn?: string | undefined;
1783
- }
1784
- export interface UpdateAppImageConfigRequest {
1785
- AppImageConfigName: string | undefined;
1786
- KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
1787
- JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
1788
- CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
1789
- }
1790
- export interface UpdateAppImageConfigResponse {
1791
- AppImageConfigArn?: string | undefined;
1792
- }
1793
- export interface UpdateArtifactRequest {
1794
- ArtifactArn: string | undefined;
1795
- ArtifactName?: string | undefined;
1796
- Properties?: Record<string, string> | undefined;
1797
- PropertiesToRemove?: string[] | undefined;
1798
- }
1799
- export interface UpdateArtifactResponse {
1800
- ArtifactArn?: string | undefined;
1801
- }
1802
- export interface UpdateClusterRequest {
1803
- ClusterName: string | undefined;
1804
- InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
1805
- NodeRecovery?: ClusterNodeRecovery | undefined;
1806
- }
1807
- export interface UpdateClusterResponse {
1808
- ClusterArn: string | undefined;
1809
- }
1810
- export interface UpdateClusterSoftwareRequest {
1811
- ClusterName: string | undefined;
1812
- }
1813
- export interface UpdateClusterSoftwareResponse {
1814
- ClusterArn: string | undefined;
1815
- }
1816
- export interface UpdateCodeRepositoryInput {
1817
- CodeRepositoryName: string | undefined;
1818
- GitConfig?: GitConfigForUpdate | undefined;
1819
- }
1820
- export interface UpdateCodeRepositoryOutput {
1821
- CodeRepositoryArn: string | undefined;
1822
- }
1823
- export interface UpdateContextRequest {
1824
- ContextName: string | undefined;
1825
- Description?: string | undefined;
1826
- Properties?: Record<string, string> | undefined;
1827
- PropertiesToRemove?: string[] | undefined;
1828
- }
1829
- export interface UpdateContextResponse {
1830
- ContextArn?: string | undefined;
1831
- }
1832
- export interface UpdateDeviceFleetRequest {
1833
- DeviceFleetName: string | undefined;
1834
- RoleArn?: string | undefined;
1835
- Description?: string | undefined;
1836
- OutputConfig: EdgeOutputConfig | undefined;
1837
- EnableIotRoleAlias?: boolean | undefined;
1838
- }
1839
- export interface UpdateDevicesRequest {
1840
- DeviceFleetName: string | undefined;
1841
- Devices: Device[] | undefined;
1842
- }
1843
- export interface UpdateDomainRequest {
1844
- DomainId: string | undefined;
1845
- DefaultUserSettings?: UserSettings | undefined;
1846
- DomainSettingsForUpdate?: DomainSettingsForUpdate | undefined;
1847
- AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
1848
- DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
1849
- SubnetIds?: string[] | undefined;
1850
- AppNetworkAccessType?: AppNetworkAccessType | undefined;
1851
- TagPropagation?: TagPropagation | undefined;
1852
- }
1853
- export interface UpdateDomainResponse {
1854
- DomainArn?: string | undefined;
1855
- }
1856
- export declare const VariantPropertyType: {
1857
- readonly DataCaptureConfig: "DataCaptureConfig";
1858
- readonly DesiredInstanceCount: "DesiredInstanceCount";
1859
- readonly DesiredWeight: "DesiredWeight";
1860
- };
1861
- export type VariantPropertyType =
1862
- (typeof VariantPropertyType)[keyof typeof VariantPropertyType];
1863
- export interface VariantProperty {
1864
- VariantPropertyType: VariantPropertyType | undefined;
1865
- }
1866
- export interface UpdateEndpointInput {
1867
- EndpointName: string | undefined;
1868
- EndpointConfigName: string | undefined;
1869
- RetainAllVariantProperties?: boolean | undefined;
1870
- ExcludeRetainedVariantProperties?: VariantProperty[] | undefined;
1871
- DeploymentConfig?: DeploymentConfig | undefined;
1872
- RetainDeploymentConfig?: boolean | undefined;
1873
- }
1874
- export interface UpdateEndpointOutput {
1875
- EndpointArn: string | undefined;
1876
- }
1877
- export interface UpdateEndpointWeightsAndCapacitiesInput {
1878
- EndpointName: string | undefined;
1879
- DesiredWeightsAndCapacities: DesiredWeightAndCapacity[] | undefined;
1880
- }
1881
- export interface UpdateEndpointWeightsAndCapacitiesOutput {
1882
- EndpointArn: string | undefined;
1883
- }
1884
- export interface UpdateExperimentRequest {
1885
- ExperimentName: string | undefined;
1886
- DisplayName?: string | undefined;
1887
- Description?: string | undefined;
1888
- }
1889
- export interface UpdateExperimentResponse {
1890
- ExperimentArn?: string | undefined;
1891
- }
1892
- export interface ThroughputConfigUpdate {
1893
- ThroughputMode?: ThroughputMode | undefined;
1894
- ProvisionedReadCapacityUnits?: number | undefined;
1895
- ProvisionedWriteCapacityUnits?: number | undefined;
1896
- }
1897
- export interface UpdateFeatureGroupRequest {
1898
- FeatureGroupName: string | undefined;
1899
- FeatureAdditions?: FeatureDefinition[] | undefined;
1900
- OnlineStoreConfig?: OnlineStoreConfigUpdate | undefined;
1901
- ThroughputConfig?: ThroughputConfigUpdate | undefined;
1902
- }
1903
- export interface UpdateFeatureGroupResponse {
1904
- FeatureGroupArn: string | undefined;
1905
- }
1906
- export interface UpdateFeatureMetadataRequest {
1907
- FeatureGroupName: string | undefined;
1908
- FeatureName: string | undefined;
1909
- Description?: string | undefined;
1910
- ParameterAdditions?: FeatureParameter[] | undefined;
1911
- ParameterRemovals?: string[] | undefined;
1912
- }
1913
- export interface UpdateHubRequest {
1914
- HubName: string | undefined;
1915
- HubDescription?: string | undefined;
1916
- HubDisplayName?: string | undefined;
1917
- HubSearchKeywords?: string[] | undefined;
1918
- }
1919
- export interface UpdateHubResponse {
1920
- HubArn: string | undefined;
1921
- }
1922
- export interface UpdateImageRequest {
1923
- DeleteProperties?: string[] | undefined;
1924
- Description?: string | undefined;
1925
- DisplayName?: string | undefined;
1926
- ImageName: string | undefined;
1927
- RoleArn?: string | undefined;
1928
- }
1929
- export interface UpdateImageResponse {
1930
- ImageArn?: string | undefined;
1931
- }
1932
- export interface UpdateImageVersionRequest {
1933
- ImageName: string | undefined;
1934
- Alias?: string | undefined;
1935
- Version?: number | undefined;
1936
- AliasesToAdd?: string[] | undefined;
1937
- AliasesToDelete?: string[] | undefined;
1938
- VendorGuidance?: VendorGuidance | undefined;
1939
- JobType?: JobType | undefined;
1940
- MLFramework?: string | undefined;
1941
- ProgrammingLang?: string | undefined;
1942
- Processor?: Processor | undefined;
1943
- Horovod?: boolean | undefined;
1944
- ReleaseNotes?: string | undefined;
1945
- }
1946
- export interface UpdateImageVersionResponse {
1947
- ImageVersionArn?: string | undefined;
1948
- }
1949
- export interface UpdateInferenceComponentInput {
1950
- InferenceComponentName: string | undefined;
1951
- Specification?: InferenceComponentSpecification | undefined;
1952
- RuntimeConfig?: InferenceComponentRuntimeConfig | undefined;
1953
- }
1954
- export interface UpdateInferenceComponentOutput {
1955
- InferenceComponentArn: string | undefined;
1956
- }
1957
- export interface UpdateInferenceComponentRuntimeConfigInput {
1958
- InferenceComponentName: string | undefined;
1959
- DesiredRuntimeConfig: InferenceComponentRuntimeConfig | undefined;
1960
- }
1961
- export interface UpdateInferenceComponentRuntimeConfigOutput {
1962
- InferenceComponentArn: string | undefined;
1963
- }
1964
- export interface UpdateInferenceExperimentRequest {
1965
- Name: string | undefined;
1966
- Schedule?: InferenceExperimentSchedule | undefined;
1967
- Description?: string | undefined;
1968
- ModelVariants?: ModelVariantConfig[] | undefined;
1969
- DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
1970
- ShadowModeConfig?: ShadowModeConfig | undefined;
1971
- }
1972
- export interface UpdateInferenceExperimentResponse {
1973
- InferenceExperimentArn: string | undefined;
1974
- }
1975
- export interface UpdateMlflowTrackingServerRequest {
1976
- TrackingServerName: string | undefined;
1977
- ArtifactStoreUri?: string | undefined;
1978
- TrackingServerSize?: TrackingServerSize | undefined;
1979
- AutomaticModelRegistration?: boolean | undefined;
1980
- WeeklyMaintenanceWindowStart?: string | undefined;
1981
- }
1982
- export interface UpdateMlflowTrackingServerResponse {
1983
- TrackingServerArn?: string | undefined;
1984
- }
1985
- export interface UpdateModelCardRequest {
1986
- ModelCardName: string | undefined;
1987
- Content?: string | undefined;
1988
- ModelCardStatus?: ModelCardStatus | undefined;
1989
- }
1990
- export interface UpdateModelCardResponse {
1991
- ModelCardArn: string | undefined;
1992
- }
1993
- export interface UpdateModelPackageInput {
1994
- ModelPackageArn: string | undefined;
1995
- ModelApprovalStatus?: ModelApprovalStatus | undefined;
1996
- ApprovalDescription?: string | undefined;
1997
- CustomerMetadataProperties?: Record<string, string> | undefined;
1998
- CustomerMetadataPropertiesToRemove?: string[] | undefined;
1999
- AdditionalInferenceSpecificationsToAdd?:
2000
- | AdditionalInferenceSpecificationDefinition[]
2001
- | undefined;
2002
- InferenceSpecification?: InferenceSpecification | undefined;
2003
- SourceUri?: string | undefined;
2004
- ModelCard?: ModelPackageModelCard | undefined;
2005
- ModelLifeCycle?: ModelLifeCycle | undefined;
2006
- ClientToken?: string | undefined;
2007
- }
2008
- export interface UpdateModelPackageOutput {
2009
- ModelPackageArn: string | undefined;
2010
- }
2011
- export interface UpdateMonitoringAlertRequest {
2012
- MonitoringScheduleName: string | undefined;
2013
- MonitoringAlertName: string | undefined;
2014
- DatapointsToAlert: number | undefined;
2015
- EvaluationPeriod: number | undefined;
2016
- }
2017
- export interface UpdateMonitoringAlertResponse {
2018
- MonitoringScheduleArn: string | undefined;
2019
- MonitoringAlertName?: string | undefined;
2020
- }
2021
- export interface UpdateMonitoringScheduleRequest {
2022
- MonitoringScheduleName: string | undefined;
2023
- MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
2024
- }
2025
- export interface UpdateMonitoringScheduleResponse {
2026
- MonitoringScheduleArn: string | undefined;
2027
- }
2028
- export interface UpdateNotebookInstanceInput {
2029
- NotebookInstanceName: string | undefined;
2030
- InstanceType?: _InstanceType | undefined;
2031
- RoleArn?: string | undefined;
2032
- LifecycleConfigName?: string | undefined;
2033
- DisassociateLifecycleConfig?: boolean | undefined;
2034
- VolumeSizeInGB?: number | undefined;
2035
- DefaultCodeRepository?: string | undefined;
2036
- AdditionalCodeRepositories?: string[] | undefined;
2037
- AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
2038
- DisassociateAcceleratorTypes?: boolean | undefined;
2039
- DisassociateDefaultCodeRepository?: boolean | undefined;
2040
- DisassociateAdditionalCodeRepositories?: boolean | undefined;
2041
- RootAccess?: RootAccess | undefined;
2042
- InstanceMetadataServiceConfiguration?:
2043
- | InstanceMetadataServiceConfiguration
2044
- | undefined;
2045
- }
2046
- export interface UpdateNotebookInstanceOutput {}
2047
- export interface UpdateNotebookInstanceLifecycleConfigInput {
2048
- NotebookInstanceLifecycleConfigName: string | undefined;
2049
- OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
2050
- OnStart?: NotebookInstanceLifecycleHook[] | undefined;
2051
- }
2052
- export interface UpdateNotebookInstanceLifecycleConfigOutput {}
2053
- export interface UpdatePipelineRequest {
2054
- PipelineName: string | undefined;
2055
- PipelineDisplayName?: string | undefined;
2056
- PipelineDefinition?: string | undefined;
2057
- PipelineDefinitionS3Location?: PipelineDefinitionS3Location | undefined;
2058
- PipelineDescription?: string | undefined;
2059
- RoleArn?: string | undefined;
2060
- ParallelismConfiguration?: ParallelismConfiguration | undefined;
2061
- }
2062
- export interface UpdatePipelineResponse {
2063
- PipelineArn?: string | undefined;
2064
- }
2065
- export interface UpdatePipelineExecutionRequest {
2066
- PipelineExecutionArn: string | undefined;
2067
- PipelineExecutionDescription?: string | undefined;
2068
- PipelineExecutionDisplayName?: string | undefined;
2069
- ParallelismConfiguration?: ParallelismConfiguration | undefined;
2070
- }
2071
- export interface UpdatePipelineExecutionResponse {
2072
- PipelineExecutionArn?: string | undefined;
2073
- }
2074
- export interface ServiceCatalogProvisioningUpdateDetails {
2075
- ProvisioningArtifactId?: string | undefined;
2076
- ProvisioningParameters?: ProvisioningParameter[] | undefined;
2077
- }
2078
- export interface UpdateProjectInput {
2079
- ProjectName: string | undefined;
2080
- ProjectDescription?: string | undefined;
2081
- ServiceCatalogProvisioningUpdateDetails?:
2082
- | ServiceCatalogProvisioningUpdateDetails
2083
- | undefined;
2084
- Tags?: Tag[] | undefined;
2085
- }
2086
- export interface UpdateProjectOutput {
2087
- ProjectArn: string | undefined;
2088
- }
2089
- export interface UpdateSpaceRequest {
2090
- DomainId: string | undefined;
2091
- SpaceName: string | undefined;
2092
- SpaceSettings?: SpaceSettings | undefined;
2093
- SpaceDisplayName?: string | undefined;
2094
- }
2095
- export interface UpdateSpaceResponse {
2096
- SpaceArn?: string | undefined;
2097
- }
2098
- export interface UpdateTrainingJobRequest {
2099
- TrainingJobName: string | undefined;
2100
- ProfilerConfig?: ProfilerConfigForUpdate | undefined;
2101
- ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
2102
- ResourceConfig?: ResourceConfigForUpdate | undefined;
2103
- RemoteDebugConfig?: RemoteDebugConfigForUpdate | undefined;
2104
- }
2105
- export interface UpdateTrainingJobResponse {
2106
- TrainingJobArn: string | undefined;
2107
- }
2108
- export interface UpdateTrialRequest {
2109
- TrialName: string | undefined;
2110
- DisplayName?: string | undefined;
2111
- }
2112
- export interface UpdateTrialResponse {
2113
- TrialArn?: string | undefined;
2114
- }
2115
- export interface UpdateTrialComponentRequest {
2116
- TrialComponentName: string | undefined;
2117
- DisplayName?: string | undefined;
2118
- Status?: TrialComponentStatus | undefined;
2119
- StartTime?: Date | undefined;
2120
- EndTime?: Date | undefined;
2121
- Parameters?: Record<string, TrialComponentParameterValue> | undefined;
2122
- ParametersToRemove?: string[] | undefined;
2123
- InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
2124
- InputArtifactsToRemove?: string[] | undefined;
2125
- OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
2126
- OutputArtifactsToRemove?: string[] | undefined;
2127
- }
2128
2286
  export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
2129
2287
  export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
2130
2288
  export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
2131
2289
  export declare const SearchResponseFilterSensitiveLog: (
2132
2290
  obj: SearchResponse
2133
2291
  ) => any;
2134
- export declare const UpdateModelCardRequestFilterSensitiveLog: (
2135
- obj: UpdateModelCardRequest
2136
- ) => any;
2137
- export declare const UpdateModelPackageInputFilterSensitiveLog: (
2138
- obj: UpdateModelPackageInput
2139
- ) => any;