mypy-boto3-sagemaker 1.35.61__py3-none-any.whl → 1.35.75__py3-none-any.whl
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.
Potentially problematic release.
This version of mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +18 -0
- mypy_boto3_sagemaker/__init__.pyi +18 -0
- mypy_boto3_sagemaker/__main__.py +7 -5
- mypy_boto3_sagemaker/client.py +978 -553
- mypy_boto3_sagemaker/client.pyi +978 -553
- mypy_boto3_sagemaker/literals.py +118 -0
- mypy_boto3_sagemaker/literals.pyi +118 -0
- mypy_boto3_sagemaker/paginator.py +233 -148
- mypy_boto3_sagemaker/paginator.pyi +225 -148
- mypy_boto3_sagemaker/type_defs.py +662 -31
- mypy_boto3_sagemaker/type_defs.pyi +591 -28
- mypy_boto3_sagemaker/version.py +3 -1
- mypy_boto3_sagemaker/waiter.py +28 -26
- mypy_boto3_sagemaker/waiter.pyi +28 -26
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/METADATA +72 -18
- mypy_boto3_sagemaker-1.35.75.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.61.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.61.dist-info → mypy_boto3_sagemaker-1.35.75.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ActionStatusType = "Completed"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -22,6 +24,7 @@ else:
|
|
|
22
24
|
|
|
23
25
|
__all__ = (
|
|
24
26
|
"ActionStatusType",
|
|
27
|
+
"ActivationStateType",
|
|
25
28
|
"AdditionalS3DataSourceDataTypeType",
|
|
26
29
|
"AggregationTransformationValueType",
|
|
27
30
|
"AlgorithmSortByType",
|
|
@@ -105,6 +108,7 @@ __all__ = (
|
|
|
105
108
|
"ExecutionRoleIdentityConfigType",
|
|
106
109
|
"ExecutionStatusType",
|
|
107
110
|
"FailureHandlingPolicyType",
|
|
111
|
+
"FairShareType",
|
|
108
112
|
"FeatureGroupSortByType",
|
|
109
113
|
"FeatureGroupSortOrderType",
|
|
110
114
|
"FeatureGroupStatusType",
|
|
@@ -148,6 +152,7 @@ __all__ = (
|
|
|
148
152
|
"InferenceExperimentStopDesiredStateType",
|
|
149
153
|
"InferenceExperimentTypeType",
|
|
150
154
|
"InputModeType",
|
|
155
|
+
"InstanceGroupStatusType",
|
|
151
156
|
"InstanceTypeType",
|
|
152
157
|
"IsTrackingServerActiveType",
|
|
153
158
|
"JobTypeType",
|
|
@@ -166,10 +171,12 @@ __all__ = (
|
|
|
166
171
|
"ListAutoMLJobsPaginatorName",
|
|
167
172
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
168
173
|
"ListClusterNodesPaginatorName",
|
|
174
|
+
"ListClusterSchedulerConfigsPaginatorName",
|
|
169
175
|
"ListClustersPaginatorName",
|
|
170
176
|
"ListCodeRepositoriesPaginatorName",
|
|
171
177
|
"ListCompilationJobsPaginatorName",
|
|
172
178
|
"ListCompilationJobsSortByType",
|
|
179
|
+
"ListComputeQuotasPaginatorName",
|
|
173
180
|
"ListContextsPaginatorName",
|
|
174
181
|
"ListDataQualityJobDefinitionsPaginatorName",
|
|
175
182
|
"ListDeviceFleetsPaginatorName",
|
|
@@ -217,6 +224,7 @@ __all__ = (
|
|
|
217
224
|
"ListNotebookInstancesPaginatorName",
|
|
218
225
|
"ListOptimizationJobsPaginatorName",
|
|
219
226
|
"ListOptimizationJobsSortByType",
|
|
227
|
+
"ListPartnerAppsPaginatorName",
|
|
220
228
|
"ListPipelineExecutionStepsPaginatorName",
|
|
221
229
|
"ListPipelineExecutionsPaginatorName",
|
|
222
230
|
"ListPipelineParametersForExecutionPaginatorName",
|
|
@@ -230,6 +238,7 @@ __all__ = (
|
|
|
230
238
|
"ListTagsPaginatorName",
|
|
231
239
|
"ListTrainingJobsForHyperParameterTuningJobPaginatorName",
|
|
232
240
|
"ListTrainingJobsPaginatorName",
|
|
241
|
+
"ListTrainingPlansPaginatorName",
|
|
233
242
|
"ListTransformJobsPaginatorName",
|
|
234
243
|
"ListTrialComponentsPaginatorName",
|
|
235
244
|
"ListTrialsPaginatorName",
|
|
@@ -288,8 +297,12 @@ __all__ = (
|
|
|
288
297
|
"OutputCompressionTypeType",
|
|
289
298
|
"PaginatorName",
|
|
290
299
|
"ParameterTypeType",
|
|
300
|
+
"PartnerAppAuthTypeType",
|
|
301
|
+
"PartnerAppStatusType",
|
|
302
|
+
"PartnerAppTypeType",
|
|
291
303
|
"PipelineExecutionStatusType",
|
|
292
304
|
"PipelineStatusType",
|
|
305
|
+
"PreemptTeamTasksType",
|
|
293
306
|
"ProblemTypeType",
|
|
294
307
|
"ProcessingInstanceTypeType",
|
|
295
308
|
"ProcessingJobCompletedOrStoppedWaiterName",
|
|
@@ -319,9 +332,12 @@ __all__ = (
|
|
|
319
332
|
"RedshiftResultFormatType",
|
|
320
333
|
"RegionName",
|
|
321
334
|
"RepositoryAccessModeType",
|
|
335
|
+
"ReservedCapacityInstanceTypeType",
|
|
336
|
+
"ReservedCapacityStatusType",
|
|
322
337
|
"ResourceCatalogSortByType",
|
|
323
338
|
"ResourceCatalogSortOrderType",
|
|
324
339
|
"ResourceServiceName",
|
|
340
|
+
"ResourceSharingStrategyType",
|
|
325
341
|
"ResourceTypeType",
|
|
326
342
|
"RetentionTypeType",
|
|
327
343
|
"RootAccessType",
|
|
@@ -331,9 +347,11 @@ __all__ = (
|
|
|
331
347
|
"S3DataTypeType",
|
|
332
348
|
"S3ModelDataTypeType",
|
|
333
349
|
"SageMakerImageNameType",
|
|
350
|
+
"SageMakerResourceNameType",
|
|
334
351
|
"SageMakerServiceName",
|
|
335
352
|
"SagemakerServicecatalogStatusType",
|
|
336
353
|
"ScheduleStatusType",
|
|
354
|
+
"SchedulerResourceStatusType",
|
|
337
355
|
"SearchPaginatorName",
|
|
338
356
|
"SearchSortOrderType",
|
|
339
357
|
"SecondaryStatusType",
|
|
@@ -344,6 +362,7 @@ __all__ = (
|
|
|
344
362
|
"SortArtifactsByType",
|
|
345
363
|
"SortAssociationsByType",
|
|
346
364
|
"SortByType",
|
|
365
|
+
"SortClusterSchedulerConfigByType",
|
|
347
366
|
"SortContextsByType",
|
|
348
367
|
"SortExperimentsByType",
|
|
349
368
|
"SortInferenceExperimentsByType",
|
|
@@ -351,6 +370,7 @@ __all__ = (
|
|
|
351
370
|
"SortOrderType",
|
|
352
371
|
"SortPipelineExecutionsByType",
|
|
353
372
|
"SortPipelinesByType",
|
|
373
|
+
"SortQuotaByType",
|
|
354
374
|
"SortTrackingServerByType",
|
|
355
375
|
"SortTrialComponentsByType",
|
|
356
376
|
"SortTrialsByType",
|
|
@@ -381,6 +401,10 @@ __all__ = (
|
|
|
381
401
|
"TrainingJobEarlyStoppingTypeType",
|
|
382
402
|
"TrainingJobSortByOptionsType",
|
|
383
403
|
"TrainingJobStatusType",
|
|
404
|
+
"TrainingPlanFilterNameType",
|
|
405
|
+
"TrainingPlanSortByType",
|
|
406
|
+
"TrainingPlanSortOrderType",
|
|
407
|
+
"TrainingPlanStatusType",
|
|
384
408
|
"TrainingRepositoryAccessModeType",
|
|
385
409
|
"TransformInstanceTypeType",
|
|
386
410
|
"TransformJobCompletedOrStoppedWaiterName",
|
|
@@ -399,6 +423,7 @@ __all__ = (
|
|
|
399
423
|
|
|
400
424
|
|
|
401
425
|
ActionStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping", "Unknown"]
|
|
426
|
+
ActivationStateType = Literal["Disabled", "Enabled"]
|
|
402
427
|
AdditionalS3DataSourceDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
403
428
|
AggregationTransformationValueType = Literal["avg", "first", "max", "min", "sum"]
|
|
404
429
|
AlgorithmSortByType = Literal["CreationTime", "Name"]
|
|
@@ -826,12 +851,14 @@ ClusterInstanceTypeType = Literal[
|
|
|
826
851
|
"ml.p4de.24xlarge",
|
|
827
852
|
"ml.p5.48xlarge",
|
|
828
853
|
"ml.p5e.48xlarge",
|
|
854
|
+
"ml.p5en.48xlarge",
|
|
829
855
|
"ml.t3.2xlarge",
|
|
830
856
|
"ml.t3.large",
|
|
831
857
|
"ml.t3.medium",
|
|
832
858
|
"ml.t3.xlarge",
|
|
833
859
|
"ml.trn1.32xlarge",
|
|
834
860
|
"ml.trn1n.32xlarge",
|
|
861
|
+
"ml.trn2.48xlarge",
|
|
835
862
|
]
|
|
836
863
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
837
864
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
@@ -890,6 +917,7 @@ ExecutionStatusType = Literal[
|
|
|
890
917
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
891
918
|
]
|
|
892
919
|
FailureHandlingPolicyType = Literal["DO_NOTHING", "ROLLBACK_ON_FAILURE"]
|
|
920
|
+
FairShareType = Literal["Disabled", "Enabled"]
|
|
893
921
|
FeatureGroupSortByType = Literal["CreationTime", "FeatureGroupStatus", "Name", "OfflineStoreStatus"]
|
|
894
922
|
FeatureGroupSortOrderType = Literal["Ascending", "Descending"]
|
|
895
923
|
FeatureGroupStatusType = Literal["CreateFailed", "Created", "Creating", "DeleteFailed", "Deleting"]
|
|
@@ -954,6 +982,9 @@ InferenceExperimentStatusType = Literal[
|
|
|
954
982
|
InferenceExperimentStopDesiredStateType = Literal["Cancelled", "Completed"]
|
|
955
983
|
InferenceExperimentTypeType = Literal["ShadowMode"]
|
|
956
984
|
InputModeType = Literal["File", "Pipe"]
|
|
985
|
+
InstanceGroupStatusType = Literal[
|
|
986
|
+
"Creating", "Degraded", "Deleting", "Failed", "InService", "SystemUpdating", "Updating"
|
|
987
|
+
]
|
|
957
988
|
InstanceTypeType = Literal[
|
|
958
989
|
"ml.c4.2xlarge",
|
|
959
990
|
"ml.c4.4xlarge",
|
|
@@ -1147,10 +1178,12 @@ ListAssociationsPaginatorName = Literal["list_associations"]
|
|
|
1147
1178
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1148
1179
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1149
1180
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1181
|
+
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1150
1182
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
1151
1183
|
ListCodeRepositoriesPaginatorName = Literal["list_code_repositories"]
|
|
1152
1184
|
ListCompilationJobsPaginatorName = Literal["list_compilation_jobs"]
|
|
1153
1185
|
ListCompilationJobsSortByType = Literal["CreationTime", "Name", "Status"]
|
|
1186
|
+
ListComputeQuotasPaginatorName = Literal["list_compute_quotas"]
|
|
1154
1187
|
ListContextsPaginatorName = Literal["list_contexts"]
|
|
1155
1188
|
ListDataQualityJobDefinitionsPaginatorName = Literal["list_data_quality_job_definitions"]
|
|
1156
1189
|
ListDeviceFleetsPaginatorName = Literal["list_device_fleets"]
|
|
@@ -1208,6 +1241,7 @@ ListNotebookInstanceLifecycleConfigsPaginatorName = Literal[
|
|
|
1208
1241
|
ListNotebookInstancesPaginatorName = Literal["list_notebook_instances"]
|
|
1209
1242
|
ListOptimizationJobsPaginatorName = Literal["list_optimization_jobs"]
|
|
1210
1243
|
ListOptimizationJobsSortByType = Literal["CreationTime", "Name", "Status"]
|
|
1244
|
+
ListPartnerAppsPaginatorName = Literal["list_partner_apps"]
|
|
1211
1245
|
ListPipelineExecutionStepsPaginatorName = Literal["list_pipeline_execution_steps"]
|
|
1212
1246
|
ListPipelineExecutionsPaginatorName = Literal["list_pipeline_executions"]
|
|
1213
1247
|
ListPipelineParametersForExecutionPaginatorName = Literal["list_pipeline_parameters_for_execution"]
|
|
@@ -1223,6 +1257,7 @@ ListTrainingJobsForHyperParameterTuningJobPaginatorName = Literal[
|
|
|
1223
1257
|
"list_training_jobs_for_hyper_parameter_tuning_job"
|
|
1224
1258
|
]
|
|
1225
1259
|
ListTrainingJobsPaginatorName = Literal["list_training_jobs"]
|
|
1260
|
+
ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
1226
1261
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1227
1262
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1228
1263
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
@@ -1235,14 +1270,19 @@ ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
|
|
|
1235
1270
|
MetricSetSourceType = Literal["Test", "Train", "Validation"]
|
|
1236
1271
|
MlToolsType = Literal[
|
|
1237
1272
|
"AutoMl",
|
|
1273
|
+
"Comet",
|
|
1238
1274
|
"DataWrangler",
|
|
1275
|
+
"DeepchecksLLMEvaluation",
|
|
1239
1276
|
"EmrClusters",
|
|
1240
1277
|
"Endpoints",
|
|
1241
1278
|
"Experiments",
|
|
1242
1279
|
"FeatureStore",
|
|
1280
|
+
"Fiddler",
|
|
1281
|
+
"HyperPodClusters",
|
|
1243
1282
|
"InferenceOptimization",
|
|
1244
1283
|
"InferenceRecommender",
|
|
1245
1284
|
"JumpStart",
|
|
1285
|
+
"LakeraGuard",
|
|
1246
1286
|
"ModelEvaluation",
|
|
1247
1287
|
"Models",
|
|
1248
1288
|
"PerformanceEvaluation",
|
|
@@ -1356,8 +1396,14 @@ OptimizationJobStatusType = Literal[
|
|
|
1356
1396
|
OrderKeyType = Literal["Ascending", "Descending"]
|
|
1357
1397
|
OutputCompressionTypeType = Literal["GZIP", "NONE"]
|
|
1358
1398
|
ParameterTypeType = Literal["Categorical", "Continuous", "FreeText", "Integer"]
|
|
1399
|
+
PartnerAppAuthTypeType = Literal["IAM"]
|
|
1400
|
+
PartnerAppStatusType = Literal[
|
|
1401
|
+
"Available", "Creating", "Deleted", "Deleting", "Failed", "UpdateFailed", "Updating"
|
|
1402
|
+
]
|
|
1403
|
+
PartnerAppTypeType = Literal["comet", "deepchecks-llm-evaluation", "fiddler", "lakera-guard"]
|
|
1359
1404
|
PipelineExecutionStatusType = Literal["Executing", "Failed", "Stopped", "Stopping", "Succeeded"]
|
|
1360
1405
|
PipelineStatusType = Literal["Active", "Deleting"]
|
|
1406
|
+
PreemptTeamTasksType = Literal["LowerPriority", "Never"]
|
|
1361
1407
|
ProblemTypeType = Literal["BinaryClassification", "MulticlassClassification", "Regression"]
|
|
1362
1408
|
ProcessingInstanceTypeType = Literal[
|
|
1363
1409
|
"ml.c4.2xlarge",
|
|
@@ -1525,6 +1571,14 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1525
1571
|
"ml.g6.4xlarge",
|
|
1526
1572
|
"ml.g6.8xlarge",
|
|
1527
1573
|
"ml.g6.xlarge",
|
|
1574
|
+
"ml.g6e.12xlarge",
|
|
1575
|
+
"ml.g6e.16xlarge",
|
|
1576
|
+
"ml.g6e.24xlarge",
|
|
1577
|
+
"ml.g6e.2xlarge",
|
|
1578
|
+
"ml.g6e.48xlarge",
|
|
1579
|
+
"ml.g6e.4xlarge",
|
|
1580
|
+
"ml.g6e.8xlarge",
|
|
1581
|
+
"ml.g6e.xlarge",
|
|
1528
1582
|
"ml.inf1.24xlarge",
|
|
1529
1583
|
"ml.inf1.2xlarge",
|
|
1530
1584
|
"ml.inf1.6xlarge",
|
|
@@ -1564,6 +1618,15 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1564
1618
|
"ml.m6gd.8xlarge",
|
|
1565
1619
|
"ml.m6gd.large",
|
|
1566
1620
|
"ml.m6gd.xlarge",
|
|
1621
|
+
"ml.m6i.12xlarge",
|
|
1622
|
+
"ml.m6i.16xlarge",
|
|
1623
|
+
"ml.m6i.24xlarge",
|
|
1624
|
+
"ml.m6i.2xlarge",
|
|
1625
|
+
"ml.m6i.32xlarge",
|
|
1626
|
+
"ml.m6i.4xlarge",
|
|
1627
|
+
"ml.m6i.8xlarge",
|
|
1628
|
+
"ml.m6i.large",
|
|
1629
|
+
"ml.m6i.xlarge",
|
|
1567
1630
|
"ml.m7i.12xlarge",
|
|
1568
1631
|
"ml.m7i.16xlarge",
|
|
1569
1632
|
"ml.m7i.24xlarge",
|
|
@@ -1582,6 +1645,7 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1582
1645
|
"ml.p4d.24xlarge",
|
|
1583
1646
|
"ml.p4de.24xlarge",
|
|
1584
1647
|
"ml.p5.48xlarge",
|
|
1648
|
+
"ml.p5e.48xlarge",
|
|
1585
1649
|
"ml.r5.12xlarge",
|
|
1586
1650
|
"ml.r5.24xlarge",
|
|
1587
1651
|
"ml.r5.2xlarge",
|
|
@@ -1608,6 +1672,15 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1608
1672
|
"ml.r6gd.8xlarge",
|
|
1609
1673
|
"ml.r6gd.large",
|
|
1610
1674
|
"ml.r6gd.xlarge",
|
|
1675
|
+
"ml.r6i.12xlarge",
|
|
1676
|
+
"ml.r6i.16xlarge",
|
|
1677
|
+
"ml.r6i.24xlarge",
|
|
1678
|
+
"ml.r6i.2xlarge",
|
|
1679
|
+
"ml.r6i.32xlarge",
|
|
1680
|
+
"ml.r6i.4xlarge",
|
|
1681
|
+
"ml.r6i.8xlarge",
|
|
1682
|
+
"ml.r6i.large",
|
|
1683
|
+
"ml.r6i.xlarge",
|
|
1611
1684
|
"ml.r7i.12xlarge",
|
|
1612
1685
|
"ml.r7i.16xlarge",
|
|
1613
1686
|
"ml.r7i.24xlarge",
|
|
@@ -1624,6 +1697,7 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1624
1697
|
"ml.trn1.2xlarge",
|
|
1625
1698
|
"ml.trn1.32xlarge",
|
|
1626
1699
|
"ml.trn1n.32xlarge",
|
|
1700
|
+
"ml.trn2.48xlarge",
|
|
1627
1701
|
]
|
|
1628
1702
|
ProfilingStatusType = Literal["Disabled", "Enabled"]
|
|
1629
1703
|
ProjectSortByType = Literal["CreationTime", "Name"]
|
|
@@ -1653,8 +1727,13 @@ RecordWrapperType = Literal["None", "RecordIO"]
|
|
|
1653
1727
|
RedshiftResultCompressionTypeType = Literal["BZIP2", "GZIP", "None", "SNAPPY", "ZSTD"]
|
|
1654
1728
|
RedshiftResultFormatType = Literal["CSV", "PARQUET"]
|
|
1655
1729
|
RepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1730
|
+
ReservedCapacityInstanceTypeType = Literal[
|
|
1731
|
+
"ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.48xlarge"
|
|
1732
|
+
]
|
|
1733
|
+
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1656
1734
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1657
1735
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1736
|
+
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
1658
1737
|
ResourceTypeType = Literal[
|
|
1659
1738
|
"Endpoint",
|
|
1660
1739
|
"Experiment",
|
|
@@ -1684,8 +1763,23 @@ S3DataDistributionType = Literal["FullyReplicated", "ShardedByS3Key"]
|
|
|
1684
1763
|
S3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
1685
1764
|
S3ModelDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
1686
1765
|
SageMakerImageNameType = Literal["sagemaker_distribution"]
|
|
1766
|
+
SageMakerResourceNameType = Literal["hyperpod-cluster", "training-job"]
|
|
1687
1767
|
SagemakerServicecatalogStatusType = Literal["Disabled", "Enabled"]
|
|
1688
1768
|
ScheduleStatusType = Literal["Failed", "Pending", "Scheduled", "Stopped"]
|
|
1769
|
+
SchedulerResourceStatusType = Literal[
|
|
1770
|
+
"CreateFailed",
|
|
1771
|
+
"CreateRollbackFailed",
|
|
1772
|
+
"Created",
|
|
1773
|
+
"Creating",
|
|
1774
|
+
"DeleteFailed",
|
|
1775
|
+
"DeleteRollbackFailed",
|
|
1776
|
+
"Deleted",
|
|
1777
|
+
"Deleting",
|
|
1778
|
+
"UpdateFailed",
|
|
1779
|
+
"UpdateRollbackFailed",
|
|
1780
|
+
"Updated",
|
|
1781
|
+
"Updating",
|
|
1782
|
+
]
|
|
1689
1783
|
SearchPaginatorName = Literal["search"]
|
|
1690
1784
|
SearchSortOrderType = Literal["Ascending", "Descending"]
|
|
1691
1785
|
SecondaryStatusType = Literal[
|
|
@@ -1715,6 +1809,7 @@ SortAssociationsByType = Literal[
|
|
|
1715
1809
|
"CreationTime", "DestinationArn", "DestinationType", "SourceArn", "SourceType"
|
|
1716
1810
|
]
|
|
1717
1811
|
SortByType = Literal["CreationTime", "Name", "Status"]
|
|
1812
|
+
SortClusterSchedulerConfigByType = Literal["CreationTime", "Name", "Status"]
|
|
1718
1813
|
SortContextsByType = Literal["CreationTime", "Name"]
|
|
1719
1814
|
SortExperimentsByType = Literal["CreationTime", "Name"]
|
|
1720
1815
|
SortInferenceExperimentsByType = Literal["CreationTime", "Name", "Status"]
|
|
@@ -1722,6 +1817,7 @@ SortLineageGroupsByType = Literal["CreationTime", "Name"]
|
|
|
1722
1817
|
SortOrderType = Literal["Ascending", "Descending"]
|
|
1723
1818
|
SortPipelineExecutionsByType = Literal["CreationTime", "PipelineExecutionArn"]
|
|
1724
1819
|
SortPipelinesByType = Literal["CreationTime", "Name"]
|
|
1820
|
+
SortQuotaByType = Literal["ClusterArn", "CreationTime", "Name", "Status"]
|
|
1725
1821
|
SortTrackingServerByType = Literal["CreationTime", "Name", "Status"]
|
|
1726
1822
|
SortTrialComponentsByType = Literal["CreationTime", "Name"]
|
|
1727
1823
|
SortTrialsByType = Literal["CreationTime", "Name"]
|
|
@@ -1900,6 +1996,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
1900
1996
|
"ml.p4de.24xlarge",
|
|
1901
1997
|
"ml.p5.48xlarge",
|
|
1902
1998
|
"ml.p5e.48xlarge",
|
|
1999
|
+
"ml.p5en.48xlarge",
|
|
1903
2000
|
"ml.r5.12xlarge",
|
|
1904
2001
|
"ml.r5.16xlarge",
|
|
1905
2002
|
"ml.r5.24xlarge",
|
|
@@ -1923,6 +2020,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
1923
2020
|
"ml.trn1.2xlarge",
|
|
1924
2021
|
"ml.trn1.32xlarge",
|
|
1925
2022
|
"ml.trn1n.32xlarge",
|
|
2023
|
+
"ml.trn2.48xlarge",
|
|
1926
2024
|
]
|
|
1927
2025
|
TrainingJobCompletedOrStoppedWaiterName = Literal["training_job_completed_or_stopped"]
|
|
1928
2026
|
TrainingJobEarlyStoppingTypeType = Literal["Auto", "Off"]
|
|
@@ -1930,6 +2028,10 @@ TrainingJobSortByOptionsType = Literal[
|
|
|
1930
2028
|
"CreationTime", "FinalObjectiveMetricValue", "Name", "Status"
|
|
1931
2029
|
]
|
|
1932
2030
|
TrainingJobStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping"]
|
|
2031
|
+
TrainingPlanFilterNameType = Literal["Status"]
|
|
2032
|
+
TrainingPlanSortByType = Literal["StartTime", "Status", "TrainingPlanName"]
|
|
2033
|
+
TrainingPlanSortOrderType = Literal["Ascending", "Descending"]
|
|
2034
|
+
TrainingPlanStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1933
2035
|
TrainingRepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1934
2036
|
TransformInstanceTypeType = Literal[
|
|
1935
2037
|
"ml.c4.2xlarge",
|
|
@@ -2084,9 +2186,12 @@ ServiceName = Literal[
|
|
|
2084
2186
|
"backup-gateway",
|
|
2085
2187
|
"batch",
|
|
2086
2188
|
"bcm-data-exports",
|
|
2189
|
+
"bcm-pricing-calculator",
|
|
2087
2190
|
"bedrock",
|
|
2088
2191
|
"bedrock-agent",
|
|
2089
2192
|
"bedrock-agent-runtime",
|
|
2193
|
+
"bedrock-data-automation",
|
|
2194
|
+
"bedrock-data-automation-runtime",
|
|
2090
2195
|
"bedrock-runtime",
|
|
2091
2196
|
"billing",
|
|
2092
2197
|
"billingconductor",
|
|
@@ -2137,6 +2242,7 @@ ServiceName = Literal[
|
|
|
2137
2242
|
"connect",
|
|
2138
2243
|
"connect-contact-lens",
|
|
2139
2244
|
"connectcampaigns",
|
|
2245
|
+
"connectcampaignsv2",
|
|
2140
2246
|
"connectcases",
|
|
2141
2247
|
"connectparticipant",
|
|
2142
2248
|
"controlcatalog",
|
|
@@ -2163,6 +2269,7 @@ ServiceName = Literal[
|
|
|
2163
2269
|
"drs",
|
|
2164
2270
|
"ds",
|
|
2165
2271
|
"ds-data",
|
|
2272
|
+
"dsql",
|
|
2166
2273
|
"dynamodb",
|
|
2167
2274
|
"dynamodbstreams",
|
|
2168
2275
|
"ebs",
|
|
@@ -2219,6 +2326,7 @@ ServiceName = Literal[
|
|
|
2219
2326
|
"inspector-scan",
|
|
2220
2327
|
"inspector2",
|
|
2221
2328
|
"internetmonitor",
|
|
2329
|
+
"invoicing",
|
|
2222
2330
|
"iot",
|
|
2223
2331
|
"iot-data",
|
|
2224
2332
|
"iot-jobs-data",
|
|
@@ -2305,9 +2413,13 @@ ServiceName = Literal[
|
|
|
2305
2413
|
"neptune-graph",
|
|
2306
2414
|
"neptunedata",
|
|
2307
2415
|
"network-firewall",
|
|
2416
|
+
"networkflowmonitor",
|
|
2308
2417
|
"networkmanager",
|
|
2309
2418
|
"networkmonitor",
|
|
2419
|
+
"notifications",
|
|
2420
|
+
"notificationscontacts",
|
|
2310
2421
|
"oam",
|
|
2422
|
+
"observabilityadmin",
|
|
2311
2423
|
"omics",
|
|
2312
2424
|
"opensearch",
|
|
2313
2425
|
"opensearchserverless",
|
|
@@ -2368,6 +2480,7 @@ ServiceName = Literal[
|
|
|
2368
2480
|
"s3",
|
|
2369
2481
|
"s3control",
|
|
2370
2482
|
"s3outposts",
|
|
2483
|
+
"s3tables",
|
|
2371
2484
|
"sagemaker",
|
|
2372
2485
|
"sagemaker-a2i-runtime",
|
|
2373
2486
|
"sagemaker-edge",
|
|
@@ -2380,6 +2493,7 @@ ServiceName = Literal[
|
|
|
2380
2493
|
"schemas",
|
|
2381
2494
|
"sdb",
|
|
2382
2495
|
"secretsmanager",
|
|
2496
|
+
"security-ir",
|
|
2383
2497
|
"securityhub",
|
|
2384
2498
|
"securitylake",
|
|
2385
2499
|
"serverlessrepo",
|
|
@@ -2464,9 +2578,11 @@ PaginatorName = Literal[
|
|
|
2464
2578
|
"list_auto_ml_jobs",
|
|
2465
2579
|
"list_candidates_for_auto_ml_job",
|
|
2466
2580
|
"list_cluster_nodes",
|
|
2581
|
+
"list_cluster_scheduler_configs",
|
|
2467
2582
|
"list_clusters",
|
|
2468
2583
|
"list_code_repositories",
|
|
2469
2584
|
"list_compilation_jobs",
|
|
2585
|
+
"list_compute_quotas",
|
|
2470
2586
|
"list_contexts",
|
|
2471
2587
|
"list_data_quality_job_definitions",
|
|
2472
2588
|
"list_device_fleets",
|
|
@@ -2508,6 +2624,7 @@ PaginatorName = Literal[
|
|
|
2508
2624
|
"list_notebook_instance_lifecycle_configs",
|
|
2509
2625
|
"list_notebook_instances",
|
|
2510
2626
|
"list_optimization_jobs",
|
|
2627
|
+
"list_partner_apps",
|
|
2511
2628
|
"list_pipeline_execution_steps",
|
|
2512
2629
|
"list_pipeline_executions",
|
|
2513
2630
|
"list_pipeline_parameters_for_execution",
|
|
@@ -2521,6 +2638,7 @@ PaginatorName = Literal[
|
|
|
2521
2638
|
"list_tags",
|
|
2522
2639
|
"list_training_jobs",
|
|
2523
2640
|
"list_training_jobs_for_hyper_parameter_tuning_job",
|
|
2641
|
+
"list_training_plans",
|
|
2524
2642
|
"list_transform_jobs",
|
|
2525
2643
|
"list_trial_components",
|
|
2526
2644
|
"list_trials",
|