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
|
@@ -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
|
|
@@ -21,6 +23,7 @@ else:
|
|
|
21
23
|
|
|
22
24
|
__all__ = (
|
|
23
25
|
"ActionStatusType",
|
|
26
|
+
"ActivationStateType",
|
|
24
27
|
"AdditionalS3DataSourceDataTypeType",
|
|
25
28
|
"AggregationTransformationValueType",
|
|
26
29
|
"AlgorithmSortByType",
|
|
@@ -104,6 +107,7 @@ __all__ = (
|
|
|
104
107
|
"ExecutionRoleIdentityConfigType",
|
|
105
108
|
"ExecutionStatusType",
|
|
106
109
|
"FailureHandlingPolicyType",
|
|
110
|
+
"FairShareType",
|
|
107
111
|
"FeatureGroupSortByType",
|
|
108
112
|
"FeatureGroupSortOrderType",
|
|
109
113
|
"FeatureGroupStatusType",
|
|
@@ -147,6 +151,7 @@ __all__ = (
|
|
|
147
151
|
"InferenceExperimentStopDesiredStateType",
|
|
148
152
|
"InferenceExperimentTypeType",
|
|
149
153
|
"InputModeType",
|
|
154
|
+
"InstanceGroupStatusType",
|
|
150
155
|
"InstanceTypeType",
|
|
151
156
|
"IsTrackingServerActiveType",
|
|
152
157
|
"JobTypeType",
|
|
@@ -165,10 +170,12 @@ __all__ = (
|
|
|
165
170
|
"ListAutoMLJobsPaginatorName",
|
|
166
171
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
167
172
|
"ListClusterNodesPaginatorName",
|
|
173
|
+
"ListClusterSchedulerConfigsPaginatorName",
|
|
168
174
|
"ListClustersPaginatorName",
|
|
169
175
|
"ListCodeRepositoriesPaginatorName",
|
|
170
176
|
"ListCompilationJobsPaginatorName",
|
|
171
177
|
"ListCompilationJobsSortByType",
|
|
178
|
+
"ListComputeQuotasPaginatorName",
|
|
172
179
|
"ListContextsPaginatorName",
|
|
173
180
|
"ListDataQualityJobDefinitionsPaginatorName",
|
|
174
181
|
"ListDeviceFleetsPaginatorName",
|
|
@@ -216,6 +223,7 @@ __all__ = (
|
|
|
216
223
|
"ListNotebookInstancesPaginatorName",
|
|
217
224
|
"ListOptimizationJobsPaginatorName",
|
|
218
225
|
"ListOptimizationJobsSortByType",
|
|
226
|
+
"ListPartnerAppsPaginatorName",
|
|
219
227
|
"ListPipelineExecutionStepsPaginatorName",
|
|
220
228
|
"ListPipelineExecutionsPaginatorName",
|
|
221
229
|
"ListPipelineParametersForExecutionPaginatorName",
|
|
@@ -229,6 +237,7 @@ __all__ = (
|
|
|
229
237
|
"ListTagsPaginatorName",
|
|
230
238
|
"ListTrainingJobsForHyperParameterTuningJobPaginatorName",
|
|
231
239
|
"ListTrainingJobsPaginatorName",
|
|
240
|
+
"ListTrainingPlansPaginatorName",
|
|
232
241
|
"ListTransformJobsPaginatorName",
|
|
233
242
|
"ListTrialComponentsPaginatorName",
|
|
234
243
|
"ListTrialsPaginatorName",
|
|
@@ -287,8 +296,12 @@ __all__ = (
|
|
|
287
296
|
"OutputCompressionTypeType",
|
|
288
297
|
"PaginatorName",
|
|
289
298
|
"ParameterTypeType",
|
|
299
|
+
"PartnerAppAuthTypeType",
|
|
300
|
+
"PartnerAppStatusType",
|
|
301
|
+
"PartnerAppTypeType",
|
|
290
302
|
"PipelineExecutionStatusType",
|
|
291
303
|
"PipelineStatusType",
|
|
304
|
+
"PreemptTeamTasksType",
|
|
292
305
|
"ProblemTypeType",
|
|
293
306
|
"ProcessingInstanceTypeType",
|
|
294
307
|
"ProcessingJobCompletedOrStoppedWaiterName",
|
|
@@ -318,9 +331,12 @@ __all__ = (
|
|
|
318
331
|
"RedshiftResultFormatType",
|
|
319
332
|
"RegionName",
|
|
320
333
|
"RepositoryAccessModeType",
|
|
334
|
+
"ReservedCapacityInstanceTypeType",
|
|
335
|
+
"ReservedCapacityStatusType",
|
|
321
336
|
"ResourceCatalogSortByType",
|
|
322
337
|
"ResourceCatalogSortOrderType",
|
|
323
338
|
"ResourceServiceName",
|
|
339
|
+
"ResourceSharingStrategyType",
|
|
324
340
|
"ResourceTypeType",
|
|
325
341
|
"RetentionTypeType",
|
|
326
342
|
"RootAccessType",
|
|
@@ -330,9 +346,11 @@ __all__ = (
|
|
|
330
346
|
"S3DataTypeType",
|
|
331
347
|
"S3ModelDataTypeType",
|
|
332
348
|
"SageMakerImageNameType",
|
|
349
|
+
"SageMakerResourceNameType",
|
|
333
350
|
"SageMakerServiceName",
|
|
334
351
|
"SagemakerServicecatalogStatusType",
|
|
335
352
|
"ScheduleStatusType",
|
|
353
|
+
"SchedulerResourceStatusType",
|
|
336
354
|
"SearchPaginatorName",
|
|
337
355
|
"SearchSortOrderType",
|
|
338
356
|
"SecondaryStatusType",
|
|
@@ -343,6 +361,7 @@ __all__ = (
|
|
|
343
361
|
"SortArtifactsByType",
|
|
344
362
|
"SortAssociationsByType",
|
|
345
363
|
"SortByType",
|
|
364
|
+
"SortClusterSchedulerConfigByType",
|
|
346
365
|
"SortContextsByType",
|
|
347
366
|
"SortExperimentsByType",
|
|
348
367
|
"SortInferenceExperimentsByType",
|
|
@@ -350,6 +369,7 @@ __all__ = (
|
|
|
350
369
|
"SortOrderType",
|
|
351
370
|
"SortPipelineExecutionsByType",
|
|
352
371
|
"SortPipelinesByType",
|
|
372
|
+
"SortQuotaByType",
|
|
353
373
|
"SortTrackingServerByType",
|
|
354
374
|
"SortTrialComponentsByType",
|
|
355
375
|
"SortTrialsByType",
|
|
@@ -380,6 +400,10 @@ __all__ = (
|
|
|
380
400
|
"TrainingJobEarlyStoppingTypeType",
|
|
381
401
|
"TrainingJobSortByOptionsType",
|
|
382
402
|
"TrainingJobStatusType",
|
|
403
|
+
"TrainingPlanFilterNameType",
|
|
404
|
+
"TrainingPlanSortByType",
|
|
405
|
+
"TrainingPlanSortOrderType",
|
|
406
|
+
"TrainingPlanStatusType",
|
|
383
407
|
"TrainingRepositoryAccessModeType",
|
|
384
408
|
"TransformInstanceTypeType",
|
|
385
409
|
"TransformJobCompletedOrStoppedWaiterName",
|
|
@@ -397,6 +421,7 @@ __all__ = (
|
|
|
397
421
|
)
|
|
398
422
|
|
|
399
423
|
ActionStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping", "Unknown"]
|
|
424
|
+
ActivationStateType = Literal["Disabled", "Enabled"]
|
|
400
425
|
AdditionalS3DataSourceDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
401
426
|
AggregationTransformationValueType = Literal["avg", "first", "max", "min", "sum"]
|
|
402
427
|
AlgorithmSortByType = Literal["CreationTime", "Name"]
|
|
@@ -824,12 +849,14 @@ ClusterInstanceTypeType = Literal[
|
|
|
824
849
|
"ml.p4de.24xlarge",
|
|
825
850
|
"ml.p5.48xlarge",
|
|
826
851
|
"ml.p5e.48xlarge",
|
|
852
|
+
"ml.p5en.48xlarge",
|
|
827
853
|
"ml.t3.2xlarge",
|
|
828
854
|
"ml.t3.large",
|
|
829
855
|
"ml.t3.medium",
|
|
830
856
|
"ml.t3.xlarge",
|
|
831
857
|
"ml.trn1.32xlarge",
|
|
832
858
|
"ml.trn1n.32xlarge",
|
|
859
|
+
"ml.trn2.48xlarge",
|
|
833
860
|
]
|
|
834
861
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
835
862
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
@@ -888,6 +915,7 @@ ExecutionStatusType = Literal[
|
|
|
888
915
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
889
916
|
]
|
|
890
917
|
FailureHandlingPolicyType = Literal["DO_NOTHING", "ROLLBACK_ON_FAILURE"]
|
|
918
|
+
FairShareType = Literal["Disabled", "Enabled"]
|
|
891
919
|
FeatureGroupSortByType = Literal["CreationTime", "FeatureGroupStatus", "Name", "OfflineStoreStatus"]
|
|
892
920
|
FeatureGroupSortOrderType = Literal["Ascending", "Descending"]
|
|
893
921
|
FeatureGroupStatusType = Literal["CreateFailed", "Created", "Creating", "DeleteFailed", "Deleting"]
|
|
@@ -952,6 +980,9 @@ InferenceExperimentStatusType = Literal[
|
|
|
952
980
|
InferenceExperimentStopDesiredStateType = Literal["Cancelled", "Completed"]
|
|
953
981
|
InferenceExperimentTypeType = Literal["ShadowMode"]
|
|
954
982
|
InputModeType = Literal["File", "Pipe"]
|
|
983
|
+
InstanceGroupStatusType = Literal[
|
|
984
|
+
"Creating", "Degraded", "Deleting", "Failed", "InService", "SystemUpdating", "Updating"
|
|
985
|
+
]
|
|
955
986
|
InstanceTypeType = Literal[
|
|
956
987
|
"ml.c4.2xlarge",
|
|
957
988
|
"ml.c4.4xlarge",
|
|
@@ -1145,10 +1176,12 @@ ListAssociationsPaginatorName = Literal["list_associations"]
|
|
|
1145
1176
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1146
1177
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1147
1178
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1179
|
+
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1148
1180
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
1149
1181
|
ListCodeRepositoriesPaginatorName = Literal["list_code_repositories"]
|
|
1150
1182
|
ListCompilationJobsPaginatorName = Literal["list_compilation_jobs"]
|
|
1151
1183
|
ListCompilationJobsSortByType = Literal["CreationTime", "Name", "Status"]
|
|
1184
|
+
ListComputeQuotasPaginatorName = Literal["list_compute_quotas"]
|
|
1152
1185
|
ListContextsPaginatorName = Literal["list_contexts"]
|
|
1153
1186
|
ListDataQualityJobDefinitionsPaginatorName = Literal["list_data_quality_job_definitions"]
|
|
1154
1187
|
ListDeviceFleetsPaginatorName = Literal["list_device_fleets"]
|
|
@@ -1206,6 +1239,7 @@ ListNotebookInstanceLifecycleConfigsPaginatorName = Literal[
|
|
|
1206
1239
|
ListNotebookInstancesPaginatorName = Literal["list_notebook_instances"]
|
|
1207
1240
|
ListOptimizationJobsPaginatorName = Literal["list_optimization_jobs"]
|
|
1208
1241
|
ListOptimizationJobsSortByType = Literal["CreationTime", "Name", "Status"]
|
|
1242
|
+
ListPartnerAppsPaginatorName = Literal["list_partner_apps"]
|
|
1209
1243
|
ListPipelineExecutionStepsPaginatorName = Literal["list_pipeline_execution_steps"]
|
|
1210
1244
|
ListPipelineExecutionsPaginatorName = Literal["list_pipeline_executions"]
|
|
1211
1245
|
ListPipelineParametersForExecutionPaginatorName = Literal["list_pipeline_parameters_for_execution"]
|
|
@@ -1221,6 +1255,7 @@ ListTrainingJobsForHyperParameterTuningJobPaginatorName = Literal[
|
|
|
1221
1255
|
"list_training_jobs_for_hyper_parameter_tuning_job"
|
|
1222
1256
|
]
|
|
1223
1257
|
ListTrainingJobsPaginatorName = Literal["list_training_jobs"]
|
|
1258
|
+
ListTrainingPlansPaginatorName = Literal["list_training_plans"]
|
|
1224
1259
|
ListTransformJobsPaginatorName = Literal["list_transform_jobs"]
|
|
1225
1260
|
ListTrialComponentsPaginatorName = Literal["list_trial_components"]
|
|
1226
1261
|
ListTrialsPaginatorName = Literal["list_trials"]
|
|
@@ -1233,14 +1268,19 @@ ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
|
|
|
1233
1268
|
MetricSetSourceType = Literal["Test", "Train", "Validation"]
|
|
1234
1269
|
MlToolsType = Literal[
|
|
1235
1270
|
"AutoMl",
|
|
1271
|
+
"Comet",
|
|
1236
1272
|
"DataWrangler",
|
|
1273
|
+
"DeepchecksLLMEvaluation",
|
|
1237
1274
|
"EmrClusters",
|
|
1238
1275
|
"Endpoints",
|
|
1239
1276
|
"Experiments",
|
|
1240
1277
|
"FeatureStore",
|
|
1278
|
+
"Fiddler",
|
|
1279
|
+
"HyperPodClusters",
|
|
1241
1280
|
"InferenceOptimization",
|
|
1242
1281
|
"InferenceRecommender",
|
|
1243
1282
|
"JumpStart",
|
|
1283
|
+
"LakeraGuard",
|
|
1244
1284
|
"ModelEvaluation",
|
|
1245
1285
|
"Models",
|
|
1246
1286
|
"PerformanceEvaluation",
|
|
@@ -1354,8 +1394,14 @@ OptimizationJobStatusType = Literal[
|
|
|
1354
1394
|
OrderKeyType = Literal["Ascending", "Descending"]
|
|
1355
1395
|
OutputCompressionTypeType = Literal["GZIP", "NONE"]
|
|
1356
1396
|
ParameterTypeType = Literal["Categorical", "Continuous", "FreeText", "Integer"]
|
|
1397
|
+
PartnerAppAuthTypeType = Literal["IAM"]
|
|
1398
|
+
PartnerAppStatusType = Literal[
|
|
1399
|
+
"Available", "Creating", "Deleted", "Deleting", "Failed", "UpdateFailed", "Updating"
|
|
1400
|
+
]
|
|
1401
|
+
PartnerAppTypeType = Literal["comet", "deepchecks-llm-evaluation", "fiddler", "lakera-guard"]
|
|
1357
1402
|
PipelineExecutionStatusType = Literal["Executing", "Failed", "Stopped", "Stopping", "Succeeded"]
|
|
1358
1403
|
PipelineStatusType = Literal["Active", "Deleting"]
|
|
1404
|
+
PreemptTeamTasksType = Literal["LowerPriority", "Never"]
|
|
1359
1405
|
ProblemTypeType = Literal["BinaryClassification", "MulticlassClassification", "Regression"]
|
|
1360
1406
|
ProcessingInstanceTypeType = Literal[
|
|
1361
1407
|
"ml.c4.2xlarge",
|
|
@@ -1523,6 +1569,14 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1523
1569
|
"ml.g6.4xlarge",
|
|
1524
1570
|
"ml.g6.8xlarge",
|
|
1525
1571
|
"ml.g6.xlarge",
|
|
1572
|
+
"ml.g6e.12xlarge",
|
|
1573
|
+
"ml.g6e.16xlarge",
|
|
1574
|
+
"ml.g6e.24xlarge",
|
|
1575
|
+
"ml.g6e.2xlarge",
|
|
1576
|
+
"ml.g6e.48xlarge",
|
|
1577
|
+
"ml.g6e.4xlarge",
|
|
1578
|
+
"ml.g6e.8xlarge",
|
|
1579
|
+
"ml.g6e.xlarge",
|
|
1526
1580
|
"ml.inf1.24xlarge",
|
|
1527
1581
|
"ml.inf1.2xlarge",
|
|
1528
1582
|
"ml.inf1.6xlarge",
|
|
@@ -1562,6 +1616,15 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1562
1616
|
"ml.m6gd.8xlarge",
|
|
1563
1617
|
"ml.m6gd.large",
|
|
1564
1618
|
"ml.m6gd.xlarge",
|
|
1619
|
+
"ml.m6i.12xlarge",
|
|
1620
|
+
"ml.m6i.16xlarge",
|
|
1621
|
+
"ml.m6i.24xlarge",
|
|
1622
|
+
"ml.m6i.2xlarge",
|
|
1623
|
+
"ml.m6i.32xlarge",
|
|
1624
|
+
"ml.m6i.4xlarge",
|
|
1625
|
+
"ml.m6i.8xlarge",
|
|
1626
|
+
"ml.m6i.large",
|
|
1627
|
+
"ml.m6i.xlarge",
|
|
1565
1628
|
"ml.m7i.12xlarge",
|
|
1566
1629
|
"ml.m7i.16xlarge",
|
|
1567
1630
|
"ml.m7i.24xlarge",
|
|
@@ -1580,6 +1643,7 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1580
1643
|
"ml.p4d.24xlarge",
|
|
1581
1644
|
"ml.p4de.24xlarge",
|
|
1582
1645
|
"ml.p5.48xlarge",
|
|
1646
|
+
"ml.p5e.48xlarge",
|
|
1583
1647
|
"ml.r5.12xlarge",
|
|
1584
1648
|
"ml.r5.24xlarge",
|
|
1585
1649
|
"ml.r5.2xlarge",
|
|
@@ -1606,6 +1670,15 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1606
1670
|
"ml.r6gd.8xlarge",
|
|
1607
1671
|
"ml.r6gd.large",
|
|
1608
1672
|
"ml.r6gd.xlarge",
|
|
1673
|
+
"ml.r6i.12xlarge",
|
|
1674
|
+
"ml.r6i.16xlarge",
|
|
1675
|
+
"ml.r6i.24xlarge",
|
|
1676
|
+
"ml.r6i.2xlarge",
|
|
1677
|
+
"ml.r6i.32xlarge",
|
|
1678
|
+
"ml.r6i.4xlarge",
|
|
1679
|
+
"ml.r6i.8xlarge",
|
|
1680
|
+
"ml.r6i.large",
|
|
1681
|
+
"ml.r6i.xlarge",
|
|
1609
1682
|
"ml.r7i.12xlarge",
|
|
1610
1683
|
"ml.r7i.16xlarge",
|
|
1611
1684
|
"ml.r7i.24xlarge",
|
|
@@ -1622,6 +1695,7 @@ ProductionVariantInstanceTypeType = Literal[
|
|
|
1622
1695
|
"ml.trn1.2xlarge",
|
|
1623
1696
|
"ml.trn1.32xlarge",
|
|
1624
1697
|
"ml.trn1n.32xlarge",
|
|
1698
|
+
"ml.trn2.48xlarge",
|
|
1625
1699
|
]
|
|
1626
1700
|
ProfilingStatusType = Literal["Disabled", "Enabled"]
|
|
1627
1701
|
ProjectSortByType = Literal["CreationTime", "Name"]
|
|
@@ -1651,8 +1725,13 @@ RecordWrapperType = Literal["None", "RecordIO"]
|
|
|
1651
1725
|
RedshiftResultCompressionTypeType = Literal["BZIP2", "GZIP", "None", "SNAPPY", "ZSTD"]
|
|
1652
1726
|
RedshiftResultFormatType = Literal["CSV", "PARQUET"]
|
|
1653
1727
|
RepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1728
|
+
ReservedCapacityInstanceTypeType = Literal[
|
|
1729
|
+
"ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn2.48xlarge"
|
|
1730
|
+
]
|
|
1731
|
+
ReservedCapacityStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1654
1732
|
ResourceCatalogSortByType = Literal["CreationTime"]
|
|
1655
1733
|
ResourceCatalogSortOrderType = Literal["Ascending", "Descending"]
|
|
1734
|
+
ResourceSharingStrategyType = Literal["DontLend", "Lend", "LendAndBorrow"]
|
|
1656
1735
|
ResourceTypeType = Literal[
|
|
1657
1736
|
"Endpoint",
|
|
1658
1737
|
"Experiment",
|
|
@@ -1682,8 +1761,23 @@ S3DataDistributionType = Literal["FullyReplicated", "ShardedByS3Key"]
|
|
|
1682
1761
|
S3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
1683
1762
|
S3ModelDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
1684
1763
|
SageMakerImageNameType = Literal["sagemaker_distribution"]
|
|
1764
|
+
SageMakerResourceNameType = Literal["hyperpod-cluster", "training-job"]
|
|
1685
1765
|
SagemakerServicecatalogStatusType = Literal["Disabled", "Enabled"]
|
|
1686
1766
|
ScheduleStatusType = Literal["Failed", "Pending", "Scheduled", "Stopped"]
|
|
1767
|
+
SchedulerResourceStatusType = Literal[
|
|
1768
|
+
"CreateFailed",
|
|
1769
|
+
"CreateRollbackFailed",
|
|
1770
|
+
"Created",
|
|
1771
|
+
"Creating",
|
|
1772
|
+
"DeleteFailed",
|
|
1773
|
+
"DeleteRollbackFailed",
|
|
1774
|
+
"Deleted",
|
|
1775
|
+
"Deleting",
|
|
1776
|
+
"UpdateFailed",
|
|
1777
|
+
"UpdateRollbackFailed",
|
|
1778
|
+
"Updated",
|
|
1779
|
+
"Updating",
|
|
1780
|
+
]
|
|
1687
1781
|
SearchPaginatorName = Literal["search"]
|
|
1688
1782
|
SearchSortOrderType = Literal["Ascending", "Descending"]
|
|
1689
1783
|
SecondaryStatusType = Literal[
|
|
@@ -1713,6 +1807,7 @@ SortAssociationsByType = Literal[
|
|
|
1713
1807
|
"CreationTime", "DestinationArn", "DestinationType", "SourceArn", "SourceType"
|
|
1714
1808
|
]
|
|
1715
1809
|
SortByType = Literal["CreationTime", "Name", "Status"]
|
|
1810
|
+
SortClusterSchedulerConfigByType = Literal["CreationTime", "Name", "Status"]
|
|
1716
1811
|
SortContextsByType = Literal["CreationTime", "Name"]
|
|
1717
1812
|
SortExperimentsByType = Literal["CreationTime", "Name"]
|
|
1718
1813
|
SortInferenceExperimentsByType = Literal["CreationTime", "Name", "Status"]
|
|
@@ -1720,6 +1815,7 @@ SortLineageGroupsByType = Literal["CreationTime", "Name"]
|
|
|
1720
1815
|
SortOrderType = Literal["Ascending", "Descending"]
|
|
1721
1816
|
SortPipelineExecutionsByType = Literal["CreationTime", "PipelineExecutionArn"]
|
|
1722
1817
|
SortPipelinesByType = Literal["CreationTime", "Name"]
|
|
1818
|
+
SortQuotaByType = Literal["ClusterArn", "CreationTime", "Name", "Status"]
|
|
1723
1819
|
SortTrackingServerByType = Literal["CreationTime", "Name", "Status"]
|
|
1724
1820
|
SortTrialComponentsByType = Literal["CreationTime", "Name"]
|
|
1725
1821
|
SortTrialsByType = Literal["CreationTime", "Name"]
|
|
@@ -1898,6 +1994,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
1898
1994
|
"ml.p4de.24xlarge",
|
|
1899
1995
|
"ml.p5.48xlarge",
|
|
1900
1996
|
"ml.p5e.48xlarge",
|
|
1997
|
+
"ml.p5en.48xlarge",
|
|
1901
1998
|
"ml.r5.12xlarge",
|
|
1902
1999
|
"ml.r5.16xlarge",
|
|
1903
2000
|
"ml.r5.24xlarge",
|
|
@@ -1921,6 +2018,7 @@ TrainingInstanceTypeType = Literal[
|
|
|
1921
2018
|
"ml.trn1.2xlarge",
|
|
1922
2019
|
"ml.trn1.32xlarge",
|
|
1923
2020
|
"ml.trn1n.32xlarge",
|
|
2021
|
+
"ml.trn2.48xlarge",
|
|
1924
2022
|
]
|
|
1925
2023
|
TrainingJobCompletedOrStoppedWaiterName = Literal["training_job_completed_or_stopped"]
|
|
1926
2024
|
TrainingJobEarlyStoppingTypeType = Literal["Auto", "Off"]
|
|
@@ -1928,6 +2026,10 @@ TrainingJobSortByOptionsType = Literal[
|
|
|
1928
2026
|
"CreationTime", "FinalObjectiveMetricValue", "Name", "Status"
|
|
1929
2027
|
]
|
|
1930
2028
|
TrainingJobStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping"]
|
|
2029
|
+
TrainingPlanFilterNameType = Literal["Status"]
|
|
2030
|
+
TrainingPlanSortByType = Literal["StartTime", "Status", "TrainingPlanName"]
|
|
2031
|
+
TrainingPlanSortOrderType = Literal["Ascending", "Descending"]
|
|
2032
|
+
TrainingPlanStatusType = Literal["Active", "Expired", "Failed", "Pending", "Scheduled"]
|
|
1931
2033
|
TrainingRepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1932
2034
|
TransformInstanceTypeType = Literal[
|
|
1933
2035
|
"ml.c4.2xlarge",
|
|
@@ -2082,9 +2184,12 @@ ServiceName = Literal[
|
|
|
2082
2184
|
"backup-gateway",
|
|
2083
2185
|
"batch",
|
|
2084
2186
|
"bcm-data-exports",
|
|
2187
|
+
"bcm-pricing-calculator",
|
|
2085
2188
|
"bedrock",
|
|
2086
2189
|
"bedrock-agent",
|
|
2087
2190
|
"bedrock-agent-runtime",
|
|
2191
|
+
"bedrock-data-automation",
|
|
2192
|
+
"bedrock-data-automation-runtime",
|
|
2088
2193
|
"bedrock-runtime",
|
|
2089
2194
|
"billing",
|
|
2090
2195
|
"billingconductor",
|
|
@@ -2135,6 +2240,7 @@ ServiceName = Literal[
|
|
|
2135
2240
|
"connect",
|
|
2136
2241
|
"connect-contact-lens",
|
|
2137
2242
|
"connectcampaigns",
|
|
2243
|
+
"connectcampaignsv2",
|
|
2138
2244
|
"connectcases",
|
|
2139
2245
|
"connectparticipant",
|
|
2140
2246
|
"controlcatalog",
|
|
@@ -2161,6 +2267,7 @@ ServiceName = Literal[
|
|
|
2161
2267
|
"drs",
|
|
2162
2268
|
"ds",
|
|
2163
2269
|
"ds-data",
|
|
2270
|
+
"dsql",
|
|
2164
2271
|
"dynamodb",
|
|
2165
2272
|
"dynamodbstreams",
|
|
2166
2273
|
"ebs",
|
|
@@ -2217,6 +2324,7 @@ ServiceName = Literal[
|
|
|
2217
2324
|
"inspector-scan",
|
|
2218
2325
|
"inspector2",
|
|
2219
2326
|
"internetmonitor",
|
|
2327
|
+
"invoicing",
|
|
2220
2328
|
"iot",
|
|
2221
2329
|
"iot-data",
|
|
2222
2330
|
"iot-jobs-data",
|
|
@@ -2303,9 +2411,13 @@ ServiceName = Literal[
|
|
|
2303
2411
|
"neptune-graph",
|
|
2304
2412
|
"neptunedata",
|
|
2305
2413
|
"network-firewall",
|
|
2414
|
+
"networkflowmonitor",
|
|
2306
2415
|
"networkmanager",
|
|
2307
2416
|
"networkmonitor",
|
|
2417
|
+
"notifications",
|
|
2418
|
+
"notificationscontacts",
|
|
2308
2419
|
"oam",
|
|
2420
|
+
"observabilityadmin",
|
|
2309
2421
|
"omics",
|
|
2310
2422
|
"opensearch",
|
|
2311
2423
|
"opensearchserverless",
|
|
@@ -2366,6 +2478,7 @@ ServiceName = Literal[
|
|
|
2366
2478
|
"s3",
|
|
2367
2479
|
"s3control",
|
|
2368
2480
|
"s3outposts",
|
|
2481
|
+
"s3tables",
|
|
2369
2482
|
"sagemaker",
|
|
2370
2483
|
"sagemaker-a2i-runtime",
|
|
2371
2484
|
"sagemaker-edge",
|
|
@@ -2378,6 +2491,7 @@ ServiceName = Literal[
|
|
|
2378
2491
|
"schemas",
|
|
2379
2492
|
"sdb",
|
|
2380
2493
|
"secretsmanager",
|
|
2494
|
+
"security-ir",
|
|
2381
2495
|
"securityhub",
|
|
2382
2496
|
"securitylake",
|
|
2383
2497
|
"serverlessrepo",
|
|
@@ -2462,9 +2576,11 @@ PaginatorName = Literal[
|
|
|
2462
2576
|
"list_auto_ml_jobs",
|
|
2463
2577
|
"list_candidates_for_auto_ml_job",
|
|
2464
2578
|
"list_cluster_nodes",
|
|
2579
|
+
"list_cluster_scheduler_configs",
|
|
2465
2580
|
"list_clusters",
|
|
2466
2581
|
"list_code_repositories",
|
|
2467
2582
|
"list_compilation_jobs",
|
|
2583
|
+
"list_compute_quotas",
|
|
2468
2584
|
"list_contexts",
|
|
2469
2585
|
"list_data_quality_job_definitions",
|
|
2470
2586
|
"list_device_fleets",
|
|
@@ -2506,6 +2622,7 @@ PaginatorName = Literal[
|
|
|
2506
2622
|
"list_notebook_instance_lifecycle_configs",
|
|
2507
2623
|
"list_notebook_instances",
|
|
2508
2624
|
"list_optimization_jobs",
|
|
2625
|
+
"list_partner_apps",
|
|
2509
2626
|
"list_pipeline_execution_steps",
|
|
2510
2627
|
"list_pipeline_executions",
|
|
2511
2628
|
"list_pipeline_parameters_for_execution",
|
|
@@ -2519,6 +2636,7 @@ PaginatorName = Literal[
|
|
|
2519
2636
|
"list_tags",
|
|
2520
2637
|
"list_training_jobs",
|
|
2521
2638
|
"list_training_jobs_for_hyper_parameter_tuning_job",
|
|
2639
|
+
"list_training_plans",
|
|
2522
2640
|
"list_transform_jobs",
|
|
2523
2641
|
"list_trial_components",
|
|
2524
2642
|
"list_trials",
|