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/client.py
CHANGED
|
@@ -12,6 +12,8 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: SageMakerClient = session.client("sagemaker")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2024 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
17
19
|
import sys
|
|
@@ -30,9 +32,11 @@ from .paginator import (
|
|
|
30
32
|
ListAutoMLJobsPaginator,
|
|
31
33
|
ListCandidatesForAutoMLJobPaginator,
|
|
32
34
|
ListClusterNodesPaginator,
|
|
35
|
+
ListClusterSchedulerConfigsPaginator,
|
|
33
36
|
ListClustersPaginator,
|
|
34
37
|
ListCodeRepositoriesPaginator,
|
|
35
38
|
ListCompilationJobsPaginator,
|
|
39
|
+
ListComputeQuotasPaginator,
|
|
36
40
|
ListContextsPaginator,
|
|
37
41
|
ListDataQualityJobDefinitionsPaginator,
|
|
38
42
|
ListDeviceFleetsPaginator,
|
|
@@ -74,6 +78,7 @@ from .paginator import (
|
|
|
74
78
|
ListNotebookInstanceLifecycleConfigsPaginator,
|
|
75
79
|
ListNotebookInstancesPaginator,
|
|
76
80
|
ListOptimizationJobsPaginator,
|
|
81
|
+
ListPartnerAppsPaginator,
|
|
77
82
|
ListPipelineExecutionsPaginator,
|
|
78
83
|
ListPipelineExecutionStepsPaginator,
|
|
79
84
|
ListPipelineParametersForExecutionPaginator,
|
|
@@ -87,6 +92,7 @@ from .paginator import (
|
|
|
87
92
|
ListTagsPaginator,
|
|
88
93
|
ListTrainingJobsForHyperParameterTuningJobPaginator,
|
|
89
94
|
ListTrainingJobsPaginator,
|
|
95
|
+
ListTrainingPlansPaginator,
|
|
90
96
|
ListTransformJobsPaginator,
|
|
91
97
|
ListTrialComponentsPaginator,
|
|
92
98
|
ListTrialsPaginator,
|
|
@@ -122,10 +128,14 @@ from .type_defs import (
|
|
|
122
128
|
CreateAutoMLJobV2ResponseTypeDef,
|
|
123
129
|
CreateClusterRequestRequestTypeDef,
|
|
124
130
|
CreateClusterResponseTypeDef,
|
|
131
|
+
CreateClusterSchedulerConfigRequestRequestTypeDef,
|
|
132
|
+
CreateClusterSchedulerConfigResponseTypeDef,
|
|
125
133
|
CreateCodeRepositoryInputRequestTypeDef,
|
|
126
134
|
CreateCodeRepositoryOutputTypeDef,
|
|
127
135
|
CreateCompilationJobRequestRequestTypeDef,
|
|
128
136
|
CreateCompilationJobResponseTypeDef,
|
|
137
|
+
CreateComputeQuotaRequestRequestTypeDef,
|
|
138
|
+
CreateComputeQuotaResponseTypeDef,
|
|
129
139
|
CreateContextRequestRequestTypeDef,
|
|
130
140
|
CreateContextResponseTypeDef,
|
|
131
141
|
CreateDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -193,6 +203,10 @@ from .type_defs import (
|
|
|
193
203
|
CreateNotebookInstanceOutputTypeDef,
|
|
194
204
|
CreateOptimizationJobRequestRequestTypeDef,
|
|
195
205
|
CreateOptimizationJobResponseTypeDef,
|
|
206
|
+
CreatePartnerAppPresignedUrlRequestRequestTypeDef,
|
|
207
|
+
CreatePartnerAppPresignedUrlResponseTypeDef,
|
|
208
|
+
CreatePartnerAppRequestRequestTypeDef,
|
|
209
|
+
CreatePartnerAppResponseTypeDef,
|
|
196
210
|
CreatePipelineRequestRequestTypeDef,
|
|
197
211
|
CreatePipelineResponseTypeDef,
|
|
198
212
|
CreatePresignedDomainUrlRequestRequestTypeDef,
|
|
@@ -211,6 +225,8 @@ from .type_defs import (
|
|
|
211
225
|
CreateStudioLifecycleConfigResponseTypeDef,
|
|
212
226
|
CreateTrainingJobRequestRequestTypeDef,
|
|
213
227
|
CreateTrainingJobResponseTypeDef,
|
|
228
|
+
CreateTrainingPlanRequestRequestTypeDef,
|
|
229
|
+
CreateTrainingPlanResponseTypeDef,
|
|
214
230
|
CreateTransformJobRequestRequestTypeDef,
|
|
215
231
|
CreateTransformJobResponseTypeDef,
|
|
216
232
|
CreateTrialComponentRequestRequestTypeDef,
|
|
@@ -234,8 +250,10 @@ from .type_defs import (
|
|
|
234
250
|
DeleteAssociationResponseTypeDef,
|
|
235
251
|
DeleteClusterRequestRequestTypeDef,
|
|
236
252
|
DeleteClusterResponseTypeDef,
|
|
253
|
+
DeleteClusterSchedulerConfigRequestRequestTypeDef,
|
|
237
254
|
DeleteCodeRepositoryInputRequestTypeDef,
|
|
238
255
|
DeleteCompilationJobRequestRequestTypeDef,
|
|
256
|
+
DeleteComputeQuotaRequestRequestTypeDef,
|
|
239
257
|
DeleteContextRequestRequestTypeDef,
|
|
240
258
|
DeleteContextResponseTypeDef,
|
|
241
259
|
DeleteDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -273,6 +291,8 @@ from .type_defs import (
|
|
|
273
291
|
DeleteNotebookInstanceInputRequestTypeDef,
|
|
274
292
|
DeleteNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
275
293
|
DeleteOptimizationJobRequestRequestTypeDef,
|
|
294
|
+
DeletePartnerAppRequestRequestTypeDef,
|
|
295
|
+
DeletePartnerAppResponseTypeDef,
|
|
276
296
|
DeletePipelineRequestRequestTypeDef,
|
|
277
297
|
DeletePipelineResponseTypeDef,
|
|
278
298
|
DeleteProjectInputRequestTypeDef,
|
|
@@ -306,10 +326,14 @@ from .type_defs import (
|
|
|
306
326
|
DescribeClusterNodeResponseTypeDef,
|
|
307
327
|
DescribeClusterRequestRequestTypeDef,
|
|
308
328
|
DescribeClusterResponseTypeDef,
|
|
329
|
+
DescribeClusterSchedulerConfigRequestRequestTypeDef,
|
|
330
|
+
DescribeClusterSchedulerConfigResponseTypeDef,
|
|
309
331
|
DescribeCodeRepositoryInputRequestTypeDef,
|
|
310
332
|
DescribeCodeRepositoryOutputTypeDef,
|
|
311
333
|
DescribeCompilationJobRequestRequestTypeDef,
|
|
312
334
|
DescribeCompilationJobResponseTypeDef,
|
|
335
|
+
DescribeComputeQuotaRequestRequestTypeDef,
|
|
336
|
+
DescribeComputeQuotaResponseTypeDef,
|
|
313
337
|
DescribeContextRequestRequestTypeDef,
|
|
314
338
|
DescribeContextResponseTypeDef,
|
|
315
339
|
DescribeDataQualityJobDefinitionRequestRequestTypeDef,
|
|
@@ -384,6 +408,8 @@ from .type_defs import (
|
|
|
384
408
|
DescribeNotebookInstanceOutputTypeDef,
|
|
385
409
|
DescribeOptimizationJobRequestRequestTypeDef,
|
|
386
410
|
DescribeOptimizationJobResponseTypeDef,
|
|
411
|
+
DescribePartnerAppRequestRequestTypeDef,
|
|
412
|
+
DescribePartnerAppResponseTypeDef,
|
|
387
413
|
DescribePipelineDefinitionForExecutionRequestRequestTypeDef,
|
|
388
414
|
DescribePipelineDefinitionForExecutionResponseTypeDef,
|
|
389
415
|
DescribePipelineExecutionRequestRequestTypeDef,
|
|
@@ -402,6 +428,8 @@ from .type_defs import (
|
|
|
402
428
|
DescribeSubscribedWorkteamResponseTypeDef,
|
|
403
429
|
DescribeTrainingJobRequestRequestTypeDef,
|
|
404
430
|
DescribeTrainingJobResponseTypeDef,
|
|
431
|
+
DescribeTrainingPlanRequestRequestTypeDef,
|
|
432
|
+
DescribeTrainingPlanResponseTypeDef,
|
|
405
433
|
DescribeTransformJobRequestRequestTypeDef,
|
|
406
434
|
DescribeTransformJobResponseTypeDef,
|
|
407
435
|
DescribeTrialComponentRequestRequestTypeDef,
|
|
@@ -450,12 +478,16 @@ from .type_defs import (
|
|
|
450
478
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
451
479
|
ListClusterNodesRequestRequestTypeDef,
|
|
452
480
|
ListClusterNodesResponseTypeDef,
|
|
481
|
+
ListClusterSchedulerConfigsRequestRequestTypeDef,
|
|
482
|
+
ListClusterSchedulerConfigsResponseTypeDef,
|
|
453
483
|
ListClustersRequestRequestTypeDef,
|
|
454
484
|
ListClustersResponseTypeDef,
|
|
455
485
|
ListCodeRepositoriesInputRequestTypeDef,
|
|
456
486
|
ListCodeRepositoriesOutputTypeDef,
|
|
457
487
|
ListCompilationJobsRequestRequestTypeDef,
|
|
458
488
|
ListCompilationJobsResponseTypeDef,
|
|
489
|
+
ListComputeQuotasRequestRequestTypeDef,
|
|
490
|
+
ListComputeQuotasResponseTypeDef,
|
|
459
491
|
ListContextsRequestRequestTypeDef,
|
|
460
492
|
ListContextsResponseTypeDef,
|
|
461
493
|
ListDataQualityJobDefinitionsRequestRequestTypeDef,
|
|
@@ -544,6 +576,8 @@ from .type_defs import (
|
|
|
544
576
|
ListNotebookInstancesOutputTypeDef,
|
|
545
577
|
ListOptimizationJobsRequestRequestTypeDef,
|
|
546
578
|
ListOptimizationJobsResponseTypeDef,
|
|
579
|
+
ListPartnerAppsRequestRequestTypeDef,
|
|
580
|
+
ListPartnerAppsResponseTypeDef,
|
|
547
581
|
ListPipelineExecutionsRequestRequestTypeDef,
|
|
548
582
|
ListPipelineExecutionsResponseTypeDef,
|
|
549
583
|
ListPipelineExecutionStepsRequestRequestTypeDef,
|
|
@@ -572,6 +606,8 @@ from .type_defs import (
|
|
|
572
606
|
ListTrainingJobsForHyperParameterTuningJobResponseTypeDef,
|
|
573
607
|
ListTrainingJobsRequestRequestTypeDef,
|
|
574
608
|
ListTrainingJobsResponseTypeDef,
|
|
609
|
+
ListTrainingPlansRequestRequestTypeDef,
|
|
610
|
+
ListTrainingPlansResponseTypeDef,
|
|
575
611
|
ListTransformJobsRequestRequestTypeDef,
|
|
576
612
|
ListTransformJobsResponseTypeDef,
|
|
577
613
|
ListTrialComponentsRequestRequestTypeDef,
|
|
@@ -595,6 +631,8 @@ from .type_defs import (
|
|
|
595
631
|
RetryPipelineExecutionResponseTypeDef,
|
|
596
632
|
SearchRequestRequestTypeDef,
|
|
597
633
|
SearchResponseTypeDef,
|
|
634
|
+
SearchTrainingPlanOfferingsRequestRequestTypeDef,
|
|
635
|
+
SearchTrainingPlanOfferingsResponseTypeDef,
|
|
598
636
|
SendPipelineExecutionStepFailureRequestRequestTypeDef,
|
|
599
637
|
SendPipelineExecutionStepFailureResponseTypeDef,
|
|
600
638
|
SendPipelineExecutionStepSuccessRequestRequestTypeDef,
|
|
@@ -635,10 +673,14 @@ from .type_defs import (
|
|
|
635
673
|
UpdateArtifactResponseTypeDef,
|
|
636
674
|
UpdateClusterRequestRequestTypeDef,
|
|
637
675
|
UpdateClusterResponseTypeDef,
|
|
676
|
+
UpdateClusterSchedulerConfigRequestRequestTypeDef,
|
|
677
|
+
UpdateClusterSchedulerConfigResponseTypeDef,
|
|
638
678
|
UpdateClusterSoftwareRequestRequestTypeDef,
|
|
639
679
|
UpdateClusterSoftwareResponseTypeDef,
|
|
640
680
|
UpdateCodeRepositoryInputRequestTypeDef,
|
|
641
681
|
UpdateCodeRepositoryOutputTypeDef,
|
|
682
|
+
UpdateComputeQuotaRequestRequestTypeDef,
|
|
683
|
+
UpdateComputeQuotaResponseTypeDef,
|
|
642
684
|
UpdateContextRequestRequestTypeDef,
|
|
643
685
|
UpdateContextResponseTypeDef,
|
|
644
686
|
UpdateDeviceFleetRequestRequestTypeDef,
|
|
@@ -678,6 +720,8 @@ from .type_defs import (
|
|
|
678
720
|
UpdateMonitoringScheduleResponseTypeDef,
|
|
679
721
|
UpdateNotebookInstanceInputRequestTypeDef,
|
|
680
722
|
UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef,
|
|
723
|
+
UpdatePartnerAppRequestRequestTypeDef,
|
|
724
|
+
UpdatePartnerAppResponseTypeDef,
|
|
681
725
|
UpdatePipelineExecutionRequestRequestTypeDef,
|
|
682
726
|
UpdatePipelineExecutionResponseTypeDef,
|
|
683
727
|
UpdatePipelineRequestRequestTypeDef,
|
|
@@ -753,17 +797,41 @@ class SageMakerClient(BaseClient):
|
|
|
753
797
|
"""
|
|
754
798
|
SageMakerClient exceptions.
|
|
755
799
|
|
|
756
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client
|
|
800
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client)
|
|
757
801
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#exceptions)
|
|
758
802
|
"""
|
|
759
803
|
|
|
804
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
805
|
+
"""
|
|
806
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/can_paginate.html)
|
|
807
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
808
|
+
"""
|
|
809
|
+
|
|
810
|
+
def generate_presigned_url(
|
|
811
|
+
self,
|
|
812
|
+
ClientMethod: str,
|
|
813
|
+
Params: Mapping[str, Any] = ...,
|
|
814
|
+
ExpiresIn: int = 3600,
|
|
815
|
+
HttpMethod: str = ...,
|
|
816
|
+
) -> str:
|
|
817
|
+
"""
|
|
818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/generate_presigned_url.html)
|
|
819
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
820
|
+
"""
|
|
821
|
+
|
|
822
|
+
def close(self) -> None:
|
|
823
|
+
"""
|
|
824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/close.html)
|
|
825
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
826
|
+
"""
|
|
827
|
+
|
|
760
828
|
def add_association(
|
|
761
829
|
self, **kwargs: Unpack[AddAssociationRequestRequestTypeDef]
|
|
762
830
|
) -> AddAssociationResponseTypeDef:
|
|
763
831
|
"""
|
|
764
|
-
Creates an
|
|
832
|
+
Creates an <i>association</i> between the source and the destination.
|
|
765
833
|
|
|
766
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
834
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/add_association.html)
|
|
767
835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#add_association)
|
|
768
836
|
"""
|
|
769
837
|
|
|
@@ -771,7 +839,7 @@ class SageMakerClient(BaseClient):
|
|
|
771
839
|
"""
|
|
772
840
|
Adds or overwrites one or more tags for the specified SageMaker resource.
|
|
773
841
|
|
|
774
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
842
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/add_tags.html)
|
|
775
843
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#add_tags)
|
|
776
844
|
"""
|
|
777
845
|
|
|
@@ -781,7 +849,7 @@ class SageMakerClient(BaseClient):
|
|
|
781
849
|
"""
|
|
782
850
|
Associates a trial component with a trial.
|
|
783
851
|
|
|
784
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
852
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/associate_trial_component.html)
|
|
785
853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#associate_trial_component)
|
|
786
854
|
"""
|
|
787
855
|
|
|
@@ -791,7 +859,7 @@ class SageMakerClient(BaseClient):
|
|
|
791
859
|
"""
|
|
792
860
|
Deletes specific nodes within a SageMaker HyperPod cluster.
|
|
793
861
|
|
|
794
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
862
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_delete_cluster_nodes.html)
|
|
795
863
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_delete_cluster_nodes)
|
|
796
864
|
"""
|
|
797
865
|
|
|
@@ -799,37 +867,19 @@ class SageMakerClient(BaseClient):
|
|
|
799
867
|
self, **kwargs: Unpack[BatchDescribeModelPackageInputRequestTypeDef]
|
|
800
868
|
) -> BatchDescribeModelPackageOutputTypeDef:
|
|
801
869
|
"""
|
|
802
|
-
This action batch describes a list of versioned model packages
|
|
803
|
-
API
|
|
804
|
-
Documentation](https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackage).
|
|
870
|
+
This action batch describes a list of versioned model packages.
|
|
805
871
|
|
|
806
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
872
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_describe_model_package.html)
|
|
807
873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_describe_model_package)
|
|
808
874
|
"""
|
|
809
875
|
|
|
810
|
-
def can_paginate(self, operation_name: str) -> bool:
|
|
811
|
-
"""
|
|
812
|
-
Check if an operation can be paginated.
|
|
813
|
-
|
|
814
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.can_paginate)
|
|
815
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#can_paginate)
|
|
816
|
-
"""
|
|
817
|
-
|
|
818
|
-
def close(self) -> None:
|
|
819
|
-
"""
|
|
820
|
-
Closes underlying endpoint connections.
|
|
821
|
-
|
|
822
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.close)
|
|
823
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#close)
|
|
824
|
-
"""
|
|
825
|
-
|
|
826
876
|
def create_action(
|
|
827
877
|
self, **kwargs: Unpack[CreateActionRequestRequestTypeDef]
|
|
828
878
|
) -> CreateActionResponseTypeDef:
|
|
829
879
|
"""
|
|
830
|
-
Creates an
|
|
880
|
+
Creates an <i>action</i>.
|
|
831
881
|
|
|
832
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
882
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_action.html)
|
|
833
883
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_action)
|
|
834
884
|
"""
|
|
835
885
|
|
|
@@ -838,10 +888,9 @@ class SageMakerClient(BaseClient):
|
|
|
838
888
|
) -> CreateAlgorithmOutputTypeDef:
|
|
839
889
|
"""
|
|
840
890
|
Create a machine learning algorithm that you can use in SageMaker and list in
|
|
841
|
-
the Amazon Web Services
|
|
842
|
-
Marketplace.
|
|
891
|
+
the Amazon Web Services Marketplace.
|
|
843
892
|
|
|
844
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
893
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_algorithm.html)
|
|
845
894
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_algorithm)
|
|
846
895
|
"""
|
|
847
896
|
|
|
@@ -851,7 +900,7 @@ class SageMakerClient(BaseClient):
|
|
|
851
900
|
"""
|
|
852
901
|
Creates a running app for the specified UserProfile.
|
|
853
902
|
|
|
854
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
903
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_app.html)
|
|
855
904
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_app)
|
|
856
905
|
"""
|
|
857
906
|
|
|
@@ -861,7 +910,7 @@ class SageMakerClient(BaseClient):
|
|
|
861
910
|
"""
|
|
862
911
|
Creates a configuration for running a SageMaker image as a KernelGateway app.
|
|
863
912
|
|
|
864
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
913
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_app_image_config.html)
|
|
865
914
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_app_image_config)
|
|
866
915
|
"""
|
|
867
916
|
|
|
@@ -869,9 +918,9 @@ class SageMakerClient(BaseClient):
|
|
|
869
918
|
self, **kwargs: Unpack[CreateArtifactRequestRequestTypeDef]
|
|
870
919
|
) -> CreateArtifactResponseTypeDef:
|
|
871
920
|
"""
|
|
872
|
-
Creates an
|
|
921
|
+
Creates an <i>artifact</i>.
|
|
873
922
|
|
|
874
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
923
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_artifact.html)
|
|
875
924
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_artifact)
|
|
876
925
|
"""
|
|
877
926
|
|
|
@@ -881,7 +930,7 @@ class SageMakerClient(BaseClient):
|
|
|
881
930
|
"""
|
|
882
931
|
Creates an Autopilot job also referred to as Autopilot experiment or AutoML job.
|
|
883
932
|
|
|
884
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
933
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_auto_ml_job.html)
|
|
885
934
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_auto_ml_job)
|
|
886
935
|
"""
|
|
887
936
|
|
|
@@ -892,7 +941,7 @@ class SageMakerClient(BaseClient):
|
|
|
892
941
|
Creates an Autopilot job also referred to as Autopilot experiment or AutoML job
|
|
893
942
|
V2.
|
|
894
943
|
|
|
895
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
944
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_auto_ml_job_v2.html)
|
|
896
945
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_auto_ml_job_v2)
|
|
897
946
|
"""
|
|
898
947
|
|
|
@@ -902,17 +951,27 @@ class SageMakerClient(BaseClient):
|
|
|
902
951
|
"""
|
|
903
952
|
Creates a SageMaker HyperPod cluster.
|
|
904
953
|
|
|
905
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
954
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_cluster.html)
|
|
906
955
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster)
|
|
907
956
|
"""
|
|
908
957
|
|
|
958
|
+
def create_cluster_scheduler_config(
|
|
959
|
+
self, **kwargs: Unpack[CreateClusterSchedulerConfigRequestRequestTypeDef]
|
|
960
|
+
) -> CreateClusterSchedulerConfigResponseTypeDef:
|
|
961
|
+
"""
|
|
962
|
+
Create cluster policy configuration.
|
|
963
|
+
|
|
964
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_cluster_scheduler_config.html)
|
|
965
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_cluster_scheduler_config)
|
|
966
|
+
"""
|
|
967
|
+
|
|
909
968
|
def create_code_repository(
|
|
910
969
|
self, **kwargs: Unpack[CreateCodeRepositoryInputRequestTypeDef]
|
|
911
970
|
) -> CreateCodeRepositoryOutputTypeDef:
|
|
912
971
|
"""
|
|
913
972
|
Creates a Git repository as a resource in your SageMaker account.
|
|
914
973
|
|
|
915
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
974
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_code_repository.html)
|
|
916
975
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_code_repository)
|
|
917
976
|
"""
|
|
918
977
|
|
|
@@ -922,17 +981,27 @@ class SageMakerClient(BaseClient):
|
|
|
922
981
|
"""
|
|
923
982
|
Starts a model compilation job.
|
|
924
983
|
|
|
925
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
984
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_compilation_job.html)
|
|
926
985
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compilation_job)
|
|
927
986
|
"""
|
|
928
987
|
|
|
988
|
+
def create_compute_quota(
|
|
989
|
+
self, **kwargs: Unpack[CreateComputeQuotaRequestRequestTypeDef]
|
|
990
|
+
) -> CreateComputeQuotaResponseTypeDef:
|
|
991
|
+
"""
|
|
992
|
+
Create compute allocation definition.
|
|
993
|
+
|
|
994
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_compute_quota.html)
|
|
995
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_compute_quota)
|
|
996
|
+
"""
|
|
997
|
+
|
|
929
998
|
def create_context(
|
|
930
999
|
self, **kwargs: Unpack[CreateContextRequestRequestTypeDef]
|
|
931
1000
|
) -> CreateContextResponseTypeDef:
|
|
932
1001
|
"""
|
|
933
|
-
Creates a
|
|
1002
|
+
Creates a <i>context</i>.
|
|
934
1003
|
|
|
935
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1004
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_context.html)
|
|
936
1005
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_context)
|
|
937
1006
|
"""
|
|
938
1007
|
|
|
@@ -942,7 +1011,7 @@ class SageMakerClient(BaseClient):
|
|
|
942
1011
|
"""
|
|
943
1012
|
Creates a definition for a job that monitors data quality and drift.
|
|
944
1013
|
|
|
945
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1014
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_data_quality_job_definition.html)
|
|
946
1015
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_data_quality_job_definition)
|
|
947
1016
|
"""
|
|
948
1017
|
|
|
@@ -952,7 +1021,7 @@ class SageMakerClient(BaseClient):
|
|
|
952
1021
|
"""
|
|
953
1022
|
Creates a device fleet.
|
|
954
1023
|
|
|
955
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1024
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_device_fleet.html)
|
|
956
1025
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_device_fleet)
|
|
957
1026
|
"""
|
|
958
1027
|
|
|
@@ -960,9 +1029,9 @@ class SageMakerClient(BaseClient):
|
|
|
960
1029
|
self, **kwargs: Unpack[CreateDomainRequestRequestTypeDef]
|
|
961
1030
|
) -> CreateDomainResponseTypeDef:
|
|
962
1031
|
"""
|
|
963
|
-
Creates a
|
|
1032
|
+
Creates a <code>Domain</code>.
|
|
964
1033
|
|
|
965
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1034
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_domain.html)
|
|
966
1035
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_domain)
|
|
967
1036
|
"""
|
|
968
1037
|
|
|
@@ -972,7 +1041,7 @@ class SageMakerClient(BaseClient):
|
|
|
972
1041
|
"""
|
|
973
1042
|
Creates an edge deployment plan, consisting of multiple stages.
|
|
974
1043
|
|
|
975
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1044
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_edge_deployment_plan.html)
|
|
976
1045
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_edge_deployment_plan)
|
|
977
1046
|
"""
|
|
978
1047
|
|
|
@@ -982,7 +1051,7 @@ class SageMakerClient(BaseClient):
|
|
|
982
1051
|
"""
|
|
983
1052
|
Creates a new stage in an existing edge deployment plan.
|
|
984
1053
|
|
|
985
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1054
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_edge_deployment_stage.html)
|
|
986
1055
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_edge_deployment_stage)
|
|
987
1056
|
"""
|
|
988
1057
|
|
|
@@ -992,7 +1061,7 @@ class SageMakerClient(BaseClient):
|
|
|
992
1061
|
"""
|
|
993
1062
|
Starts a SageMaker Edge Manager model packaging job.
|
|
994
1063
|
|
|
995
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1064
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_edge_packaging_job.html)
|
|
996
1065
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_edge_packaging_job)
|
|
997
1066
|
"""
|
|
998
1067
|
|
|
@@ -1002,7 +1071,7 @@ class SageMakerClient(BaseClient):
|
|
|
1002
1071
|
"""
|
|
1003
1072
|
Creates an endpoint using the endpoint configuration specified in the request.
|
|
1004
1073
|
|
|
1005
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1074
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_endpoint.html)
|
|
1006
1075
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_endpoint)
|
|
1007
1076
|
"""
|
|
1008
1077
|
|
|
@@ -1011,10 +1080,9 @@ class SageMakerClient(BaseClient):
|
|
|
1011
1080
|
) -> CreateEndpointConfigOutputTypeDef:
|
|
1012
1081
|
"""
|
|
1013
1082
|
Creates an endpoint configuration that SageMaker hosting services uses to
|
|
1014
|
-
deploy
|
|
1015
|
-
models.
|
|
1083
|
+
deploy models.
|
|
1016
1084
|
|
|
1017
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1085
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_endpoint_config.html)
|
|
1018
1086
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_endpoint_config)
|
|
1019
1087
|
"""
|
|
1020
1088
|
|
|
@@ -1022,9 +1090,9 @@ class SageMakerClient(BaseClient):
|
|
|
1022
1090
|
self, **kwargs: Unpack[CreateExperimentRequestRequestTypeDef]
|
|
1023
1091
|
) -> CreateExperimentResponseTypeDef:
|
|
1024
1092
|
"""
|
|
1025
|
-
Creates a SageMaker
|
|
1093
|
+
Creates a SageMaker <i>experiment</i>.
|
|
1026
1094
|
|
|
1027
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1095
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_experiment.html)
|
|
1028
1096
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_experiment)
|
|
1029
1097
|
"""
|
|
1030
1098
|
|
|
@@ -1032,9 +1100,9 @@ class SageMakerClient(BaseClient):
|
|
|
1032
1100
|
self, **kwargs: Unpack[CreateFeatureGroupRequestRequestTypeDef]
|
|
1033
1101
|
) -> CreateFeatureGroupResponseTypeDef:
|
|
1034
1102
|
"""
|
|
1035
|
-
Create a new
|
|
1103
|
+
Create a new <code>FeatureGroup</code>.
|
|
1036
1104
|
|
|
1037
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1105
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_feature_group.html)
|
|
1038
1106
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_feature_group)
|
|
1039
1107
|
"""
|
|
1040
1108
|
|
|
@@ -1044,7 +1112,7 @@ class SageMakerClient(BaseClient):
|
|
|
1044
1112
|
"""
|
|
1045
1113
|
Creates a flow definition.
|
|
1046
1114
|
|
|
1047
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1115
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_flow_definition.html)
|
|
1048
1116
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_flow_definition)
|
|
1049
1117
|
"""
|
|
1050
1118
|
|
|
@@ -1054,7 +1122,7 @@ class SageMakerClient(BaseClient):
|
|
|
1054
1122
|
"""
|
|
1055
1123
|
Create a hub.
|
|
1056
1124
|
|
|
1057
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1125
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_hub.html)
|
|
1058
1126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub)
|
|
1059
1127
|
"""
|
|
1060
1128
|
|
|
@@ -1063,10 +1131,9 @@ class SageMakerClient(BaseClient):
|
|
|
1063
1131
|
) -> CreateHubContentReferenceResponseTypeDef:
|
|
1064
1132
|
"""
|
|
1065
1133
|
Create a hub content reference in order to add a model in the JumpStart public
|
|
1066
|
-
hub to a private
|
|
1067
|
-
hub.
|
|
1134
|
+
hub to a private hub.
|
|
1068
1135
|
|
|
1069
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_hub_content_reference.html)
|
|
1070
1137
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hub_content_reference)
|
|
1071
1138
|
"""
|
|
1072
1139
|
|
|
@@ -1076,7 +1143,7 @@ class SageMakerClient(BaseClient):
|
|
|
1076
1143
|
"""
|
|
1077
1144
|
Defines the settings you will use for the human review workflow user interface.
|
|
1078
1145
|
|
|
1079
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_human_task_ui.html)
|
|
1080
1147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_human_task_ui)
|
|
1081
1148
|
"""
|
|
1082
1149
|
|
|
@@ -1086,7 +1153,7 @@ class SageMakerClient(BaseClient):
|
|
|
1086
1153
|
"""
|
|
1087
1154
|
Starts a hyperparameter tuning job.
|
|
1088
1155
|
|
|
1089
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_hyper_parameter_tuning_job.html)
|
|
1090
1157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_hyper_parameter_tuning_job)
|
|
1091
1158
|
"""
|
|
1092
1159
|
|
|
@@ -1096,7 +1163,7 @@ class SageMakerClient(BaseClient):
|
|
|
1096
1163
|
"""
|
|
1097
1164
|
Creates a custom SageMaker image.
|
|
1098
1165
|
|
|
1099
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image.html)
|
|
1100
1167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image)
|
|
1101
1168
|
"""
|
|
1102
1169
|
|
|
@@ -1104,9 +1171,9 @@ class SageMakerClient(BaseClient):
|
|
|
1104
1171
|
self, **kwargs: Unpack[CreateImageVersionRequestRequestTypeDef]
|
|
1105
1172
|
) -> CreateImageVersionResponseTypeDef:
|
|
1106
1173
|
"""
|
|
1107
|
-
Creates a version of the SageMaker image specified by
|
|
1174
|
+
Creates a version of the SageMaker image specified by <code>ImageName</code>.
|
|
1108
1175
|
|
|
1109
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1176
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_image_version.html)
|
|
1110
1177
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_image_version)
|
|
1111
1178
|
"""
|
|
1112
1179
|
|
|
@@ -1115,10 +1182,9 @@ class SageMakerClient(BaseClient):
|
|
|
1115
1182
|
) -> CreateInferenceComponentOutputTypeDef:
|
|
1116
1183
|
"""
|
|
1117
1184
|
Creates an inference component, which is a SageMaker hosting object that you
|
|
1118
|
-
can use to deploy a model to an
|
|
1119
|
-
endpoint.
|
|
1185
|
+
can use to deploy a model to an endpoint.
|
|
1120
1186
|
|
|
1121
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1187
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_inference_component.html)
|
|
1122
1188
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_inference_component)
|
|
1123
1189
|
"""
|
|
1124
1190
|
|
|
@@ -1129,7 +1195,7 @@ class SageMakerClient(BaseClient):
|
|
|
1129
1195
|
Creates an inference experiment using the configurations specified in the
|
|
1130
1196
|
request.
|
|
1131
1197
|
|
|
1132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1198
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_inference_experiment.html)
|
|
1133
1199
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_inference_experiment)
|
|
1134
1200
|
"""
|
|
1135
1201
|
|
|
@@ -1139,7 +1205,7 @@ class SageMakerClient(BaseClient):
|
|
|
1139
1205
|
"""
|
|
1140
1206
|
Starts a recommendation job.
|
|
1141
1207
|
|
|
1142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1208
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_inference_recommendations_job.html)
|
|
1143
1209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_inference_recommendations_job)
|
|
1144
1210
|
"""
|
|
1145
1211
|
|
|
@@ -1149,7 +1215,7 @@ class SageMakerClient(BaseClient):
|
|
|
1149
1215
|
"""
|
|
1150
1216
|
Creates a job that uses workers to label the data objects in your input dataset.
|
|
1151
1217
|
|
|
1152
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_labeling_job.html)
|
|
1153
1219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_labeling_job)
|
|
1154
1220
|
"""
|
|
1155
1221
|
|
|
@@ -1158,10 +1224,9 @@ class SageMakerClient(BaseClient):
|
|
|
1158
1224
|
) -> CreateMlflowTrackingServerResponseTypeDef:
|
|
1159
1225
|
"""
|
|
1160
1226
|
Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as
|
|
1161
|
-
the artifact
|
|
1162
|
-
store.
|
|
1227
|
+
the artifact store.
|
|
1163
1228
|
|
|
1164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_mlflow_tracking_server.html)
|
|
1165
1230
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_mlflow_tracking_server)
|
|
1166
1231
|
"""
|
|
1167
1232
|
|
|
@@ -1171,7 +1236,7 @@ class SageMakerClient(BaseClient):
|
|
|
1171
1236
|
"""
|
|
1172
1237
|
Creates a model in SageMaker.
|
|
1173
1238
|
|
|
1174
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model.html)
|
|
1175
1240
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model)
|
|
1176
1241
|
"""
|
|
1177
1242
|
|
|
@@ -1181,7 +1246,7 @@ class SageMakerClient(BaseClient):
|
|
|
1181
1246
|
"""
|
|
1182
1247
|
Creates the definition for a model bias job.
|
|
1183
1248
|
|
|
1184
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1249
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_bias_job_definition.html)
|
|
1185
1250
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_bias_job_definition)
|
|
1186
1251
|
"""
|
|
1187
1252
|
|
|
@@ -1191,7 +1256,7 @@ class SageMakerClient(BaseClient):
|
|
|
1191
1256
|
"""
|
|
1192
1257
|
Creates an Amazon SageMaker Model Card.
|
|
1193
1258
|
|
|
1194
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1259
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_card.html)
|
|
1195
1260
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_card)
|
|
1196
1261
|
"""
|
|
1197
1262
|
|
|
@@ -1201,7 +1266,7 @@ class SageMakerClient(BaseClient):
|
|
|
1201
1266
|
"""
|
|
1202
1267
|
Creates an Amazon SageMaker Model Card export job.
|
|
1203
1268
|
|
|
1204
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_card_export_job.html)
|
|
1205
1270
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_card_export_job)
|
|
1206
1271
|
"""
|
|
1207
1272
|
|
|
@@ -1211,7 +1276,7 @@ class SageMakerClient(BaseClient):
|
|
|
1211
1276
|
"""
|
|
1212
1277
|
Creates the definition for a model explainability job.
|
|
1213
1278
|
|
|
1214
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1279
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_explainability_job_definition.html)
|
|
1215
1280
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_explainability_job_definition)
|
|
1216
1281
|
"""
|
|
1217
1282
|
|
|
@@ -1223,7 +1288,7 @@ class SageMakerClient(BaseClient):
|
|
|
1223
1288
|
Amazon Web Services Marketplace, or a versioned model that is part of a model
|
|
1224
1289
|
group.
|
|
1225
1290
|
|
|
1226
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_package.html)
|
|
1227
1292
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_package)
|
|
1228
1293
|
"""
|
|
1229
1294
|
|
|
@@ -1233,7 +1298,7 @@ class SageMakerClient(BaseClient):
|
|
|
1233
1298
|
"""
|
|
1234
1299
|
Creates a model group.
|
|
1235
1300
|
|
|
1236
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1301
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_package_group.html)
|
|
1237
1302
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_package_group)
|
|
1238
1303
|
"""
|
|
1239
1304
|
|
|
@@ -1243,7 +1308,7 @@ class SageMakerClient(BaseClient):
|
|
|
1243
1308
|
"""
|
|
1244
1309
|
Creates a definition for a job that monitors model quality and drift.
|
|
1245
1310
|
|
|
1246
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1311
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_model_quality_job_definition.html)
|
|
1247
1312
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_model_quality_job_definition)
|
|
1248
1313
|
"""
|
|
1249
1314
|
|
|
@@ -1252,10 +1317,9 @@ class SageMakerClient(BaseClient):
|
|
|
1252
1317
|
) -> CreateMonitoringScheduleResponseTypeDef:
|
|
1253
1318
|
"""
|
|
1254
1319
|
Creates a schedule that regularly starts Amazon SageMaker Processing Jobs to
|
|
1255
|
-
monitor the data captured for an Amazon SageMaker
|
|
1256
|
-
Endpoint.
|
|
1320
|
+
monitor the data captured for an Amazon SageMaker Endpoint.
|
|
1257
1321
|
|
|
1258
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1322
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_monitoring_schedule.html)
|
|
1259
1323
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_monitoring_schedule)
|
|
1260
1324
|
"""
|
|
1261
1325
|
|
|
@@ -1265,7 +1329,7 @@ class SageMakerClient(BaseClient):
|
|
|
1265
1329
|
"""
|
|
1266
1330
|
Creates an SageMaker notebook instance.
|
|
1267
1331
|
|
|
1268
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1332
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_notebook_instance.html)
|
|
1269
1333
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_notebook_instance)
|
|
1270
1334
|
"""
|
|
1271
1335
|
|
|
@@ -1276,7 +1340,7 @@ class SageMakerClient(BaseClient):
|
|
|
1276
1340
|
Creates a lifecycle configuration that you can associate with a notebook
|
|
1277
1341
|
instance.
|
|
1278
1342
|
|
|
1279
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1343
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_notebook_instance_lifecycle_config.html)
|
|
1280
1344
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_notebook_instance_lifecycle_config)
|
|
1281
1345
|
"""
|
|
1282
1346
|
|
|
@@ -1286,17 +1350,37 @@ class SageMakerClient(BaseClient):
|
|
|
1286
1350
|
"""
|
|
1287
1351
|
Creates a job that optimizes a model for inference performance.
|
|
1288
1352
|
|
|
1289
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1353
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_optimization_job.html)
|
|
1290
1354
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_optimization_job)
|
|
1291
1355
|
"""
|
|
1292
1356
|
|
|
1357
|
+
def create_partner_app(
|
|
1358
|
+
self, **kwargs: Unpack[CreatePartnerAppRequestRequestTypeDef]
|
|
1359
|
+
) -> CreatePartnerAppResponseTypeDef:
|
|
1360
|
+
"""
|
|
1361
|
+
Creates an Amazon SageMaker Partner AI App.
|
|
1362
|
+
|
|
1363
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app.html)
|
|
1364
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app)
|
|
1365
|
+
"""
|
|
1366
|
+
|
|
1367
|
+
def create_partner_app_presigned_url(
|
|
1368
|
+
self, **kwargs: Unpack[CreatePartnerAppPresignedUrlRequestRequestTypeDef]
|
|
1369
|
+
) -> CreatePartnerAppPresignedUrlResponseTypeDef:
|
|
1370
|
+
"""
|
|
1371
|
+
Creates a presigned URL to access an Amazon SageMaker Partner AI App.
|
|
1372
|
+
|
|
1373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_partner_app_presigned_url.html)
|
|
1374
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_partner_app_presigned_url)
|
|
1375
|
+
"""
|
|
1376
|
+
|
|
1293
1377
|
def create_pipeline(
|
|
1294
1378
|
self, **kwargs: Unpack[CreatePipelineRequestRequestTypeDef]
|
|
1295
1379
|
) -> CreatePipelineResponseTypeDef:
|
|
1296
1380
|
"""
|
|
1297
1381
|
Creates a pipeline using a JSON pipeline definition.
|
|
1298
1382
|
|
|
1299
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1383
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_pipeline.html)
|
|
1300
1384
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_pipeline)
|
|
1301
1385
|
"""
|
|
1302
1386
|
|
|
@@ -1306,7 +1390,7 @@ class SageMakerClient(BaseClient):
|
|
|
1306
1390
|
"""
|
|
1307
1391
|
Creates a URL for a specified UserProfile in a Domain.
|
|
1308
1392
|
|
|
1309
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1393
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_presigned_domain_url.html)
|
|
1310
1394
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_presigned_domain_url)
|
|
1311
1395
|
"""
|
|
1312
1396
|
|
|
@@ -1315,10 +1399,9 @@ class SageMakerClient(BaseClient):
|
|
|
1315
1399
|
) -> CreatePresignedMlflowTrackingServerUrlResponseTypeDef:
|
|
1316
1400
|
"""
|
|
1317
1401
|
Returns a presigned URL that you can use to connect to the MLflow UI attached
|
|
1318
|
-
to your tracking
|
|
1319
|
-
server.
|
|
1402
|
+
to your tracking server.
|
|
1320
1403
|
|
|
1321
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1404
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_presigned_mlflow_tracking_server_url.html)
|
|
1322
1405
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_presigned_mlflow_tracking_server_url)
|
|
1323
1406
|
"""
|
|
1324
1407
|
|
|
@@ -1329,7 +1412,7 @@ class SageMakerClient(BaseClient):
|
|
|
1329
1412
|
Returns a URL that you can use to connect to the Jupyter server from a notebook
|
|
1330
1413
|
instance.
|
|
1331
1414
|
|
|
1332
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1415
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_presigned_notebook_instance_url.html)
|
|
1333
1416
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_presigned_notebook_instance_url)
|
|
1334
1417
|
"""
|
|
1335
1418
|
|
|
@@ -1339,7 +1422,7 @@ class SageMakerClient(BaseClient):
|
|
|
1339
1422
|
"""
|
|
1340
1423
|
Creates a processing job.
|
|
1341
1424
|
|
|
1342
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1425
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_processing_job.html)
|
|
1343
1426
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_processing_job)
|
|
1344
1427
|
"""
|
|
1345
1428
|
|
|
@@ -1348,10 +1431,9 @@ class SageMakerClient(BaseClient):
|
|
|
1348
1431
|
) -> CreateProjectOutputTypeDef:
|
|
1349
1432
|
"""
|
|
1350
1433
|
Creates a machine learning (ML) project that can contain one or more templates
|
|
1351
|
-
that set up an ML pipeline from training to deploying an approved
|
|
1352
|
-
model.
|
|
1434
|
+
that set up an ML pipeline from training to deploying an approved model.
|
|
1353
1435
|
|
|
1354
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1436
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_project.html)
|
|
1355
1437
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_project)
|
|
1356
1438
|
"""
|
|
1357
1439
|
|
|
@@ -1361,7 +1443,7 @@ class SageMakerClient(BaseClient):
|
|
|
1361
1443
|
"""
|
|
1362
1444
|
Creates a private space or a space used for real time collaboration in a domain.
|
|
1363
1445
|
|
|
1364
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1446
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_space.html)
|
|
1365
1447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_space)
|
|
1366
1448
|
"""
|
|
1367
1449
|
|
|
@@ -1371,7 +1453,7 @@ class SageMakerClient(BaseClient):
|
|
|
1371
1453
|
"""
|
|
1372
1454
|
Creates a new Amazon SageMaker Studio Lifecycle Configuration.
|
|
1373
1455
|
|
|
1374
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1456
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_studio_lifecycle_config.html)
|
|
1375
1457
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_studio_lifecycle_config)
|
|
1376
1458
|
"""
|
|
1377
1459
|
|
|
@@ -1381,17 +1463,27 @@ class SageMakerClient(BaseClient):
|
|
|
1381
1463
|
"""
|
|
1382
1464
|
Starts a model training job.
|
|
1383
1465
|
|
|
1384
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1466
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_training_job.html)
|
|
1385
1467
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_job)
|
|
1386
1468
|
"""
|
|
1387
1469
|
|
|
1470
|
+
def create_training_plan(
|
|
1471
|
+
self, **kwargs: Unpack[CreateTrainingPlanRequestRequestTypeDef]
|
|
1472
|
+
) -> CreateTrainingPlanResponseTypeDef:
|
|
1473
|
+
"""
|
|
1474
|
+
Creates a new training plan in SageMaker to reserve compute capacity.
|
|
1475
|
+
|
|
1476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_training_plan.html)
|
|
1477
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_training_plan)
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1388
1480
|
def create_transform_job(
|
|
1389
1481
|
self, **kwargs: Unpack[CreateTransformJobRequestRequestTypeDef]
|
|
1390
1482
|
) -> CreateTransformJobResponseTypeDef:
|
|
1391
1483
|
"""
|
|
1392
1484
|
Starts a transform job.
|
|
1393
1485
|
|
|
1394
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1486
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_transform_job.html)
|
|
1395
1487
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_transform_job)
|
|
1396
1488
|
"""
|
|
1397
1489
|
|
|
@@ -1399,9 +1491,9 @@ class SageMakerClient(BaseClient):
|
|
|
1399
1491
|
self, **kwargs: Unpack[CreateTrialRequestRequestTypeDef]
|
|
1400
1492
|
) -> CreateTrialResponseTypeDef:
|
|
1401
1493
|
"""
|
|
1402
|
-
Creates an SageMaker
|
|
1494
|
+
Creates an SageMaker <i>trial</i>.
|
|
1403
1495
|
|
|
1404
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1496
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial.html)
|
|
1405
1497
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial)
|
|
1406
1498
|
"""
|
|
1407
1499
|
|
|
@@ -1409,9 +1501,10 @@ class SageMakerClient(BaseClient):
|
|
|
1409
1501
|
self, **kwargs: Unpack[CreateTrialComponentRequestRequestTypeDef]
|
|
1410
1502
|
) -> CreateTrialComponentResponseTypeDef:
|
|
1411
1503
|
"""
|
|
1412
|
-
Creates a
|
|
1504
|
+
Creates a <i>trial component</i>, which is a stage of a machine learning
|
|
1505
|
+
<i>trial</i>.
|
|
1413
1506
|
|
|
1414
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1507
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_trial_component.html)
|
|
1415
1508
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_trial_component)
|
|
1416
1509
|
"""
|
|
1417
1510
|
|
|
@@ -1421,7 +1514,7 @@ class SageMakerClient(BaseClient):
|
|
|
1421
1514
|
"""
|
|
1422
1515
|
Creates a user profile.
|
|
1423
1516
|
|
|
1424
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1517
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_user_profile.html)
|
|
1425
1518
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_user_profile)
|
|
1426
1519
|
"""
|
|
1427
1520
|
|
|
@@ -1431,7 +1524,7 @@ class SageMakerClient(BaseClient):
|
|
|
1431
1524
|
"""
|
|
1432
1525
|
Use this operation to create a workforce.
|
|
1433
1526
|
|
|
1434
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1527
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_workforce.html)
|
|
1435
1528
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_workforce)
|
|
1436
1529
|
"""
|
|
1437
1530
|
|
|
@@ -1441,7 +1534,7 @@ class SageMakerClient(BaseClient):
|
|
|
1441
1534
|
"""
|
|
1442
1535
|
Creates a new work team for labeling your data.
|
|
1443
1536
|
|
|
1444
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1537
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/create_workteam.html)
|
|
1445
1538
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_workteam)
|
|
1446
1539
|
"""
|
|
1447
1540
|
|
|
@@ -1451,7 +1544,7 @@ class SageMakerClient(BaseClient):
|
|
|
1451
1544
|
"""
|
|
1452
1545
|
Deletes an action.
|
|
1453
1546
|
|
|
1454
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1547
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_action.html)
|
|
1455
1548
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_action)
|
|
1456
1549
|
"""
|
|
1457
1550
|
|
|
@@ -1461,7 +1554,7 @@ class SageMakerClient(BaseClient):
|
|
|
1461
1554
|
"""
|
|
1462
1555
|
Removes the specified algorithm from your account.
|
|
1463
1556
|
|
|
1464
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1557
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_algorithm.html)
|
|
1465
1558
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_algorithm)
|
|
1466
1559
|
"""
|
|
1467
1560
|
|
|
@@ -1471,7 +1564,7 @@ class SageMakerClient(BaseClient):
|
|
|
1471
1564
|
"""
|
|
1472
1565
|
Used to stop and delete an app.
|
|
1473
1566
|
|
|
1474
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1567
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_app.html)
|
|
1475
1568
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_app)
|
|
1476
1569
|
"""
|
|
1477
1570
|
|
|
@@ -1481,7 +1574,7 @@ class SageMakerClient(BaseClient):
|
|
|
1481
1574
|
"""
|
|
1482
1575
|
Deletes an AppImageConfig.
|
|
1483
1576
|
|
|
1484
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1577
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_app_image_config.html)
|
|
1485
1578
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_app_image_config)
|
|
1486
1579
|
"""
|
|
1487
1580
|
|
|
@@ -1491,7 +1584,7 @@ class SageMakerClient(BaseClient):
|
|
|
1491
1584
|
"""
|
|
1492
1585
|
Deletes an artifact.
|
|
1493
1586
|
|
|
1494
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1587
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_artifact.html)
|
|
1495
1588
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_artifact)
|
|
1496
1589
|
"""
|
|
1497
1590
|
|
|
@@ -1501,7 +1594,7 @@ class SageMakerClient(BaseClient):
|
|
|
1501
1594
|
"""
|
|
1502
1595
|
Deletes an association.
|
|
1503
1596
|
|
|
1504
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1597
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_association.html)
|
|
1505
1598
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_association)
|
|
1506
1599
|
"""
|
|
1507
1600
|
|
|
@@ -1511,17 +1604,27 @@ class SageMakerClient(BaseClient):
|
|
|
1511
1604
|
"""
|
|
1512
1605
|
Delete a SageMaker HyperPod cluster.
|
|
1513
1606
|
|
|
1514
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1607
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_cluster.html)
|
|
1515
1608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster)
|
|
1516
1609
|
"""
|
|
1517
1610
|
|
|
1611
|
+
def delete_cluster_scheduler_config(
|
|
1612
|
+
self, **kwargs: Unpack[DeleteClusterSchedulerConfigRequestRequestTypeDef]
|
|
1613
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1614
|
+
"""
|
|
1615
|
+
Deletes the cluster policy of the cluster.
|
|
1616
|
+
|
|
1617
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_cluster_scheduler_config.html)
|
|
1618
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_cluster_scheduler_config)
|
|
1619
|
+
"""
|
|
1620
|
+
|
|
1518
1621
|
def delete_code_repository(
|
|
1519
1622
|
self, **kwargs: Unpack[DeleteCodeRepositoryInputRequestTypeDef]
|
|
1520
1623
|
) -> EmptyResponseMetadataTypeDef:
|
|
1521
1624
|
"""
|
|
1522
1625
|
Deletes the specified Git repository from your account.
|
|
1523
1626
|
|
|
1524
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1627
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_code_repository.html)
|
|
1525
1628
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_code_repository)
|
|
1526
1629
|
"""
|
|
1527
1630
|
|
|
@@ -1531,17 +1634,27 @@ class SageMakerClient(BaseClient):
|
|
|
1531
1634
|
"""
|
|
1532
1635
|
Deletes the specified compilation job.
|
|
1533
1636
|
|
|
1534
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1637
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_compilation_job.html)
|
|
1535
1638
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compilation_job)
|
|
1536
1639
|
"""
|
|
1537
1640
|
|
|
1641
|
+
def delete_compute_quota(
|
|
1642
|
+
self, **kwargs: Unpack[DeleteComputeQuotaRequestRequestTypeDef]
|
|
1643
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
1644
|
+
"""
|
|
1645
|
+
Deletes the compute allocation from the cluster.
|
|
1646
|
+
|
|
1647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_compute_quota.html)
|
|
1648
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_compute_quota)
|
|
1649
|
+
"""
|
|
1650
|
+
|
|
1538
1651
|
def delete_context(
|
|
1539
1652
|
self, **kwargs: Unpack[DeleteContextRequestRequestTypeDef]
|
|
1540
1653
|
) -> DeleteContextResponseTypeDef:
|
|
1541
1654
|
"""
|
|
1542
1655
|
Deletes an context.
|
|
1543
1656
|
|
|
1544
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1657
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_context.html)
|
|
1545
1658
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_context)
|
|
1546
1659
|
"""
|
|
1547
1660
|
|
|
@@ -1551,7 +1664,7 @@ class SageMakerClient(BaseClient):
|
|
|
1551
1664
|
"""
|
|
1552
1665
|
Deletes a data quality monitoring job definition.
|
|
1553
1666
|
|
|
1554
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1667
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_data_quality_job_definition.html)
|
|
1555
1668
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_data_quality_job_definition)
|
|
1556
1669
|
"""
|
|
1557
1670
|
|
|
@@ -1561,7 +1674,7 @@ class SageMakerClient(BaseClient):
|
|
|
1561
1674
|
"""
|
|
1562
1675
|
Deletes a fleet.
|
|
1563
1676
|
|
|
1564
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1677
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_device_fleet.html)
|
|
1565
1678
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_device_fleet)
|
|
1566
1679
|
"""
|
|
1567
1680
|
|
|
@@ -1571,7 +1684,7 @@ class SageMakerClient(BaseClient):
|
|
|
1571
1684
|
"""
|
|
1572
1685
|
Used to delete a domain.
|
|
1573
1686
|
|
|
1574
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1687
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_domain.html)
|
|
1575
1688
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_domain)
|
|
1576
1689
|
"""
|
|
1577
1690
|
|
|
@@ -1580,10 +1693,9 @@ class SageMakerClient(BaseClient):
|
|
|
1580
1693
|
) -> EmptyResponseMetadataTypeDef:
|
|
1581
1694
|
"""
|
|
1582
1695
|
Deletes an edge deployment plan if (and only if) all the stages in the plan are
|
|
1583
|
-
inactive or there are no stages in the
|
|
1584
|
-
plan.
|
|
1696
|
+
inactive or there are no stages in the plan.
|
|
1585
1697
|
|
|
1586
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1698
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_edge_deployment_plan.html)
|
|
1587
1699
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_edge_deployment_plan)
|
|
1588
1700
|
"""
|
|
1589
1701
|
|
|
@@ -1594,7 +1706,7 @@ class SageMakerClient(BaseClient):
|
|
|
1594
1706
|
Delete a stage in an edge deployment plan if (and only if) the stage is
|
|
1595
1707
|
inactive.
|
|
1596
1708
|
|
|
1597
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1709
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_edge_deployment_stage.html)
|
|
1598
1710
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_edge_deployment_stage)
|
|
1599
1711
|
"""
|
|
1600
1712
|
|
|
@@ -1604,7 +1716,7 @@ class SageMakerClient(BaseClient):
|
|
|
1604
1716
|
"""
|
|
1605
1717
|
Deletes an endpoint.
|
|
1606
1718
|
|
|
1607
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1719
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_endpoint.html)
|
|
1608
1720
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_endpoint)
|
|
1609
1721
|
"""
|
|
1610
1722
|
|
|
@@ -1614,7 +1726,7 @@ class SageMakerClient(BaseClient):
|
|
|
1614
1726
|
"""
|
|
1615
1727
|
Deletes an endpoint configuration.
|
|
1616
1728
|
|
|
1617
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1729
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_endpoint_config.html)
|
|
1618
1730
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_endpoint_config)
|
|
1619
1731
|
"""
|
|
1620
1732
|
|
|
@@ -1624,7 +1736,7 @@ class SageMakerClient(BaseClient):
|
|
|
1624
1736
|
"""
|
|
1625
1737
|
Deletes an SageMaker experiment.
|
|
1626
1738
|
|
|
1627
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1739
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_experiment.html)
|
|
1628
1740
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_experiment)
|
|
1629
1741
|
"""
|
|
1630
1742
|
|
|
@@ -1632,11 +1744,10 @@ class SageMakerClient(BaseClient):
|
|
|
1632
1744
|
self, **kwargs: Unpack[DeleteFeatureGroupRequestRequestTypeDef]
|
|
1633
1745
|
) -> EmptyResponseMetadataTypeDef:
|
|
1634
1746
|
"""
|
|
1635
|
-
Delete the
|
|
1636
|
-
the
|
|
1637
|
-
`FeatureGroup`.
|
|
1747
|
+
Delete the <code>FeatureGroup</code> and any data that was written to the
|
|
1748
|
+
<code>OnlineStore</code> of the <code>FeatureGroup</code>.
|
|
1638
1749
|
|
|
1639
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1750
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_feature_group.html)
|
|
1640
1751
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_feature_group)
|
|
1641
1752
|
"""
|
|
1642
1753
|
|
|
@@ -1646,7 +1757,7 @@ class SageMakerClient(BaseClient):
|
|
|
1646
1757
|
"""
|
|
1647
1758
|
Deletes the specified flow definition.
|
|
1648
1759
|
|
|
1649
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1760
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_flow_definition.html)
|
|
1650
1761
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_flow_definition)
|
|
1651
1762
|
"""
|
|
1652
1763
|
|
|
@@ -1656,7 +1767,7 @@ class SageMakerClient(BaseClient):
|
|
|
1656
1767
|
"""
|
|
1657
1768
|
Delete a hub.
|
|
1658
1769
|
|
|
1659
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1770
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_hub.html)
|
|
1660
1771
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub)
|
|
1661
1772
|
"""
|
|
1662
1773
|
|
|
@@ -1666,7 +1777,7 @@ class SageMakerClient(BaseClient):
|
|
|
1666
1777
|
"""
|
|
1667
1778
|
Delete the contents of a hub.
|
|
1668
1779
|
|
|
1669
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1780
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_hub_content.html)
|
|
1670
1781
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content)
|
|
1671
1782
|
"""
|
|
1672
1783
|
|
|
@@ -1676,7 +1787,7 @@ class SageMakerClient(BaseClient):
|
|
|
1676
1787
|
"""
|
|
1677
1788
|
Delete a hub content reference in order to remove a model from a private hub.
|
|
1678
1789
|
|
|
1679
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1790
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_hub_content_reference.html)
|
|
1680
1791
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hub_content_reference)
|
|
1681
1792
|
"""
|
|
1682
1793
|
|
|
@@ -1686,7 +1797,7 @@ class SageMakerClient(BaseClient):
|
|
|
1686
1797
|
"""
|
|
1687
1798
|
Use this operation to delete a human task user interface (worker task template).
|
|
1688
1799
|
|
|
1689
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1800
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_human_task_ui.html)
|
|
1690
1801
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_human_task_ui)
|
|
1691
1802
|
"""
|
|
1692
1803
|
|
|
@@ -1696,7 +1807,7 @@ class SageMakerClient(BaseClient):
|
|
|
1696
1807
|
"""
|
|
1697
1808
|
Deletes a hyperparameter tuning job.
|
|
1698
1809
|
|
|
1699
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1810
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_hyper_parameter_tuning_job.html)
|
|
1700
1811
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_hyper_parameter_tuning_job)
|
|
1701
1812
|
"""
|
|
1702
1813
|
|
|
@@ -1704,7 +1815,7 @@ class SageMakerClient(BaseClient):
|
|
|
1704
1815
|
"""
|
|
1705
1816
|
Deletes a SageMaker image and all versions of the image.
|
|
1706
1817
|
|
|
1707
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image.html)
|
|
1708
1819
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image)
|
|
1709
1820
|
"""
|
|
1710
1821
|
|
|
@@ -1714,7 +1825,7 @@ class SageMakerClient(BaseClient):
|
|
|
1714
1825
|
"""
|
|
1715
1826
|
Deletes a version of a SageMaker image.
|
|
1716
1827
|
|
|
1717
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1828
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_image_version.html)
|
|
1718
1829
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_image_version)
|
|
1719
1830
|
"""
|
|
1720
1831
|
|
|
@@ -1724,7 +1835,7 @@ class SageMakerClient(BaseClient):
|
|
|
1724
1835
|
"""
|
|
1725
1836
|
Deletes an inference component.
|
|
1726
1837
|
|
|
1727
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1838
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_inference_component.html)
|
|
1728
1839
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_inference_component)
|
|
1729
1840
|
"""
|
|
1730
1841
|
|
|
@@ -1734,7 +1845,7 @@ class SageMakerClient(BaseClient):
|
|
|
1734
1845
|
"""
|
|
1735
1846
|
Deletes an inference experiment.
|
|
1736
1847
|
|
|
1737
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1848
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_inference_experiment.html)
|
|
1738
1849
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_inference_experiment)
|
|
1739
1850
|
"""
|
|
1740
1851
|
|
|
@@ -1744,7 +1855,7 @@ class SageMakerClient(BaseClient):
|
|
|
1744
1855
|
"""
|
|
1745
1856
|
Deletes an MLflow Tracking Server.
|
|
1746
1857
|
|
|
1747
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1858
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_mlflow_tracking_server.html)
|
|
1748
1859
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_mlflow_tracking_server)
|
|
1749
1860
|
"""
|
|
1750
1861
|
|
|
@@ -1754,7 +1865,7 @@ class SageMakerClient(BaseClient):
|
|
|
1754
1865
|
"""
|
|
1755
1866
|
Deletes a model.
|
|
1756
1867
|
|
|
1757
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1868
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model.html)
|
|
1758
1869
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model)
|
|
1759
1870
|
"""
|
|
1760
1871
|
|
|
@@ -1764,7 +1875,7 @@ class SageMakerClient(BaseClient):
|
|
|
1764
1875
|
"""
|
|
1765
1876
|
Deletes an Amazon SageMaker model bias job definition.
|
|
1766
1877
|
|
|
1767
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1878
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_bias_job_definition.html)
|
|
1768
1879
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_bias_job_definition)
|
|
1769
1880
|
"""
|
|
1770
1881
|
|
|
@@ -1774,7 +1885,7 @@ class SageMakerClient(BaseClient):
|
|
|
1774
1885
|
"""
|
|
1775
1886
|
Deletes an Amazon SageMaker Model Card.
|
|
1776
1887
|
|
|
1777
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1888
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_card.html)
|
|
1778
1889
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_card)
|
|
1779
1890
|
"""
|
|
1780
1891
|
|
|
@@ -1784,7 +1895,7 @@ class SageMakerClient(BaseClient):
|
|
|
1784
1895
|
"""
|
|
1785
1896
|
Deletes an Amazon SageMaker model explainability job definition.
|
|
1786
1897
|
|
|
1787
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1898
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_explainability_job_definition.html)
|
|
1788
1899
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_explainability_job_definition)
|
|
1789
1900
|
"""
|
|
1790
1901
|
|
|
@@ -1794,7 +1905,7 @@ class SageMakerClient(BaseClient):
|
|
|
1794
1905
|
"""
|
|
1795
1906
|
Deletes a model package.
|
|
1796
1907
|
|
|
1797
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1908
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_package.html)
|
|
1798
1909
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_package)
|
|
1799
1910
|
"""
|
|
1800
1911
|
|
|
@@ -1804,7 +1915,7 @@ class SageMakerClient(BaseClient):
|
|
|
1804
1915
|
"""
|
|
1805
1916
|
Deletes the specified model group.
|
|
1806
1917
|
|
|
1807
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1918
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_package_group.html)
|
|
1808
1919
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_package_group)
|
|
1809
1920
|
"""
|
|
1810
1921
|
|
|
@@ -1814,7 +1925,7 @@ class SageMakerClient(BaseClient):
|
|
|
1814
1925
|
"""
|
|
1815
1926
|
Deletes a model group resource policy.
|
|
1816
1927
|
|
|
1817
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1928
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_package_group_policy.html)
|
|
1818
1929
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_package_group_policy)
|
|
1819
1930
|
"""
|
|
1820
1931
|
|
|
@@ -1824,7 +1935,7 @@ class SageMakerClient(BaseClient):
|
|
|
1824
1935
|
"""
|
|
1825
1936
|
Deletes the secified model quality monitoring job definition.
|
|
1826
1937
|
|
|
1827
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1938
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_model_quality_job_definition.html)
|
|
1828
1939
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_model_quality_job_definition)
|
|
1829
1940
|
"""
|
|
1830
1941
|
|
|
@@ -1834,7 +1945,7 @@ class SageMakerClient(BaseClient):
|
|
|
1834
1945
|
"""
|
|
1835
1946
|
Deletes a monitoring schedule.
|
|
1836
1947
|
|
|
1837
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1948
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_monitoring_schedule.html)
|
|
1838
1949
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_monitoring_schedule)
|
|
1839
1950
|
"""
|
|
1840
1951
|
|
|
@@ -1844,7 +1955,7 @@ class SageMakerClient(BaseClient):
|
|
|
1844
1955
|
"""
|
|
1845
1956
|
Deletes an SageMaker notebook instance.
|
|
1846
1957
|
|
|
1847
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1958
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_notebook_instance.html)
|
|
1848
1959
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_notebook_instance)
|
|
1849
1960
|
"""
|
|
1850
1961
|
|
|
@@ -1854,7 +1965,7 @@ class SageMakerClient(BaseClient):
|
|
|
1854
1965
|
"""
|
|
1855
1966
|
Deletes a notebook instance lifecycle configuration.
|
|
1856
1967
|
|
|
1857
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1968
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_notebook_instance_lifecycle_config.html)
|
|
1858
1969
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_notebook_instance_lifecycle_config)
|
|
1859
1970
|
"""
|
|
1860
1971
|
|
|
@@ -1864,17 +1975,27 @@ class SageMakerClient(BaseClient):
|
|
|
1864
1975
|
"""
|
|
1865
1976
|
Deletes an optimization job.
|
|
1866
1977
|
|
|
1867
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1978
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_optimization_job.html)
|
|
1868
1979
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_optimization_job)
|
|
1869
1980
|
"""
|
|
1870
1981
|
|
|
1982
|
+
def delete_partner_app(
|
|
1983
|
+
self, **kwargs: Unpack[DeletePartnerAppRequestRequestTypeDef]
|
|
1984
|
+
) -> DeletePartnerAppResponseTypeDef:
|
|
1985
|
+
"""
|
|
1986
|
+
Deletes a SageMaker Partner AI App.
|
|
1987
|
+
|
|
1988
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_partner_app.html)
|
|
1989
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_partner_app)
|
|
1990
|
+
"""
|
|
1991
|
+
|
|
1871
1992
|
def delete_pipeline(
|
|
1872
1993
|
self, **kwargs: Unpack[DeletePipelineRequestRequestTypeDef]
|
|
1873
1994
|
) -> DeletePipelineResponseTypeDef:
|
|
1874
1995
|
"""
|
|
1875
1996
|
Deletes a pipeline if there are no running instances of the pipeline.
|
|
1876
1997
|
|
|
1877
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
1998
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_pipeline.html)
|
|
1878
1999
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_pipeline)
|
|
1879
2000
|
"""
|
|
1880
2001
|
|
|
@@ -1884,7 +2005,7 @@ class SageMakerClient(BaseClient):
|
|
|
1884
2005
|
"""
|
|
1885
2006
|
Delete the specified project.
|
|
1886
2007
|
|
|
1887
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2008
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_project.html)
|
|
1888
2009
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_project)
|
|
1889
2010
|
"""
|
|
1890
2011
|
|
|
@@ -1894,7 +2015,7 @@ class SageMakerClient(BaseClient):
|
|
|
1894
2015
|
"""
|
|
1895
2016
|
Used to delete a space.
|
|
1896
2017
|
|
|
1897
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2018
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_space.html)
|
|
1898
2019
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_space)
|
|
1899
2020
|
"""
|
|
1900
2021
|
|
|
@@ -1904,7 +2025,7 @@ class SageMakerClient(BaseClient):
|
|
|
1904
2025
|
"""
|
|
1905
2026
|
Deletes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
1906
2027
|
|
|
1907
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2028
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_studio_lifecycle_config.html)
|
|
1908
2029
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_studio_lifecycle_config)
|
|
1909
2030
|
"""
|
|
1910
2031
|
|
|
@@ -1912,7 +2033,7 @@ class SageMakerClient(BaseClient):
|
|
|
1912
2033
|
"""
|
|
1913
2034
|
Deletes the specified tags from an SageMaker resource.
|
|
1914
2035
|
|
|
1915
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2036
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_tags.html)
|
|
1916
2037
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_tags)
|
|
1917
2038
|
"""
|
|
1918
2039
|
|
|
@@ -1922,7 +2043,7 @@ class SageMakerClient(BaseClient):
|
|
|
1922
2043
|
"""
|
|
1923
2044
|
Deletes the specified trial.
|
|
1924
2045
|
|
|
1925
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2046
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_trial.html)
|
|
1926
2047
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_trial)
|
|
1927
2048
|
"""
|
|
1928
2049
|
|
|
@@ -1932,7 +2053,7 @@ class SageMakerClient(BaseClient):
|
|
|
1932
2053
|
"""
|
|
1933
2054
|
Deletes the specified trial component.
|
|
1934
2055
|
|
|
1935
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2056
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_trial_component.html)
|
|
1936
2057
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_trial_component)
|
|
1937
2058
|
"""
|
|
1938
2059
|
|
|
@@ -1942,7 +2063,7 @@ class SageMakerClient(BaseClient):
|
|
|
1942
2063
|
"""
|
|
1943
2064
|
Deletes a user profile.
|
|
1944
2065
|
|
|
1945
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2066
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_user_profile.html)
|
|
1946
2067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_user_profile)
|
|
1947
2068
|
"""
|
|
1948
2069
|
|
|
@@ -1952,7 +2073,7 @@ class SageMakerClient(BaseClient):
|
|
|
1952
2073
|
"""
|
|
1953
2074
|
Use this operation to delete a workforce.
|
|
1954
2075
|
|
|
1955
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2076
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_workforce.html)
|
|
1956
2077
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_workforce)
|
|
1957
2078
|
"""
|
|
1958
2079
|
|
|
@@ -1962,7 +2083,7 @@ class SageMakerClient(BaseClient):
|
|
|
1962
2083
|
"""
|
|
1963
2084
|
Deletes an existing work team.
|
|
1964
2085
|
|
|
1965
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2086
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/delete_workteam.html)
|
|
1966
2087
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#delete_workteam)
|
|
1967
2088
|
"""
|
|
1968
2089
|
|
|
@@ -1972,7 +2093,7 @@ class SageMakerClient(BaseClient):
|
|
|
1972
2093
|
"""
|
|
1973
2094
|
Deregisters the specified devices.
|
|
1974
2095
|
|
|
1975
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2096
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/deregister_devices.html)
|
|
1976
2097
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#deregister_devices)
|
|
1977
2098
|
"""
|
|
1978
2099
|
|
|
@@ -1982,7 +2103,7 @@ class SageMakerClient(BaseClient):
|
|
|
1982
2103
|
"""
|
|
1983
2104
|
Describes an action.
|
|
1984
2105
|
|
|
1985
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_action.html)
|
|
1986
2107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_action)
|
|
1987
2108
|
"""
|
|
1988
2109
|
|
|
@@ -1992,7 +2113,7 @@ class SageMakerClient(BaseClient):
|
|
|
1992
2113
|
"""
|
|
1993
2114
|
Returns a description of the specified algorithm that is in your account.
|
|
1994
2115
|
|
|
1995
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2116
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_algorithm.html)
|
|
1996
2117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_algorithm)
|
|
1997
2118
|
"""
|
|
1998
2119
|
|
|
@@ -2002,7 +2123,7 @@ class SageMakerClient(BaseClient):
|
|
|
2002
2123
|
"""
|
|
2003
2124
|
Describes the app.
|
|
2004
2125
|
|
|
2005
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_app.html)
|
|
2006
2127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_app)
|
|
2007
2128
|
"""
|
|
2008
2129
|
|
|
@@ -2012,7 +2133,7 @@ class SageMakerClient(BaseClient):
|
|
|
2012
2133
|
"""
|
|
2013
2134
|
Describes an AppImageConfig.
|
|
2014
2135
|
|
|
2015
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_app_image_config.html)
|
|
2016
2137
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_app_image_config)
|
|
2017
2138
|
"""
|
|
2018
2139
|
|
|
@@ -2022,7 +2143,7 @@ class SageMakerClient(BaseClient):
|
|
|
2022
2143
|
"""
|
|
2023
2144
|
Describes an artifact.
|
|
2024
2145
|
|
|
2025
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_artifact.html)
|
|
2026
2147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_artifact)
|
|
2027
2148
|
"""
|
|
2028
2149
|
|
|
@@ -2030,10 +2151,10 @@ class SageMakerClient(BaseClient):
|
|
|
2030
2151
|
self, **kwargs: Unpack[DescribeAutoMLJobRequestRequestTypeDef]
|
|
2031
2152
|
) -> DescribeAutoMLJobResponseTypeDef:
|
|
2032
2153
|
"""
|
|
2033
|
-
Returns information about an AutoML job created by calling
|
|
2034
|
-
|
|
2154
|
+
Returns information about an AutoML job created by calling <a
|
|
2155
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2035
2156
|
|
|
2036
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2157
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job.html)
|
|
2037
2158
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job)
|
|
2038
2159
|
"""
|
|
2039
2160
|
|
|
@@ -2041,12 +2162,12 @@ class SageMakerClient(BaseClient):
|
|
|
2041
2162
|
self, **kwargs: Unpack[DescribeAutoMLJobV2RequestRequestTypeDef]
|
|
2042
2163
|
) -> DescribeAutoMLJobV2ResponseTypeDef:
|
|
2043
2164
|
"""
|
|
2044
|
-
Returns information about an AutoML job created by calling
|
|
2045
|
-
|
|
2046
|
-
or
|
|
2047
|
-
|
|
2165
|
+
Returns information about an AutoML job created by calling <a
|
|
2166
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJobV2.html">CreateAutoMLJobV2</a>
|
|
2167
|
+
or <a
|
|
2168
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateAutoMLJob.html">CreateAutoMLJob</a>.
|
|
2048
2169
|
|
|
2049
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2170
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_auto_ml_job_v2.html)
|
|
2050
2171
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_auto_ml_job_v2)
|
|
2051
2172
|
"""
|
|
2052
2173
|
|
|
@@ -2056,7 +2177,7 @@ class SageMakerClient(BaseClient):
|
|
|
2056
2177
|
"""
|
|
2057
2178
|
Retrieves information of a SageMaker HyperPod cluster.
|
|
2058
2179
|
|
|
2059
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2180
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster.html)
|
|
2060
2181
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2061
2182
|
"""
|
|
2062
2183
|
|
|
@@ -2064,21 +2185,30 @@ class SageMakerClient(BaseClient):
|
|
|
2064
2185
|
self, **kwargs: Unpack[DescribeClusterNodeRequestRequestTypeDef]
|
|
2065
2186
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
2066
2187
|
"""
|
|
2067
|
-
Retrieves information of a node (also called a
|
|
2068
|
-
SageMaker HyperPod
|
|
2069
|
-
cluster.
|
|
2188
|
+
Retrieves information of a node (also called a <i>instance</i> interchangeably)
|
|
2189
|
+
of a SageMaker HyperPod cluster.
|
|
2070
2190
|
|
|
2071
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2191
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_node.html)
|
|
2072
2192
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_node)
|
|
2073
2193
|
"""
|
|
2074
2194
|
|
|
2195
|
+
def describe_cluster_scheduler_config(
|
|
2196
|
+
self, **kwargs: Unpack[DescribeClusterSchedulerConfigRequestRequestTypeDef]
|
|
2197
|
+
) -> DescribeClusterSchedulerConfigResponseTypeDef:
|
|
2198
|
+
"""
|
|
2199
|
+
Description of the cluster policy.
|
|
2200
|
+
|
|
2201
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_scheduler_config.html)
|
|
2202
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_scheduler_config)
|
|
2203
|
+
"""
|
|
2204
|
+
|
|
2075
2205
|
def describe_code_repository(
|
|
2076
2206
|
self, **kwargs: Unpack[DescribeCodeRepositoryInputRequestTypeDef]
|
|
2077
2207
|
) -> DescribeCodeRepositoryOutputTypeDef:
|
|
2078
2208
|
"""
|
|
2079
2209
|
Gets details about the specified Git repository.
|
|
2080
2210
|
|
|
2081
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2211
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_code_repository.html)
|
|
2082
2212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_code_repository)
|
|
2083
2213
|
"""
|
|
2084
2214
|
|
|
@@ -2088,17 +2218,27 @@ class SageMakerClient(BaseClient):
|
|
|
2088
2218
|
"""
|
|
2089
2219
|
Returns information about a model compilation job.
|
|
2090
2220
|
|
|
2091
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2221
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_compilation_job.html)
|
|
2092
2222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compilation_job)
|
|
2093
2223
|
"""
|
|
2094
2224
|
|
|
2225
|
+
def describe_compute_quota(
|
|
2226
|
+
self, **kwargs: Unpack[DescribeComputeQuotaRequestRequestTypeDef]
|
|
2227
|
+
) -> DescribeComputeQuotaResponseTypeDef:
|
|
2228
|
+
"""
|
|
2229
|
+
Description of the compute allocation definition.
|
|
2230
|
+
|
|
2231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_compute_quota.html)
|
|
2232
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_compute_quota)
|
|
2233
|
+
"""
|
|
2234
|
+
|
|
2095
2235
|
def describe_context(
|
|
2096
2236
|
self, **kwargs: Unpack[DescribeContextRequestRequestTypeDef]
|
|
2097
2237
|
) -> DescribeContextResponseTypeDef:
|
|
2098
2238
|
"""
|
|
2099
2239
|
Describes a context.
|
|
2100
2240
|
|
|
2101
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2241
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_context.html)
|
|
2102
2242
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_context)
|
|
2103
2243
|
"""
|
|
2104
2244
|
|
|
@@ -2108,7 +2248,7 @@ class SageMakerClient(BaseClient):
|
|
|
2108
2248
|
"""
|
|
2109
2249
|
Gets the details of a data quality monitoring job definition.
|
|
2110
2250
|
|
|
2111
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_data_quality_job_definition.html)
|
|
2112
2252
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_data_quality_job_definition)
|
|
2113
2253
|
"""
|
|
2114
2254
|
|
|
@@ -2118,7 +2258,7 @@ class SageMakerClient(BaseClient):
|
|
|
2118
2258
|
"""
|
|
2119
2259
|
Describes the device.
|
|
2120
2260
|
|
|
2121
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2261
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_device.html)
|
|
2122
2262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_device)
|
|
2123
2263
|
"""
|
|
2124
2264
|
|
|
@@ -2128,7 +2268,7 @@ class SageMakerClient(BaseClient):
|
|
|
2128
2268
|
"""
|
|
2129
2269
|
A description of the fleet the device belongs to.
|
|
2130
2270
|
|
|
2131
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2271
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_device_fleet.html)
|
|
2132
2272
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_device_fleet)
|
|
2133
2273
|
"""
|
|
2134
2274
|
|
|
@@ -2138,7 +2278,7 @@ class SageMakerClient(BaseClient):
|
|
|
2138
2278
|
"""
|
|
2139
2279
|
The description of the domain.
|
|
2140
2280
|
|
|
2141
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2281
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_domain.html)
|
|
2142
2282
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_domain)
|
|
2143
2283
|
"""
|
|
2144
2284
|
|
|
@@ -2148,7 +2288,7 @@ class SageMakerClient(BaseClient):
|
|
|
2148
2288
|
"""
|
|
2149
2289
|
Describes an edge deployment plan with deployment status per stage.
|
|
2150
2290
|
|
|
2151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_edge_deployment_plan.html)
|
|
2152
2292
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_edge_deployment_plan)
|
|
2153
2293
|
"""
|
|
2154
2294
|
|
|
@@ -2158,7 +2298,7 @@ class SageMakerClient(BaseClient):
|
|
|
2158
2298
|
"""
|
|
2159
2299
|
A description of edge packaging jobs.
|
|
2160
2300
|
|
|
2161
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2301
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_edge_packaging_job.html)
|
|
2162
2302
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_edge_packaging_job)
|
|
2163
2303
|
"""
|
|
2164
2304
|
|
|
@@ -2168,7 +2308,7 @@ class SageMakerClient(BaseClient):
|
|
|
2168
2308
|
"""
|
|
2169
2309
|
Returns the description of an endpoint.
|
|
2170
2310
|
|
|
2171
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2311
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_endpoint.html)
|
|
2172
2312
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_endpoint)
|
|
2173
2313
|
"""
|
|
2174
2314
|
|
|
@@ -2177,10 +2317,9 @@ class SageMakerClient(BaseClient):
|
|
|
2177
2317
|
) -> DescribeEndpointConfigOutputTypeDef:
|
|
2178
2318
|
"""
|
|
2179
2319
|
Returns the description of an endpoint configuration created using the
|
|
2180
|
-
|
|
2181
|
-
API.
|
|
2320
|
+
<code>CreateEndpointConfig</code> API.
|
|
2182
2321
|
|
|
2183
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2322
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_endpoint_config.html)
|
|
2184
2323
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_endpoint_config)
|
|
2185
2324
|
"""
|
|
2186
2325
|
|
|
@@ -2190,7 +2329,7 @@ class SageMakerClient(BaseClient):
|
|
|
2190
2329
|
"""
|
|
2191
2330
|
Provides a list of an experiment's properties.
|
|
2192
2331
|
|
|
2193
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2332
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_experiment.html)
|
|
2194
2333
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_experiment)
|
|
2195
2334
|
"""
|
|
2196
2335
|
|
|
@@ -2198,9 +2337,9 @@ class SageMakerClient(BaseClient):
|
|
|
2198
2337
|
self, **kwargs: Unpack[DescribeFeatureGroupRequestRequestTypeDef]
|
|
2199
2338
|
) -> DescribeFeatureGroupResponseTypeDef:
|
|
2200
2339
|
"""
|
|
2201
|
-
Use this operation to describe a
|
|
2340
|
+
Use this operation to describe a <code>FeatureGroup</code>.
|
|
2202
2341
|
|
|
2203
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2342
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_feature_group.html)
|
|
2204
2343
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_feature_group)
|
|
2205
2344
|
"""
|
|
2206
2345
|
|
|
@@ -2210,7 +2349,7 @@ class SageMakerClient(BaseClient):
|
|
|
2210
2349
|
"""
|
|
2211
2350
|
Shows the metadata for a feature within a feature group.
|
|
2212
2351
|
|
|
2213
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2352
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_feature_metadata.html)
|
|
2214
2353
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_feature_metadata)
|
|
2215
2354
|
"""
|
|
2216
2355
|
|
|
@@ -2220,7 +2359,7 @@ class SageMakerClient(BaseClient):
|
|
|
2220
2359
|
"""
|
|
2221
2360
|
Returns information about the specified flow definition.
|
|
2222
2361
|
|
|
2223
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2362
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_flow_definition.html)
|
|
2224
2363
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_flow_definition)
|
|
2225
2364
|
"""
|
|
2226
2365
|
|
|
@@ -2230,7 +2369,7 @@ class SageMakerClient(BaseClient):
|
|
|
2230
2369
|
"""
|
|
2231
2370
|
Describes a hub.
|
|
2232
2371
|
|
|
2233
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2372
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_hub.html)
|
|
2234
2373
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_hub)
|
|
2235
2374
|
"""
|
|
2236
2375
|
|
|
@@ -2240,7 +2379,7 @@ class SageMakerClient(BaseClient):
|
|
|
2240
2379
|
"""
|
|
2241
2380
|
Describe the content of a hub.
|
|
2242
2381
|
|
|
2243
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2382
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_hub_content.html)
|
|
2244
2383
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_hub_content)
|
|
2245
2384
|
"""
|
|
2246
2385
|
|
|
@@ -2251,7 +2390,7 @@ class SageMakerClient(BaseClient):
|
|
|
2251
2390
|
Returns information about the requested human task user interface (worker task
|
|
2252
2391
|
template).
|
|
2253
2392
|
|
|
2254
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2393
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_human_task_ui.html)
|
|
2255
2394
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_human_task_ui)
|
|
2256
2395
|
"""
|
|
2257
2396
|
|
|
@@ -2262,7 +2401,7 @@ class SageMakerClient(BaseClient):
|
|
|
2262
2401
|
Returns a description of a hyperparameter tuning job, depending on the fields
|
|
2263
2402
|
selected.
|
|
2264
2403
|
|
|
2265
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2404
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_hyper_parameter_tuning_job.html)
|
|
2266
2405
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_hyper_parameter_tuning_job)
|
|
2267
2406
|
"""
|
|
2268
2407
|
|
|
@@ -2272,7 +2411,7 @@ class SageMakerClient(BaseClient):
|
|
|
2272
2411
|
"""
|
|
2273
2412
|
Describes a SageMaker image.
|
|
2274
2413
|
|
|
2275
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2414
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image.html)
|
|
2276
2415
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image)
|
|
2277
2416
|
"""
|
|
2278
2417
|
|
|
@@ -2282,7 +2421,7 @@ class SageMakerClient(BaseClient):
|
|
|
2282
2421
|
"""
|
|
2283
2422
|
Describes a version of a SageMaker image.
|
|
2284
2423
|
|
|
2285
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2424
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_image_version.html)
|
|
2286
2425
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_image_version)
|
|
2287
2426
|
"""
|
|
2288
2427
|
|
|
@@ -2292,7 +2431,7 @@ class SageMakerClient(BaseClient):
|
|
|
2292
2431
|
"""
|
|
2293
2432
|
Returns information about an inference component.
|
|
2294
2433
|
|
|
2295
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2434
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_inference_component.html)
|
|
2296
2435
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_inference_component)
|
|
2297
2436
|
"""
|
|
2298
2437
|
|
|
@@ -2302,7 +2441,7 @@ class SageMakerClient(BaseClient):
|
|
|
2302
2441
|
"""
|
|
2303
2442
|
Returns details about an inference experiment.
|
|
2304
2443
|
|
|
2305
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2444
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_inference_experiment.html)
|
|
2306
2445
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_inference_experiment)
|
|
2307
2446
|
"""
|
|
2308
2447
|
|
|
@@ -2312,7 +2451,7 @@ class SageMakerClient(BaseClient):
|
|
|
2312
2451
|
"""
|
|
2313
2452
|
Provides the results of the Inference Recommender job.
|
|
2314
2453
|
|
|
2315
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2454
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_inference_recommendations_job.html)
|
|
2316
2455
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_inference_recommendations_job)
|
|
2317
2456
|
"""
|
|
2318
2457
|
|
|
@@ -2322,7 +2461,7 @@ class SageMakerClient(BaseClient):
|
|
|
2322
2461
|
"""
|
|
2323
2462
|
Gets information about a labeling job.
|
|
2324
2463
|
|
|
2325
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2464
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_labeling_job.html)
|
|
2326
2465
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_labeling_job)
|
|
2327
2466
|
"""
|
|
2328
2467
|
|
|
@@ -2332,7 +2471,7 @@ class SageMakerClient(BaseClient):
|
|
|
2332
2471
|
"""
|
|
2333
2472
|
Provides a list of properties for the requested lineage group.
|
|
2334
2473
|
|
|
2335
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2474
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_lineage_group.html)
|
|
2336
2475
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_lineage_group)
|
|
2337
2476
|
"""
|
|
2338
2477
|
|
|
@@ -2342,7 +2481,7 @@ class SageMakerClient(BaseClient):
|
|
|
2342
2481
|
"""
|
|
2343
2482
|
Returns information about an MLflow Tracking Server.
|
|
2344
2483
|
|
|
2345
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2484
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_mlflow_tracking_server.html)
|
|
2346
2485
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_mlflow_tracking_server)
|
|
2347
2486
|
"""
|
|
2348
2487
|
|
|
@@ -2350,9 +2489,9 @@ class SageMakerClient(BaseClient):
|
|
|
2350
2489
|
self, **kwargs: Unpack[DescribeModelInputRequestTypeDef]
|
|
2351
2490
|
) -> DescribeModelOutputTypeDef:
|
|
2352
2491
|
"""
|
|
2353
|
-
Describes a model that you created using the
|
|
2492
|
+
Describes a model that you created using the <code>CreateModel</code> API.
|
|
2354
2493
|
|
|
2355
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2494
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model.html)
|
|
2356
2495
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model)
|
|
2357
2496
|
"""
|
|
2358
2497
|
|
|
@@ -2362,7 +2501,7 @@ class SageMakerClient(BaseClient):
|
|
|
2362
2501
|
"""
|
|
2363
2502
|
Returns a description of a model bias job definition.
|
|
2364
2503
|
|
|
2365
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2504
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_bias_job_definition.html)
|
|
2366
2505
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_bias_job_definition)
|
|
2367
2506
|
"""
|
|
2368
2507
|
|
|
@@ -2371,10 +2510,9 @@ class SageMakerClient(BaseClient):
|
|
|
2371
2510
|
) -> DescribeModelCardResponseTypeDef:
|
|
2372
2511
|
"""
|
|
2373
2512
|
Describes the content, creation time, and security configuration of an Amazon
|
|
2374
|
-
SageMaker Model
|
|
2375
|
-
Card.
|
|
2513
|
+
SageMaker Model Card.
|
|
2376
2514
|
|
|
2377
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2515
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_card.html)
|
|
2378
2516
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_card)
|
|
2379
2517
|
"""
|
|
2380
2518
|
|
|
@@ -2384,7 +2522,7 @@ class SageMakerClient(BaseClient):
|
|
|
2384
2522
|
"""
|
|
2385
2523
|
Describes an Amazon SageMaker Model Card export job.
|
|
2386
2524
|
|
|
2387
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2525
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_card_export_job.html)
|
|
2388
2526
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_card_export_job)
|
|
2389
2527
|
"""
|
|
2390
2528
|
|
|
@@ -2394,7 +2532,7 @@ class SageMakerClient(BaseClient):
|
|
|
2394
2532
|
"""
|
|
2395
2533
|
Returns a description of a model explainability job definition.
|
|
2396
2534
|
|
|
2397
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2535
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_explainability_job_definition.html)
|
|
2398
2536
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_explainability_job_definition)
|
|
2399
2537
|
"""
|
|
2400
2538
|
|
|
@@ -2403,10 +2541,9 @@ class SageMakerClient(BaseClient):
|
|
|
2403
2541
|
) -> DescribeModelPackageOutputTypeDef:
|
|
2404
2542
|
"""
|
|
2405
2543
|
Returns a description of the specified model package, which is used to create
|
|
2406
|
-
SageMaker models or list them on Amazon Web Services
|
|
2407
|
-
Marketplace.
|
|
2544
|
+
SageMaker models or list them on Amazon Web Services Marketplace.
|
|
2408
2545
|
|
|
2409
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2546
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_package.html)
|
|
2410
2547
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_package)
|
|
2411
2548
|
"""
|
|
2412
2549
|
|
|
@@ -2416,7 +2553,7 @@ class SageMakerClient(BaseClient):
|
|
|
2416
2553
|
"""
|
|
2417
2554
|
Gets a description for the specified model group.
|
|
2418
2555
|
|
|
2419
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2556
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_package_group.html)
|
|
2420
2557
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_package_group)
|
|
2421
2558
|
"""
|
|
2422
2559
|
|
|
@@ -2426,7 +2563,7 @@ class SageMakerClient(BaseClient):
|
|
|
2426
2563
|
"""
|
|
2427
2564
|
Returns a description of a model quality job definition.
|
|
2428
2565
|
|
|
2429
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2566
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_model_quality_job_definition.html)
|
|
2430
2567
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_model_quality_job_definition)
|
|
2431
2568
|
"""
|
|
2432
2569
|
|
|
@@ -2436,7 +2573,7 @@ class SageMakerClient(BaseClient):
|
|
|
2436
2573
|
"""
|
|
2437
2574
|
Describes the schedule for a monitoring job.
|
|
2438
2575
|
|
|
2439
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2576
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_monitoring_schedule.html)
|
|
2440
2577
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_monitoring_schedule)
|
|
2441
2578
|
"""
|
|
2442
2579
|
|
|
@@ -2446,7 +2583,7 @@ class SageMakerClient(BaseClient):
|
|
|
2446
2583
|
"""
|
|
2447
2584
|
Returns information about a notebook instance.
|
|
2448
2585
|
|
|
2449
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2586
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_notebook_instance.html)
|
|
2450
2587
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_notebook_instance)
|
|
2451
2588
|
"""
|
|
2452
2589
|
|
|
@@ -2456,7 +2593,7 @@ class SageMakerClient(BaseClient):
|
|
|
2456
2593
|
"""
|
|
2457
2594
|
Returns a description of a notebook instance lifecycle configuration.
|
|
2458
2595
|
|
|
2459
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2596
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_notebook_instance_lifecycle_config.html)
|
|
2460
2597
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_notebook_instance_lifecycle_config)
|
|
2461
2598
|
"""
|
|
2462
2599
|
|
|
@@ -2466,17 +2603,27 @@ class SageMakerClient(BaseClient):
|
|
|
2466
2603
|
"""
|
|
2467
2604
|
Provides the properties of the specified optimization job.
|
|
2468
2605
|
|
|
2469
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2606
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_optimization_job.html)
|
|
2470
2607
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_optimization_job)
|
|
2471
2608
|
"""
|
|
2472
2609
|
|
|
2610
|
+
def describe_partner_app(
|
|
2611
|
+
self, **kwargs: Unpack[DescribePartnerAppRequestRequestTypeDef]
|
|
2612
|
+
) -> DescribePartnerAppResponseTypeDef:
|
|
2613
|
+
"""
|
|
2614
|
+
Gets information about a SageMaker Partner AI App.
|
|
2615
|
+
|
|
2616
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_partner_app.html)
|
|
2617
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_partner_app)
|
|
2618
|
+
"""
|
|
2619
|
+
|
|
2473
2620
|
def describe_pipeline(
|
|
2474
2621
|
self, **kwargs: Unpack[DescribePipelineRequestRequestTypeDef]
|
|
2475
2622
|
) -> DescribePipelineResponseTypeDef:
|
|
2476
2623
|
"""
|
|
2477
2624
|
Describes the details of a pipeline.
|
|
2478
2625
|
|
|
2479
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2626
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_pipeline.html)
|
|
2480
2627
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_pipeline)
|
|
2481
2628
|
"""
|
|
2482
2629
|
|
|
@@ -2486,7 +2633,7 @@ class SageMakerClient(BaseClient):
|
|
|
2486
2633
|
"""
|
|
2487
2634
|
Describes the details of an execution's pipeline definition.
|
|
2488
2635
|
|
|
2489
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2636
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_pipeline_definition_for_execution.html)
|
|
2490
2637
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_pipeline_definition_for_execution)
|
|
2491
2638
|
"""
|
|
2492
2639
|
|
|
@@ -2496,7 +2643,7 @@ class SageMakerClient(BaseClient):
|
|
|
2496
2643
|
"""
|
|
2497
2644
|
Describes the details of a pipeline execution.
|
|
2498
2645
|
|
|
2499
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2646
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_pipeline_execution.html)
|
|
2500
2647
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_pipeline_execution)
|
|
2501
2648
|
"""
|
|
2502
2649
|
|
|
@@ -2506,7 +2653,7 @@ class SageMakerClient(BaseClient):
|
|
|
2506
2653
|
"""
|
|
2507
2654
|
Returns a description of a processing job.
|
|
2508
2655
|
|
|
2509
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2656
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_processing_job.html)
|
|
2510
2657
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_processing_job)
|
|
2511
2658
|
"""
|
|
2512
2659
|
|
|
@@ -2516,7 +2663,7 @@ class SageMakerClient(BaseClient):
|
|
|
2516
2663
|
"""
|
|
2517
2664
|
Describes the details of a project.
|
|
2518
2665
|
|
|
2519
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2666
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_project.html)
|
|
2520
2667
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_project)
|
|
2521
2668
|
"""
|
|
2522
2669
|
|
|
@@ -2526,7 +2673,7 @@ class SageMakerClient(BaseClient):
|
|
|
2526
2673
|
"""
|
|
2527
2674
|
Describes the space.
|
|
2528
2675
|
|
|
2529
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2676
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_space.html)
|
|
2530
2677
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_space)
|
|
2531
2678
|
"""
|
|
2532
2679
|
|
|
@@ -2536,7 +2683,7 @@ class SageMakerClient(BaseClient):
|
|
|
2536
2683
|
"""
|
|
2537
2684
|
Describes the Amazon SageMaker Studio Lifecycle Configuration.
|
|
2538
2685
|
|
|
2539
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2686
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_studio_lifecycle_config.html)
|
|
2540
2687
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_studio_lifecycle_config)
|
|
2541
2688
|
"""
|
|
2542
2689
|
|
|
@@ -2546,7 +2693,7 @@ class SageMakerClient(BaseClient):
|
|
|
2546
2693
|
"""
|
|
2547
2694
|
Gets information about a work team provided by a vendor.
|
|
2548
2695
|
|
|
2549
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2696
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_subscribed_workteam.html)
|
|
2550
2697
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_subscribed_workteam)
|
|
2551
2698
|
"""
|
|
2552
2699
|
|
|
@@ -2556,17 +2703,27 @@ class SageMakerClient(BaseClient):
|
|
|
2556
2703
|
"""
|
|
2557
2704
|
Returns information about a training job.
|
|
2558
2705
|
|
|
2559
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2706
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_training_job.html)
|
|
2560
2707
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_job)
|
|
2561
2708
|
"""
|
|
2562
2709
|
|
|
2710
|
+
def describe_training_plan(
|
|
2711
|
+
self, **kwargs: Unpack[DescribeTrainingPlanRequestRequestTypeDef]
|
|
2712
|
+
) -> DescribeTrainingPlanResponseTypeDef:
|
|
2713
|
+
"""
|
|
2714
|
+
Retrieves detailed information about a specific training plan.
|
|
2715
|
+
|
|
2716
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_training_plan.html)
|
|
2717
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_training_plan)
|
|
2718
|
+
"""
|
|
2719
|
+
|
|
2563
2720
|
def describe_transform_job(
|
|
2564
2721
|
self, **kwargs: Unpack[DescribeTransformJobRequestRequestTypeDef]
|
|
2565
2722
|
) -> DescribeTransformJobResponseTypeDef:
|
|
2566
2723
|
"""
|
|
2567
2724
|
Returns information about a transform job.
|
|
2568
2725
|
|
|
2569
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2726
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_transform_job.html)
|
|
2570
2727
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_transform_job)
|
|
2571
2728
|
"""
|
|
2572
2729
|
|
|
@@ -2576,7 +2733,7 @@ class SageMakerClient(BaseClient):
|
|
|
2576
2733
|
"""
|
|
2577
2734
|
Provides a list of a trial's properties.
|
|
2578
2735
|
|
|
2579
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2736
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_trial.html)
|
|
2580
2737
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_trial)
|
|
2581
2738
|
"""
|
|
2582
2739
|
|
|
@@ -2586,7 +2743,7 @@ class SageMakerClient(BaseClient):
|
|
|
2586
2743
|
"""
|
|
2587
2744
|
Provides a list of a trials component's properties.
|
|
2588
2745
|
|
|
2589
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2746
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_trial_component.html)
|
|
2590
2747
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_trial_component)
|
|
2591
2748
|
"""
|
|
2592
2749
|
|
|
@@ -2596,7 +2753,7 @@ class SageMakerClient(BaseClient):
|
|
|
2596
2753
|
"""
|
|
2597
2754
|
Describes a user profile.
|
|
2598
2755
|
|
|
2599
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2756
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_user_profile.html)
|
|
2600
2757
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_user_profile)
|
|
2601
2758
|
"""
|
|
2602
2759
|
|
|
@@ -2605,10 +2762,10 @@ class SageMakerClient(BaseClient):
|
|
|
2605
2762
|
) -> DescribeWorkforceResponseTypeDef:
|
|
2606
2763
|
"""
|
|
2607
2764
|
Lists private workforce information, including workforce name, Amazon Resource
|
|
2608
|
-
Name (ARN), and, if applicable, allowed IP address ranges (
|
|
2609
|
-
|
|
2765
|
+
Name (ARN), and, if applicable, allowed IP address ranges (<a
|
|
2766
|
+
href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html">CIDRs</a>).
|
|
2610
2767
|
|
|
2611
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2768
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_workforce.html)
|
|
2612
2769
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workforce)
|
|
2613
2770
|
"""
|
|
2614
2771
|
|
|
@@ -2618,7 +2775,7 @@ class SageMakerClient(BaseClient):
|
|
|
2618
2775
|
"""
|
|
2619
2776
|
Gets information about a specific work team.
|
|
2620
2777
|
|
|
2621
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2778
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_workteam.html)
|
|
2622
2779
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_workteam)
|
|
2623
2780
|
"""
|
|
2624
2781
|
|
|
@@ -2626,7 +2783,7 @@ class SageMakerClient(BaseClient):
|
|
|
2626
2783
|
"""
|
|
2627
2784
|
Disables using Service Catalog in SageMaker.
|
|
2628
2785
|
|
|
2629
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2786
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/disable_sagemaker_servicecatalog_portfolio.html)
|
|
2630
2787
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#disable_sagemaker_servicecatalog_portfolio)
|
|
2631
2788
|
"""
|
|
2632
2789
|
|
|
@@ -2636,7 +2793,7 @@ class SageMakerClient(BaseClient):
|
|
|
2636
2793
|
"""
|
|
2637
2794
|
Disassociates a trial component from a trial.
|
|
2638
2795
|
|
|
2639
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2796
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/disassociate_trial_component.html)
|
|
2640
2797
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#disassociate_trial_component)
|
|
2641
2798
|
"""
|
|
2642
2799
|
|
|
@@ -2644,31 +2801,17 @@ class SageMakerClient(BaseClient):
|
|
|
2644
2801
|
"""
|
|
2645
2802
|
Enables using Service Catalog in SageMaker.
|
|
2646
2803
|
|
|
2647
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2804
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/enable_sagemaker_servicecatalog_portfolio.html)
|
|
2648
2805
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#enable_sagemaker_servicecatalog_portfolio)
|
|
2649
2806
|
"""
|
|
2650
2807
|
|
|
2651
|
-
def generate_presigned_url(
|
|
2652
|
-
self,
|
|
2653
|
-
ClientMethod: str,
|
|
2654
|
-
Params: Mapping[str, Any] = ...,
|
|
2655
|
-
ExpiresIn: int = 3600,
|
|
2656
|
-
HttpMethod: str = ...,
|
|
2657
|
-
) -> str:
|
|
2658
|
-
"""
|
|
2659
|
-
Generate a presigned url given a client, its method, and arguments.
|
|
2660
|
-
|
|
2661
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.generate_presigned_url)
|
|
2662
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#generate_presigned_url)
|
|
2663
|
-
"""
|
|
2664
|
-
|
|
2665
2808
|
def get_device_fleet_report(
|
|
2666
2809
|
self, **kwargs: Unpack[GetDeviceFleetReportRequestRequestTypeDef]
|
|
2667
2810
|
) -> GetDeviceFleetReportResponseTypeDef:
|
|
2668
2811
|
"""
|
|
2669
2812
|
Describes a fleet.
|
|
2670
2813
|
|
|
2671
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2814
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_device_fleet_report.html)
|
|
2672
2815
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_device_fleet_report)
|
|
2673
2816
|
"""
|
|
2674
2817
|
|
|
@@ -2678,7 +2821,7 @@ class SageMakerClient(BaseClient):
|
|
|
2678
2821
|
"""
|
|
2679
2822
|
The resource policy for the lineage group.
|
|
2680
2823
|
|
|
2681
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_lineage_group_policy.html)
|
|
2682
2825
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_lineage_group_policy)
|
|
2683
2826
|
"""
|
|
2684
2827
|
|
|
@@ -2688,7 +2831,7 @@ class SageMakerClient(BaseClient):
|
|
|
2688
2831
|
"""
|
|
2689
2832
|
Gets a resource policy that manages access for a model group.
|
|
2690
2833
|
|
|
2691
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2834
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_model_package_group_policy.html)
|
|
2692
2835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_model_package_group_policy)
|
|
2693
2836
|
"""
|
|
2694
2837
|
|
|
@@ -2698,7 +2841,7 @@ class SageMakerClient(BaseClient):
|
|
|
2698
2841
|
"""
|
|
2699
2842
|
Gets the status of Service Catalog in SageMaker.
|
|
2700
2843
|
|
|
2701
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2844
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_sagemaker_servicecatalog_portfolio_status.html)
|
|
2702
2845
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_sagemaker_servicecatalog_portfolio_status)
|
|
2703
2846
|
"""
|
|
2704
2847
|
|
|
@@ -2708,7 +2851,7 @@ class SageMakerClient(BaseClient):
|
|
|
2708
2851
|
"""
|
|
2709
2852
|
Starts an Amazon SageMaker Inference Recommender autoscaling recommendation job.
|
|
2710
2853
|
|
|
2711
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2854
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_scaling_configuration_recommendation.html)
|
|
2712
2855
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_scaling_configuration_recommendation)
|
|
2713
2856
|
"""
|
|
2714
2857
|
|
|
@@ -2718,7 +2861,7 @@ class SageMakerClient(BaseClient):
|
|
|
2718
2861
|
"""
|
|
2719
2862
|
An auto-complete API for the search functionality in the SageMaker console.
|
|
2720
2863
|
|
|
2721
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2864
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_search_suggestions.html)
|
|
2722
2865
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_search_suggestions)
|
|
2723
2866
|
"""
|
|
2724
2867
|
|
|
@@ -2728,7 +2871,7 @@ class SageMakerClient(BaseClient):
|
|
|
2728
2871
|
"""
|
|
2729
2872
|
Import hub content.
|
|
2730
2873
|
|
|
2731
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2874
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/import_hub_content.html)
|
|
2732
2875
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#import_hub_content)
|
|
2733
2876
|
"""
|
|
2734
2877
|
|
|
@@ -2738,7 +2881,7 @@ class SageMakerClient(BaseClient):
|
|
|
2738
2881
|
"""
|
|
2739
2882
|
Lists the actions in your account and their properties.
|
|
2740
2883
|
|
|
2741
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2884
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_actions.html)
|
|
2742
2885
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_actions)
|
|
2743
2886
|
"""
|
|
2744
2887
|
|
|
@@ -2748,7 +2891,7 @@ class SageMakerClient(BaseClient):
|
|
|
2748
2891
|
"""
|
|
2749
2892
|
Lists the machine learning algorithms that have been created.
|
|
2750
2893
|
|
|
2751
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2894
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_algorithms.html)
|
|
2752
2895
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_algorithms)
|
|
2753
2896
|
"""
|
|
2754
2897
|
|
|
@@ -2758,7 +2901,7 @@ class SageMakerClient(BaseClient):
|
|
|
2758
2901
|
"""
|
|
2759
2902
|
Lists the aliases of a specified image or image version.
|
|
2760
2903
|
|
|
2761
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2904
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_aliases.html)
|
|
2762
2905
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_aliases)
|
|
2763
2906
|
"""
|
|
2764
2907
|
|
|
@@ -2768,7 +2911,7 @@ class SageMakerClient(BaseClient):
|
|
|
2768
2911
|
"""
|
|
2769
2912
|
Lists the AppImageConfigs in your account and their properties.
|
|
2770
2913
|
|
|
2771
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2914
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_app_image_configs.html)
|
|
2772
2915
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_app_image_configs)
|
|
2773
2916
|
"""
|
|
2774
2917
|
|
|
@@ -2776,7 +2919,7 @@ class SageMakerClient(BaseClient):
|
|
|
2776
2919
|
"""
|
|
2777
2920
|
Lists apps.
|
|
2778
2921
|
|
|
2779
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2922
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_apps.html)
|
|
2780
2923
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_apps)
|
|
2781
2924
|
"""
|
|
2782
2925
|
|
|
@@ -2786,7 +2929,7 @@ class SageMakerClient(BaseClient):
|
|
|
2786
2929
|
"""
|
|
2787
2930
|
Lists the artifacts in your account and their properties.
|
|
2788
2931
|
|
|
2789
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2932
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_artifacts.html)
|
|
2790
2933
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_artifacts)
|
|
2791
2934
|
"""
|
|
2792
2935
|
|
|
@@ -2796,7 +2939,7 @@ class SageMakerClient(BaseClient):
|
|
|
2796
2939
|
"""
|
|
2797
2940
|
Lists the associations in your account and their properties.
|
|
2798
2941
|
|
|
2799
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2942
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_associations.html)
|
|
2800
2943
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_associations)
|
|
2801
2944
|
"""
|
|
2802
2945
|
|
|
@@ -2806,7 +2949,7 @@ class SageMakerClient(BaseClient):
|
|
|
2806
2949
|
"""
|
|
2807
2950
|
Request a list of jobs.
|
|
2808
2951
|
|
|
2809
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2952
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_auto_ml_jobs.html)
|
|
2810
2953
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_auto_ml_jobs)
|
|
2811
2954
|
"""
|
|
2812
2955
|
|
|
@@ -2816,7 +2959,7 @@ class SageMakerClient(BaseClient):
|
|
|
2816
2959
|
"""
|
|
2817
2960
|
List the candidates created for the job.
|
|
2818
2961
|
|
|
2819
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2962
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_candidates_for_auto_ml_job.html)
|
|
2820
2963
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2821
2964
|
"""
|
|
2822
2965
|
|
|
@@ -2824,21 +2967,30 @@ class SageMakerClient(BaseClient):
|
|
|
2824
2967
|
self, **kwargs: Unpack[ListClusterNodesRequestRequestTypeDef]
|
|
2825
2968
|
) -> ListClusterNodesResponseTypeDef:
|
|
2826
2969
|
"""
|
|
2827
|
-
Retrieves the list of instances (also called
|
|
2828
|
-
SageMaker HyperPod
|
|
2829
|
-
cluster.
|
|
2970
|
+
Retrieves the list of instances (also called <i>nodes</i> interchangeably) in a
|
|
2971
|
+
SageMaker HyperPod cluster.
|
|
2830
2972
|
|
|
2831
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2973
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_nodes.html)
|
|
2832
2974
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_nodes)
|
|
2833
2975
|
"""
|
|
2834
2976
|
|
|
2977
|
+
def list_cluster_scheduler_configs(
|
|
2978
|
+
self, **kwargs: Unpack[ListClusterSchedulerConfigsRequestRequestTypeDef]
|
|
2979
|
+
) -> ListClusterSchedulerConfigsResponseTypeDef:
|
|
2980
|
+
"""
|
|
2981
|
+
List the cluster policy configurations.
|
|
2982
|
+
|
|
2983
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_scheduler_configs.html)
|
|
2984
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_scheduler_configs)
|
|
2985
|
+
"""
|
|
2986
|
+
|
|
2835
2987
|
def list_clusters(
|
|
2836
2988
|
self, **kwargs: Unpack[ListClustersRequestRequestTypeDef]
|
|
2837
2989
|
) -> ListClustersResponseTypeDef:
|
|
2838
2990
|
"""
|
|
2839
2991
|
Retrieves the list of SageMaker HyperPod clusters.
|
|
2840
2992
|
|
|
2841
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
2993
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_clusters.html)
|
|
2842
2994
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_clusters)
|
|
2843
2995
|
"""
|
|
2844
2996
|
|
|
@@ -2848,7 +3000,7 @@ class SageMakerClient(BaseClient):
|
|
|
2848
3000
|
"""
|
|
2849
3001
|
Gets a list of the Git repositories in your account.
|
|
2850
3002
|
|
|
2851
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3003
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_code_repositories.html)
|
|
2852
3004
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_code_repositories)
|
|
2853
3005
|
"""
|
|
2854
3006
|
|
|
@@ -2858,17 +3010,27 @@ class SageMakerClient(BaseClient):
|
|
|
2858
3010
|
"""
|
|
2859
3011
|
Lists model compilation jobs that satisfy various filters.
|
|
2860
3012
|
|
|
2861
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3013
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_compilation_jobs.html)
|
|
2862
3014
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compilation_jobs)
|
|
2863
3015
|
"""
|
|
2864
3016
|
|
|
3017
|
+
def list_compute_quotas(
|
|
3018
|
+
self, **kwargs: Unpack[ListComputeQuotasRequestRequestTypeDef]
|
|
3019
|
+
) -> ListComputeQuotasResponseTypeDef:
|
|
3020
|
+
"""
|
|
3021
|
+
List the resource allocation definitions.
|
|
3022
|
+
|
|
3023
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_compute_quotas.html)
|
|
3024
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_compute_quotas)
|
|
3025
|
+
"""
|
|
3026
|
+
|
|
2865
3027
|
def list_contexts(
|
|
2866
3028
|
self, **kwargs: Unpack[ListContextsRequestRequestTypeDef]
|
|
2867
3029
|
) -> ListContextsResponseTypeDef:
|
|
2868
3030
|
"""
|
|
2869
3031
|
Lists the contexts in your account and their properties.
|
|
2870
3032
|
|
|
2871
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3033
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_contexts.html)
|
|
2872
3034
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_contexts)
|
|
2873
3035
|
"""
|
|
2874
3036
|
|
|
@@ -2878,7 +3040,7 @@ class SageMakerClient(BaseClient):
|
|
|
2878
3040
|
"""
|
|
2879
3041
|
Lists the data quality job definitions in your account.
|
|
2880
3042
|
|
|
2881
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3043
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_data_quality_job_definitions.html)
|
|
2882
3044
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_data_quality_job_definitions)
|
|
2883
3045
|
"""
|
|
2884
3046
|
|
|
@@ -2888,7 +3050,7 @@ class SageMakerClient(BaseClient):
|
|
|
2888
3050
|
"""
|
|
2889
3051
|
Returns a list of devices in the fleet.
|
|
2890
3052
|
|
|
2891
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3053
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_device_fleets.html)
|
|
2892
3054
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_device_fleets)
|
|
2893
3055
|
"""
|
|
2894
3056
|
|
|
@@ -2898,7 +3060,7 @@ class SageMakerClient(BaseClient):
|
|
|
2898
3060
|
"""
|
|
2899
3061
|
A list of devices.
|
|
2900
3062
|
|
|
2901
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3063
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_devices.html)
|
|
2902
3064
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_devices)
|
|
2903
3065
|
"""
|
|
2904
3066
|
|
|
@@ -2908,7 +3070,7 @@ class SageMakerClient(BaseClient):
|
|
|
2908
3070
|
"""
|
|
2909
3071
|
Lists the domains.
|
|
2910
3072
|
|
|
2911
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3073
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_domains.html)
|
|
2912
3074
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_domains)
|
|
2913
3075
|
"""
|
|
2914
3076
|
|
|
@@ -2918,7 +3080,7 @@ class SageMakerClient(BaseClient):
|
|
|
2918
3080
|
"""
|
|
2919
3081
|
Lists all edge deployment plans.
|
|
2920
3082
|
|
|
2921
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3083
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_edge_deployment_plans.html)
|
|
2922
3084
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_edge_deployment_plans)
|
|
2923
3085
|
"""
|
|
2924
3086
|
|
|
@@ -2928,7 +3090,7 @@ class SageMakerClient(BaseClient):
|
|
|
2928
3090
|
"""
|
|
2929
3091
|
Returns a list of edge packaging jobs.
|
|
2930
3092
|
|
|
2931
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3093
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_edge_packaging_jobs.html)
|
|
2932
3094
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_edge_packaging_jobs)
|
|
2933
3095
|
"""
|
|
2934
3096
|
|
|
@@ -2938,7 +3100,7 @@ class SageMakerClient(BaseClient):
|
|
|
2938
3100
|
"""
|
|
2939
3101
|
Lists endpoint configurations.
|
|
2940
3102
|
|
|
2941
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3103
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_endpoint_configs.html)
|
|
2942
3104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_endpoint_configs)
|
|
2943
3105
|
"""
|
|
2944
3106
|
|
|
@@ -2948,7 +3110,7 @@ class SageMakerClient(BaseClient):
|
|
|
2948
3110
|
"""
|
|
2949
3111
|
Lists endpoints.
|
|
2950
3112
|
|
|
2951
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3113
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_endpoints.html)
|
|
2952
3114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_endpoints)
|
|
2953
3115
|
"""
|
|
2954
3116
|
|
|
@@ -2958,7 +3120,7 @@ class SageMakerClient(BaseClient):
|
|
|
2958
3120
|
"""
|
|
2959
3121
|
Lists all the experiments in your account.
|
|
2960
3122
|
|
|
2961
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3123
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_experiments.html)
|
|
2962
3124
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_experiments)
|
|
2963
3125
|
"""
|
|
2964
3126
|
|
|
@@ -2966,9 +3128,9 @@ class SageMakerClient(BaseClient):
|
|
|
2966
3128
|
self, **kwargs: Unpack[ListFeatureGroupsRequestRequestTypeDef]
|
|
2967
3129
|
) -> ListFeatureGroupsResponseTypeDef:
|
|
2968
3130
|
"""
|
|
2969
|
-
List
|
|
3131
|
+
List <code>FeatureGroup</code>s based on given filter and order.
|
|
2970
3132
|
|
|
2971
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_feature_groups.html)
|
|
2972
3134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_feature_groups)
|
|
2973
3135
|
"""
|
|
2974
3136
|
|
|
@@ -2978,7 +3140,7 @@ class SageMakerClient(BaseClient):
|
|
|
2978
3140
|
"""
|
|
2979
3141
|
Returns information about the flow definitions in your account.
|
|
2980
3142
|
|
|
2981
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3143
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_flow_definitions.html)
|
|
2982
3144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_flow_definitions)
|
|
2983
3145
|
"""
|
|
2984
3146
|
|
|
@@ -2988,7 +3150,7 @@ class SageMakerClient(BaseClient):
|
|
|
2988
3150
|
"""
|
|
2989
3151
|
List hub content versions.
|
|
2990
3152
|
|
|
2991
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3153
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hub_content_versions.html)
|
|
2992
3154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_hub_content_versions)
|
|
2993
3155
|
"""
|
|
2994
3156
|
|
|
@@ -2998,7 +3160,7 @@ class SageMakerClient(BaseClient):
|
|
|
2998
3160
|
"""
|
|
2999
3161
|
List the contents of a hub.
|
|
3000
3162
|
|
|
3001
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3163
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hub_contents.html)
|
|
3002
3164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_hub_contents)
|
|
3003
3165
|
"""
|
|
3004
3166
|
|
|
@@ -3006,7 +3168,7 @@ class SageMakerClient(BaseClient):
|
|
|
3006
3168
|
"""
|
|
3007
3169
|
List all existing hubs.
|
|
3008
3170
|
|
|
3009
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hubs.html)
|
|
3010
3172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_hubs)
|
|
3011
3173
|
"""
|
|
3012
3174
|
|
|
@@ -3016,7 +3178,7 @@ class SageMakerClient(BaseClient):
|
|
|
3016
3178
|
"""
|
|
3017
3179
|
Returns information about the human task user interfaces in your account.
|
|
3018
3180
|
|
|
3019
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3181
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_human_task_uis.html)
|
|
3020
3182
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_human_task_uis)
|
|
3021
3183
|
"""
|
|
3022
3184
|
|
|
@@ -3024,12 +3186,11 @@ class SageMakerClient(BaseClient):
|
|
|
3024
3186
|
self, **kwargs: Unpack[ListHyperParameterTuningJobsRequestRequestTypeDef]
|
|
3025
3187
|
) -> ListHyperParameterTuningJobsResponseTypeDef:
|
|
3026
3188
|
"""
|
|
3027
|
-
Gets a list of
|
|
3028
|
-
|
|
3029
|
-
objects that describe the hyperparameter tuning jobs launched in your
|
|
3030
|
-
account.
|
|
3189
|
+
Gets a list of <a
|
|
3190
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTuningJobSummary.html">HyperParameterTuningJobSummary</a>
|
|
3191
|
+
objects that describe the hyperparameter tuning jobs launched in your account.
|
|
3031
3192
|
|
|
3032
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_hyper_parameter_tuning_jobs.html)
|
|
3033
3194
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_hyper_parameter_tuning_jobs)
|
|
3034
3195
|
"""
|
|
3035
3196
|
|
|
@@ -3039,7 +3200,7 @@ class SageMakerClient(BaseClient):
|
|
|
3039
3200
|
"""
|
|
3040
3201
|
Lists the versions of a specified image and their properties.
|
|
3041
3202
|
|
|
3042
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3203
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_image_versions.html)
|
|
3043
3204
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_image_versions)
|
|
3044
3205
|
"""
|
|
3045
3206
|
|
|
@@ -3049,7 +3210,7 @@ class SageMakerClient(BaseClient):
|
|
|
3049
3210
|
"""
|
|
3050
3211
|
Lists the images in your account and their properties.
|
|
3051
3212
|
|
|
3052
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3213
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_images.html)
|
|
3053
3214
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_images)
|
|
3054
3215
|
"""
|
|
3055
3216
|
|
|
@@ -3059,7 +3220,7 @@ class SageMakerClient(BaseClient):
|
|
|
3059
3220
|
"""
|
|
3060
3221
|
Lists the inference components in your account and their properties.
|
|
3061
3222
|
|
|
3062
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3223
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_inference_components.html)
|
|
3063
3224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_inference_components)
|
|
3064
3225
|
"""
|
|
3065
3226
|
|
|
@@ -3069,7 +3230,7 @@ class SageMakerClient(BaseClient):
|
|
|
3069
3230
|
"""
|
|
3070
3231
|
Returns the list of all inference experiments.
|
|
3071
3232
|
|
|
3072
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_inference_experiments.html)
|
|
3073
3234
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_inference_experiments)
|
|
3074
3235
|
"""
|
|
3075
3236
|
|
|
@@ -3079,7 +3240,7 @@ class SageMakerClient(BaseClient):
|
|
|
3079
3240
|
"""
|
|
3080
3241
|
Returns a list of the subtasks for an Inference Recommender job.
|
|
3081
3242
|
|
|
3082
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3243
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_inference_recommendations_job_steps.html)
|
|
3083
3244
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_inference_recommendations_job_steps)
|
|
3084
3245
|
"""
|
|
3085
3246
|
|
|
@@ -3089,7 +3250,7 @@ class SageMakerClient(BaseClient):
|
|
|
3089
3250
|
"""
|
|
3090
3251
|
Lists recommendation jobs that satisfy various filters.
|
|
3091
3252
|
|
|
3092
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_inference_recommendations_jobs.html)
|
|
3093
3254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_inference_recommendations_jobs)
|
|
3094
3255
|
"""
|
|
3095
3256
|
|
|
@@ -3099,7 +3260,7 @@ class SageMakerClient(BaseClient):
|
|
|
3099
3260
|
"""
|
|
3100
3261
|
Gets a list of labeling jobs.
|
|
3101
3262
|
|
|
3102
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3263
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_labeling_jobs.html)
|
|
3103
3264
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_labeling_jobs)
|
|
3104
3265
|
"""
|
|
3105
3266
|
|
|
@@ -3109,7 +3270,7 @@ class SageMakerClient(BaseClient):
|
|
|
3109
3270
|
"""
|
|
3110
3271
|
Gets a list of labeling jobs assigned to a specified work team.
|
|
3111
3272
|
|
|
3112
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3273
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_labeling_jobs_for_workteam.html)
|
|
3113
3274
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_labeling_jobs_for_workteam)
|
|
3114
3275
|
"""
|
|
3115
3276
|
|
|
@@ -3119,7 +3280,7 @@ class SageMakerClient(BaseClient):
|
|
|
3119
3280
|
"""
|
|
3120
3281
|
A list of lineage groups shared with your Amazon Web Services account.
|
|
3121
3282
|
|
|
3122
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3283
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_lineage_groups.html)
|
|
3123
3284
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_lineage_groups)
|
|
3124
3285
|
"""
|
|
3125
3286
|
|
|
@@ -3129,7 +3290,7 @@ class SageMakerClient(BaseClient):
|
|
|
3129
3290
|
"""
|
|
3130
3291
|
Lists all MLflow Tracking Servers.
|
|
3131
3292
|
|
|
3132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3293
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_mlflow_tracking_servers.html)
|
|
3133
3294
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_mlflow_tracking_servers)
|
|
3134
3295
|
"""
|
|
3135
3296
|
|
|
@@ -3139,7 +3300,7 @@ class SageMakerClient(BaseClient):
|
|
|
3139
3300
|
"""
|
|
3140
3301
|
Lists model bias jobs definitions that satisfy various filters.
|
|
3141
3302
|
|
|
3142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3303
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_bias_job_definitions.html)
|
|
3143
3304
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_bias_job_definitions)
|
|
3144
3305
|
"""
|
|
3145
3306
|
|
|
@@ -3149,7 +3310,7 @@ class SageMakerClient(BaseClient):
|
|
|
3149
3310
|
"""
|
|
3150
3311
|
List the export jobs for the Amazon SageMaker Model Card.
|
|
3151
3312
|
|
|
3152
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3313
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_card_export_jobs.html)
|
|
3153
3314
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_card_export_jobs)
|
|
3154
3315
|
"""
|
|
3155
3316
|
|
|
@@ -3159,7 +3320,7 @@ class SageMakerClient(BaseClient):
|
|
|
3159
3320
|
"""
|
|
3160
3321
|
List existing versions of an Amazon SageMaker Model Card.
|
|
3161
3322
|
|
|
3162
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3323
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_card_versions.html)
|
|
3163
3324
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_card_versions)
|
|
3164
3325
|
"""
|
|
3165
3326
|
|
|
@@ -3169,7 +3330,7 @@ class SageMakerClient(BaseClient):
|
|
|
3169
3330
|
"""
|
|
3170
3331
|
List existing model cards.
|
|
3171
3332
|
|
|
3172
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3333
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_cards.html)
|
|
3173
3334
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_cards)
|
|
3174
3335
|
"""
|
|
3175
3336
|
|
|
@@ -3179,7 +3340,7 @@ class SageMakerClient(BaseClient):
|
|
|
3179
3340
|
"""
|
|
3180
3341
|
Lists model explainability job definitions that satisfy various filters.
|
|
3181
3342
|
|
|
3182
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3343
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_explainability_job_definitions.html)
|
|
3183
3344
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_explainability_job_definitions)
|
|
3184
3345
|
"""
|
|
3185
3346
|
|
|
@@ -3188,10 +3349,9 @@ class SageMakerClient(BaseClient):
|
|
|
3188
3349
|
) -> ListModelMetadataResponseTypeDef:
|
|
3189
3350
|
"""
|
|
3190
3351
|
Lists the domain, framework, task, and model name of standard machine learning
|
|
3191
|
-
models found in common model
|
|
3192
|
-
zoos.
|
|
3352
|
+
models found in common model zoos.
|
|
3193
3353
|
|
|
3194
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3354
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_metadata.html)
|
|
3195
3355
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_metadata)
|
|
3196
3356
|
"""
|
|
3197
3357
|
|
|
@@ -3201,7 +3361,7 @@ class SageMakerClient(BaseClient):
|
|
|
3201
3361
|
"""
|
|
3202
3362
|
Gets a list of the model groups in your Amazon Web Services account.
|
|
3203
3363
|
|
|
3204
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3364
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_package_groups.html)
|
|
3205
3365
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_package_groups)
|
|
3206
3366
|
"""
|
|
3207
3367
|
|
|
@@ -3211,7 +3371,7 @@ class SageMakerClient(BaseClient):
|
|
|
3211
3371
|
"""
|
|
3212
3372
|
Lists the model packages that have been created.
|
|
3213
3373
|
|
|
3214
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3374
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_packages.html)
|
|
3215
3375
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_packages)
|
|
3216
3376
|
"""
|
|
3217
3377
|
|
|
@@ -3221,7 +3381,7 @@ class SageMakerClient(BaseClient):
|
|
|
3221
3381
|
"""
|
|
3222
3382
|
Gets a list of model quality monitoring job definitions in your account.
|
|
3223
3383
|
|
|
3224
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3384
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_model_quality_job_definitions.html)
|
|
3225
3385
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_model_quality_job_definitions)
|
|
3226
3386
|
"""
|
|
3227
3387
|
|
|
@@ -3229,9 +3389,9 @@ class SageMakerClient(BaseClient):
|
|
|
3229
3389
|
self, **kwargs: Unpack[ListModelsInputRequestTypeDef]
|
|
3230
3390
|
) -> ListModelsOutputTypeDef:
|
|
3231
3391
|
"""
|
|
3232
|
-
Lists models created with the
|
|
3392
|
+
Lists models created with the <code>CreateModel</code> API.
|
|
3233
3393
|
|
|
3234
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3394
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_models.html)
|
|
3235
3395
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_models)
|
|
3236
3396
|
"""
|
|
3237
3397
|
|
|
@@ -3241,7 +3401,7 @@ class SageMakerClient(BaseClient):
|
|
|
3241
3401
|
"""
|
|
3242
3402
|
Gets a list of past alerts in a model monitoring schedule.
|
|
3243
3403
|
|
|
3244
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3404
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_monitoring_alert_history.html)
|
|
3245
3405
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_monitoring_alert_history)
|
|
3246
3406
|
"""
|
|
3247
3407
|
|
|
@@ -3251,7 +3411,7 @@ class SageMakerClient(BaseClient):
|
|
|
3251
3411
|
"""
|
|
3252
3412
|
Gets the alerts for a single monitoring schedule.
|
|
3253
3413
|
|
|
3254
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3414
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_monitoring_alerts.html)
|
|
3255
3415
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_monitoring_alerts)
|
|
3256
3416
|
"""
|
|
3257
3417
|
|
|
@@ -3261,7 +3421,7 @@ class SageMakerClient(BaseClient):
|
|
|
3261
3421
|
"""
|
|
3262
3422
|
Returns list of all monitoring job executions.
|
|
3263
3423
|
|
|
3264
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3424
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_monitoring_executions.html)
|
|
3265
3425
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_monitoring_executions)
|
|
3266
3426
|
"""
|
|
3267
3427
|
|
|
@@ -3271,7 +3431,7 @@ class SageMakerClient(BaseClient):
|
|
|
3271
3431
|
"""
|
|
3272
3432
|
Returns list of all monitoring schedules.
|
|
3273
3433
|
|
|
3274
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3434
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_monitoring_schedules.html)
|
|
3275
3435
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_monitoring_schedules)
|
|
3276
3436
|
"""
|
|
3277
3437
|
|
|
@@ -3279,11 +3439,11 @@ class SageMakerClient(BaseClient):
|
|
|
3279
3439
|
self, **kwargs: Unpack[ListNotebookInstanceLifecycleConfigsInputRequestTypeDef]
|
|
3280
3440
|
) -> ListNotebookInstanceLifecycleConfigsOutputTypeDef:
|
|
3281
3441
|
"""
|
|
3282
|
-
Lists notebook instance lifestyle configurations created with the
|
|
3283
|
-
|
|
3442
|
+
Lists notebook instance lifestyle configurations created with the <a
|
|
3443
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
3284
3444
|
API.
|
|
3285
3445
|
|
|
3286
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3446
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instance_lifecycle_configs.html)
|
|
3287
3447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_notebook_instance_lifecycle_configs)
|
|
3288
3448
|
"""
|
|
3289
3449
|
|
|
@@ -3292,10 +3452,9 @@ class SageMakerClient(BaseClient):
|
|
|
3292
3452
|
) -> ListNotebookInstancesOutputTypeDef:
|
|
3293
3453
|
"""
|
|
3294
3454
|
Returns a list of the SageMaker notebook instances in the requester's account
|
|
3295
|
-
in an Amazon Web Services
|
|
3296
|
-
Region.
|
|
3455
|
+
in an Amazon Web Services Region.
|
|
3297
3456
|
|
|
3298
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3457
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_notebook_instances.html)
|
|
3299
3458
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_notebook_instances)
|
|
3300
3459
|
"""
|
|
3301
3460
|
|
|
@@ -3305,17 +3464,27 @@ class SageMakerClient(BaseClient):
|
|
|
3305
3464
|
"""
|
|
3306
3465
|
Lists the optimization jobs in your account and their properties.
|
|
3307
3466
|
|
|
3308
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3467
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_optimization_jobs.html)
|
|
3309
3468
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_optimization_jobs)
|
|
3310
3469
|
"""
|
|
3311
3470
|
|
|
3471
|
+
def list_partner_apps(
|
|
3472
|
+
self, **kwargs: Unpack[ListPartnerAppsRequestRequestTypeDef]
|
|
3473
|
+
) -> ListPartnerAppsResponseTypeDef:
|
|
3474
|
+
"""
|
|
3475
|
+
Lists all of the SageMaker Partner AI Apps in an account.
|
|
3476
|
+
|
|
3477
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_partner_apps.html)
|
|
3478
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_partner_apps)
|
|
3479
|
+
"""
|
|
3480
|
+
|
|
3312
3481
|
def list_pipeline_execution_steps(
|
|
3313
3482
|
self, **kwargs: Unpack[ListPipelineExecutionStepsRequestRequestTypeDef]
|
|
3314
3483
|
) -> ListPipelineExecutionStepsResponseTypeDef:
|
|
3315
3484
|
"""
|
|
3316
|
-
Gets a list of
|
|
3485
|
+
Gets a list of <code>PipeLineExecutionStep</code> objects.
|
|
3317
3486
|
|
|
3318
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3487
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_execution_steps.html)
|
|
3319
3488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_execution_steps)
|
|
3320
3489
|
"""
|
|
3321
3490
|
|
|
@@ -3325,7 +3494,7 @@ class SageMakerClient(BaseClient):
|
|
|
3325
3494
|
"""
|
|
3326
3495
|
Gets a list of the pipeline executions.
|
|
3327
3496
|
|
|
3328
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3497
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_executions.html)
|
|
3329
3498
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_executions)
|
|
3330
3499
|
"""
|
|
3331
3500
|
|
|
@@ -3335,7 +3504,7 @@ class SageMakerClient(BaseClient):
|
|
|
3335
3504
|
"""
|
|
3336
3505
|
Gets a list of parameters for a pipeline execution.
|
|
3337
3506
|
|
|
3338
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3507
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipeline_parameters_for_execution.html)
|
|
3339
3508
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipeline_parameters_for_execution)
|
|
3340
3509
|
"""
|
|
3341
3510
|
|
|
@@ -3345,7 +3514,7 @@ class SageMakerClient(BaseClient):
|
|
|
3345
3514
|
"""
|
|
3346
3515
|
Gets a list of pipelines.
|
|
3347
3516
|
|
|
3348
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3517
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_pipelines.html)
|
|
3349
3518
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_pipelines)
|
|
3350
3519
|
"""
|
|
3351
3520
|
|
|
@@ -3355,7 +3524,7 @@ class SageMakerClient(BaseClient):
|
|
|
3355
3524
|
"""
|
|
3356
3525
|
Lists processing jobs that satisfy various filters.
|
|
3357
3526
|
|
|
3358
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3527
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_processing_jobs.html)
|
|
3359
3528
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_processing_jobs)
|
|
3360
3529
|
"""
|
|
3361
3530
|
|
|
@@ -3365,7 +3534,7 @@ class SageMakerClient(BaseClient):
|
|
|
3365
3534
|
"""
|
|
3366
3535
|
Gets a list of the projects in an Amazon Web Services account.
|
|
3367
3536
|
|
|
3368
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3537
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_projects.html)
|
|
3369
3538
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_projects)
|
|
3370
3539
|
"""
|
|
3371
3540
|
|
|
@@ -3375,7 +3544,7 @@ class SageMakerClient(BaseClient):
|
|
|
3375
3544
|
"""
|
|
3376
3545
|
Lists Amazon SageMaker Catalogs based on given filters and orders.
|
|
3377
3546
|
|
|
3378
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3547
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_resource_catalogs.html)
|
|
3379
3548
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_resource_catalogs)
|
|
3380
3549
|
"""
|
|
3381
3550
|
|
|
@@ -3385,7 +3554,7 @@ class SageMakerClient(BaseClient):
|
|
|
3385
3554
|
"""
|
|
3386
3555
|
Lists spaces.
|
|
3387
3556
|
|
|
3388
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3557
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_spaces.html)
|
|
3389
3558
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_spaces)
|
|
3390
3559
|
"""
|
|
3391
3560
|
|
|
@@ -3394,10 +3563,9 @@ class SageMakerClient(BaseClient):
|
|
|
3394
3563
|
) -> ListStageDevicesResponseTypeDef:
|
|
3395
3564
|
"""
|
|
3396
3565
|
Lists devices allocated to the stage, containing detailed device information
|
|
3397
|
-
and deployment
|
|
3398
|
-
status.
|
|
3566
|
+
and deployment status.
|
|
3399
3567
|
|
|
3400
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3568
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_stage_devices.html)
|
|
3401
3569
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_stage_devices)
|
|
3402
3570
|
"""
|
|
3403
3571
|
|
|
@@ -3406,10 +3574,9 @@ class SageMakerClient(BaseClient):
|
|
|
3406
3574
|
) -> ListStudioLifecycleConfigsResponseTypeDef:
|
|
3407
3575
|
"""
|
|
3408
3576
|
Lists the Amazon SageMaker Studio Lifecycle Configurations in your Amazon Web
|
|
3409
|
-
Services
|
|
3410
|
-
Account.
|
|
3577
|
+
Services Account.
|
|
3411
3578
|
|
|
3412
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3579
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_studio_lifecycle_configs.html)
|
|
3413
3580
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_studio_lifecycle_configs)
|
|
3414
3581
|
"""
|
|
3415
3582
|
|
|
@@ -3418,10 +3585,9 @@ class SageMakerClient(BaseClient):
|
|
|
3418
3585
|
) -> ListSubscribedWorkteamsResponseTypeDef:
|
|
3419
3586
|
"""
|
|
3420
3587
|
Gets a list of the work teams that you are subscribed to in the Amazon Web
|
|
3421
|
-
Services
|
|
3422
|
-
Marketplace.
|
|
3588
|
+
Services Marketplace.
|
|
3423
3589
|
|
|
3424
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3590
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_subscribed_workteams.html)
|
|
3425
3591
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_subscribed_workteams)
|
|
3426
3592
|
"""
|
|
3427
3593
|
|
|
@@ -3429,7 +3595,7 @@ class SageMakerClient(BaseClient):
|
|
|
3429
3595
|
"""
|
|
3430
3596
|
Returns the tags for the specified SageMaker resource.
|
|
3431
3597
|
|
|
3432
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3598
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_tags.html)
|
|
3433
3599
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_tags)
|
|
3434
3600
|
"""
|
|
3435
3601
|
|
|
@@ -3439,7 +3605,7 @@ class SageMakerClient(BaseClient):
|
|
|
3439
3605
|
"""
|
|
3440
3606
|
Lists training jobs.
|
|
3441
3607
|
|
|
3442
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3608
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_jobs.html)
|
|
3443
3609
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_jobs)
|
|
3444
3610
|
"""
|
|
3445
3611
|
|
|
@@ -3447,22 +3613,32 @@ class SageMakerClient(BaseClient):
|
|
|
3447
3613
|
self, **kwargs: Unpack[ListTrainingJobsForHyperParameterTuningJobRequestRequestTypeDef]
|
|
3448
3614
|
) -> ListTrainingJobsForHyperParameterTuningJobResponseTypeDef:
|
|
3449
3615
|
"""
|
|
3450
|
-
Gets a list of
|
|
3451
|
-
|
|
3616
|
+
Gets a list of <a
|
|
3617
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a>
|
|
3452
3618
|
objects that describe the training jobs that a hyperparameter tuning job
|
|
3453
3619
|
launched.
|
|
3454
3620
|
|
|
3455
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3621
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_jobs_for_hyper_parameter_tuning_job.html)
|
|
3456
3622
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_jobs_for_hyper_parameter_tuning_job)
|
|
3457
3623
|
"""
|
|
3458
3624
|
|
|
3625
|
+
def list_training_plans(
|
|
3626
|
+
self, **kwargs: Unpack[ListTrainingPlansRequestRequestTypeDef]
|
|
3627
|
+
) -> ListTrainingPlansResponseTypeDef:
|
|
3628
|
+
"""
|
|
3629
|
+
Retrieves a list of training plans for the current account.
|
|
3630
|
+
|
|
3631
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_training_plans.html)
|
|
3632
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_training_plans)
|
|
3633
|
+
"""
|
|
3634
|
+
|
|
3459
3635
|
def list_transform_jobs(
|
|
3460
3636
|
self, **kwargs: Unpack[ListTransformJobsRequestRequestTypeDef]
|
|
3461
3637
|
) -> ListTransformJobsResponseTypeDef:
|
|
3462
3638
|
"""
|
|
3463
3639
|
Lists transform jobs.
|
|
3464
3640
|
|
|
3465
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3641
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_transform_jobs.html)
|
|
3466
3642
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_transform_jobs)
|
|
3467
3643
|
"""
|
|
3468
3644
|
|
|
@@ -3472,7 +3648,7 @@ class SageMakerClient(BaseClient):
|
|
|
3472
3648
|
"""
|
|
3473
3649
|
Lists the trial components in your account.
|
|
3474
3650
|
|
|
3475
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3651
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_trial_components.html)
|
|
3476
3652
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trial_components)
|
|
3477
3653
|
"""
|
|
3478
3654
|
|
|
@@ -3482,7 +3658,7 @@ class SageMakerClient(BaseClient):
|
|
|
3482
3658
|
"""
|
|
3483
3659
|
Lists the trials in your account.
|
|
3484
3660
|
|
|
3485
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3661
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_trials.html)
|
|
3486
3662
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_trials)
|
|
3487
3663
|
"""
|
|
3488
3664
|
|
|
@@ -3492,7 +3668,7 @@ class SageMakerClient(BaseClient):
|
|
|
3492
3668
|
"""
|
|
3493
3669
|
Lists user profiles.
|
|
3494
3670
|
|
|
3495
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3671
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_user_profiles.html)
|
|
3496
3672
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_user_profiles)
|
|
3497
3673
|
"""
|
|
3498
3674
|
|
|
@@ -3501,10 +3677,9 @@ class SageMakerClient(BaseClient):
|
|
|
3501
3677
|
) -> ListWorkforcesResponseTypeDef:
|
|
3502
3678
|
"""
|
|
3503
3679
|
Use this operation to list all private and vendor workforces in an Amazon Web
|
|
3504
|
-
Services
|
|
3505
|
-
Region.
|
|
3680
|
+
Services Region.
|
|
3506
3681
|
|
|
3507
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3682
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_workforces.html)
|
|
3508
3683
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_workforces)
|
|
3509
3684
|
"""
|
|
3510
3685
|
|
|
@@ -3514,7 +3689,7 @@ class SageMakerClient(BaseClient):
|
|
|
3514
3689
|
"""
|
|
3515
3690
|
Gets a list of private work teams that you have defined in a region.
|
|
3516
3691
|
|
|
3517
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3692
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_workteams.html)
|
|
3518
3693
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_workteams)
|
|
3519
3694
|
"""
|
|
3520
3695
|
|
|
@@ -3524,7 +3699,7 @@ class SageMakerClient(BaseClient):
|
|
|
3524
3699
|
"""
|
|
3525
3700
|
Adds a resouce policy to control access to a model group.
|
|
3526
3701
|
|
|
3527
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3702
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/put_model_package_group_policy.html)
|
|
3528
3703
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#put_model_package_group_policy)
|
|
3529
3704
|
"""
|
|
3530
3705
|
|
|
@@ -3535,7 +3710,7 @@ class SageMakerClient(BaseClient):
|
|
|
3535
3710
|
Use this action to inspect your lineage and discover relationships between
|
|
3536
3711
|
entities.
|
|
3537
3712
|
|
|
3538
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3713
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/query_lineage.html)
|
|
3539
3714
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#query_lineage)
|
|
3540
3715
|
"""
|
|
3541
3716
|
|
|
@@ -3545,7 +3720,7 @@ class SageMakerClient(BaseClient):
|
|
|
3545
3720
|
"""
|
|
3546
3721
|
Register devices.
|
|
3547
3722
|
|
|
3548
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3723
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/register_devices.html)
|
|
3549
3724
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#register_devices)
|
|
3550
3725
|
"""
|
|
3551
3726
|
|
|
@@ -3555,7 +3730,7 @@ class SageMakerClient(BaseClient):
|
|
|
3555
3730
|
"""
|
|
3556
3731
|
Renders the UI template so that you can preview the worker's experience.
|
|
3557
3732
|
|
|
3558
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/render_ui_template.html)
|
|
3559
3734
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#render_ui_template)
|
|
3560
3735
|
"""
|
|
3561
3736
|
|
|
@@ -3565,7 +3740,7 @@ class SageMakerClient(BaseClient):
|
|
|
3565
3740
|
"""
|
|
3566
3741
|
Retry the execution of the pipeline.
|
|
3567
3742
|
|
|
3568
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3743
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/retry_pipeline_execution.html)
|
|
3569
3744
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#retry_pipeline_execution)
|
|
3570
3745
|
"""
|
|
3571
3746
|
|
|
@@ -3573,19 +3748,28 @@ class SageMakerClient(BaseClient):
|
|
|
3573
3748
|
"""
|
|
3574
3749
|
Finds SageMaker resources that match a search query.
|
|
3575
3750
|
|
|
3576
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3751
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/search.html)
|
|
3577
3752
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search)
|
|
3578
3753
|
"""
|
|
3579
3754
|
|
|
3755
|
+
def search_training_plan_offerings(
|
|
3756
|
+
self, **kwargs: Unpack[SearchTrainingPlanOfferingsRequestRequestTypeDef]
|
|
3757
|
+
) -> SearchTrainingPlanOfferingsResponseTypeDef:
|
|
3758
|
+
"""
|
|
3759
|
+
Searches for available training plan offerings based on specified criteria.
|
|
3760
|
+
|
|
3761
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/search_training_plan_offerings.html)
|
|
3762
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#search_training_plan_offerings)
|
|
3763
|
+
"""
|
|
3764
|
+
|
|
3580
3765
|
def send_pipeline_execution_step_failure(
|
|
3581
3766
|
self, **kwargs: Unpack[SendPipelineExecutionStepFailureRequestRequestTypeDef]
|
|
3582
3767
|
) -> SendPipelineExecutionStepFailureResponseTypeDef:
|
|
3583
3768
|
"""
|
|
3584
3769
|
Notifies the pipeline that the execution of a callback step failed, along with
|
|
3585
|
-
a message describing
|
|
3586
|
-
why.
|
|
3770
|
+
a message describing why.
|
|
3587
3771
|
|
|
3588
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3772
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/send_pipeline_execution_step_failure.html)
|
|
3589
3773
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#send_pipeline_execution_step_failure)
|
|
3590
3774
|
"""
|
|
3591
3775
|
|
|
@@ -3594,10 +3778,9 @@ class SageMakerClient(BaseClient):
|
|
|
3594
3778
|
) -> SendPipelineExecutionStepSuccessResponseTypeDef:
|
|
3595
3779
|
"""
|
|
3596
3780
|
Notifies the pipeline that the execution of a callback step succeeded and
|
|
3597
|
-
provides a list of the step's output
|
|
3598
|
-
parameters.
|
|
3781
|
+
provides a list of the step's output parameters.
|
|
3599
3782
|
|
|
3600
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3783
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/send_pipeline_execution_step_success.html)
|
|
3601
3784
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#send_pipeline_execution_step_success)
|
|
3602
3785
|
"""
|
|
3603
3786
|
|
|
@@ -3607,7 +3790,7 @@ class SageMakerClient(BaseClient):
|
|
|
3607
3790
|
"""
|
|
3608
3791
|
Starts a stage in an edge deployment plan.
|
|
3609
3792
|
|
|
3610
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3793
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_edge_deployment_stage.html)
|
|
3611
3794
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_edge_deployment_stage)
|
|
3612
3795
|
"""
|
|
3613
3796
|
|
|
@@ -3617,7 +3800,7 @@ class SageMakerClient(BaseClient):
|
|
|
3617
3800
|
"""
|
|
3618
3801
|
Starts an inference experiment.
|
|
3619
3802
|
|
|
3620
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3803
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_inference_experiment.html)
|
|
3621
3804
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_inference_experiment)
|
|
3622
3805
|
"""
|
|
3623
3806
|
|
|
@@ -3627,7 +3810,7 @@ class SageMakerClient(BaseClient):
|
|
|
3627
3810
|
"""
|
|
3628
3811
|
Programmatically start an MLflow Tracking Server.
|
|
3629
3812
|
|
|
3630
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3813
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_mlflow_tracking_server.html)
|
|
3631
3814
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_mlflow_tracking_server)
|
|
3632
3815
|
"""
|
|
3633
3816
|
|
|
@@ -3637,7 +3820,7 @@ class SageMakerClient(BaseClient):
|
|
|
3637
3820
|
"""
|
|
3638
3821
|
Starts a previously stopped monitoring schedule.
|
|
3639
3822
|
|
|
3640
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3823
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_monitoring_schedule.html)
|
|
3641
3824
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_monitoring_schedule)
|
|
3642
3825
|
"""
|
|
3643
3826
|
|
|
@@ -3646,10 +3829,9 @@ class SageMakerClient(BaseClient):
|
|
|
3646
3829
|
) -> EmptyResponseMetadataTypeDef:
|
|
3647
3830
|
"""
|
|
3648
3831
|
Launches an ML compute instance with the latest version of the libraries and
|
|
3649
|
-
attaches your ML storage
|
|
3650
|
-
volume.
|
|
3832
|
+
attaches your ML storage volume.
|
|
3651
3833
|
|
|
3652
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3834
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_notebook_instance.html)
|
|
3653
3835
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_notebook_instance)
|
|
3654
3836
|
"""
|
|
3655
3837
|
|
|
@@ -3659,7 +3841,7 @@ class SageMakerClient(BaseClient):
|
|
|
3659
3841
|
"""
|
|
3660
3842
|
Starts a pipeline execution.
|
|
3661
3843
|
|
|
3662
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3844
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/start_pipeline_execution.html)
|
|
3663
3845
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#start_pipeline_execution)
|
|
3664
3846
|
"""
|
|
3665
3847
|
|
|
@@ -3669,7 +3851,7 @@ class SageMakerClient(BaseClient):
|
|
|
3669
3851
|
"""
|
|
3670
3852
|
A method for forcing a running job to shut down.
|
|
3671
3853
|
|
|
3672
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3854
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_auto_ml_job.html)
|
|
3673
3855
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_auto_ml_job)
|
|
3674
3856
|
"""
|
|
3675
3857
|
|
|
@@ -3679,7 +3861,7 @@ class SageMakerClient(BaseClient):
|
|
|
3679
3861
|
"""
|
|
3680
3862
|
Stops a model compilation job.
|
|
3681
3863
|
|
|
3682
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3864
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_compilation_job.html)
|
|
3683
3865
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_compilation_job)
|
|
3684
3866
|
"""
|
|
3685
3867
|
|
|
@@ -3689,7 +3871,7 @@ class SageMakerClient(BaseClient):
|
|
|
3689
3871
|
"""
|
|
3690
3872
|
Stops a stage in an edge deployment plan.
|
|
3691
3873
|
|
|
3692
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3874
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_edge_deployment_stage.html)
|
|
3693
3875
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_edge_deployment_stage)
|
|
3694
3876
|
"""
|
|
3695
3877
|
|
|
@@ -3699,7 +3881,7 @@ class SageMakerClient(BaseClient):
|
|
|
3699
3881
|
"""
|
|
3700
3882
|
Request to stop an edge packaging job.
|
|
3701
3883
|
|
|
3702
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3884
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_edge_packaging_job.html)
|
|
3703
3885
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_edge_packaging_job)
|
|
3704
3886
|
"""
|
|
3705
3887
|
|
|
@@ -3708,10 +3890,9 @@ class SageMakerClient(BaseClient):
|
|
|
3708
3890
|
) -> EmptyResponseMetadataTypeDef:
|
|
3709
3891
|
"""
|
|
3710
3892
|
Stops a running hyperparameter tuning job and all running training jobs that
|
|
3711
|
-
the tuning job
|
|
3712
|
-
launched.
|
|
3893
|
+
the tuning job launched.
|
|
3713
3894
|
|
|
3714
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3895
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_hyper_parameter_tuning_job.html)
|
|
3715
3896
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_hyper_parameter_tuning_job)
|
|
3716
3897
|
"""
|
|
3717
3898
|
|
|
@@ -3721,7 +3902,7 @@ class SageMakerClient(BaseClient):
|
|
|
3721
3902
|
"""
|
|
3722
3903
|
Stops an inference experiment.
|
|
3723
3904
|
|
|
3724
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3905
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_inference_experiment.html)
|
|
3725
3906
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_inference_experiment)
|
|
3726
3907
|
"""
|
|
3727
3908
|
|
|
@@ -3731,7 +3912,7 @@ class SageMakerClient(BaseClient):
|
|
|
3731
3912
|
"""
|
|
3732
3913
|
Stops an Inference Recommender job.
|
|
3733
3914
|
|
|
3734
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3915
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_inference_recommendations_job.html)
|
|
3735
3916
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_inference_recommendations_job)
|
|
3736
3917
|
"""
|
|
3737
3918
|
|
|
@@ -3741,7 +3922,7 @@ class SageMakerClient(BaseClient):
|
|
|
3741
3922
|
"""
|
|
3742
3923
|
Stops a running labeling job.
|
|
3743
3924
|
|
|
3744
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3925
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_labeling_job.html)
|
|
3745
3926
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_labeling_job)
|
|
3746
3927
|
"""
|
|
3747
3928
|
|
|
@@ -3751,7 +3932,7 @@ class SageMakerClient(BaseClient):
|
|
|
3751
3932
|
"""
|
|
3752
3933
|
Programmatically stop an MLflow Tracking Server.
|
|
3753
3934
|
|
|
3754
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3935
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_mlflow_tracking_server.html)
|
|
3755
3936
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_mlflow_tracking_server)
|
|
3756
3937
|
"""
|
|
3757
3938
|
|
|
@@ -3761,7 +3942,7 @@ class SageMakerClient(BaseClient):
|
|
|
3761
3942
|
"""
|
|
3762
3943
|
Stops a previously started monitoring schedule.
|
|
3763
3944
|
|
|
3764
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3945
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_monitoring_schedule.html)
|
|
3765
3946
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_monitoring_schedule)
|
|
3766
3947
|
"""
|
|
3767
3948
|
|
|
@@ -3771,7 +3952,7 @@ class SageMakerClient(BaseClient):
|
|
|
3771
3952
|
"""
|
|
3772
3953
|
Terminates the ML compute instance.
|
|
3773
3954
|
|
|
3774
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3955
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_notebook_instance.html)
|
|
3775
3956
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_notebook_instance)
|
|
3776
3957
|
"""
|
|
3777
3958
|
|
|
@@ -3781,7 +3962,7 @@ class SageMakerClient(BaseClient):
|
|
|
3781
3962
|
"""
|
|
3782
3963
|
Ends a running inference optimization job.
|
|
3783
3964
|
|
|
3784
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3965
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_optimization_job.html)
|
|
3785
3966
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_optimization_job)
|
|
3786
3967
|
"""
|
|
3787
3968
|
|
|
@@ -3791,7 +3972,7 @@ class SageMakerClient(BaseClient):
|
|
|
3791
3972
|
"""
|
|
3792
3973
|
Stops a pipeline execution.
|
|
3793
3974
|
|
|
3794
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3975
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_pipeline_execution.html)
|
|
3795
3976
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_pipeline_execution)
|
|
3796
3977
|
"""
|
|
3797
3978
|
|
|
@@ -3801,7 +3982,7 @@ class SageMakerClient(BaseClient):
|
|
|
3801
3982
|
"""
|
|
3802
3983
|
Stops a processing job.
|
|
3803
3984
|
|
|
3804
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3985
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_processing_job.html)
|
|
3805
3986
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_processing_job)
|
|
3806
3987
|
"""
|
|
3807
3988
|
|
|
@@ -3811,7 +3992,7 @@ class SageMakerClient(BaseClient):
|
|
|
3811
3992
|
"""
|
|
3812
3993
|
Stops a training job.
|
|
3813
3994
|
|
|
3814
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
3995
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_training_job.html)
|
|
3815
3996
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_training_job)
|
|
3816
3997
|
"""
|
|
3817
3998
|
|
|
@@ -3821,7 +4002,7 @@ class SageMakerClient(BaseClient):
|
|
|
3821
4002
|
"""
|
|
3822
4003
|
Stops a batch transform job.
|
|
3823
4004
|
|
|
3824
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4005
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/stop_transform_job.html)
|
|
3825
4006
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#stop_transform_job)
|
|
3826
4007
|
"""
|
|
3827
4008
|
|
|
@@ -3831,7 +4012,7 @@ class SageMakerClient(BaseClient):
|
|
|
3831
4012
|
"""
|
|
3832
4013
|
Updates an action.
|
|
3833
4014
|
|
|
3834
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4015
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_action.html)
|
|
3835
4016
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_action)
|
|
3836
4017
|
"""
|
|
3837
4018
|
|
|
@@ -3841,7 +4022,7 @@ class SageMakerClient(BaseClient):
|
|
|
3841
4022
|
"""
|
|
3842
4023
|
Updates the properties of an AppImageConfig.
|
|
3843
4024
|
|
|
3844
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4025
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_app_image_config.html)
|
|
3845
4026
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_app_image_config)
|
|
3846
4027
|
"""
|
|
3847
4028
|
|
|
@@ -3851,7 +4032,7 @@ class SageMakerClient(BaseClient):
|
|
|
3851
4032
|
"""
|
|
3852
4033
|
Updates an artifact.
|
|
3853
4034
|
|
|
3854
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_artifact.html)
|
|
3855
4036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_artifact)
|
|
3856
4037
|
"""
|
|
3857
4038
|
|
|
@@ -3861,10 +4042,20 @@ class SageMakerClient(BaseClient):
|
|
|
3861
4042
|
"""
|
|
3862
4043
|
Updates a SageMaker HyperPod cluster.
|
|
3863
4044
|
|
|
3864
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4045
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster.html)
|
|
3865
4046
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster)
|
|
3866
4047
|
"""
|
|
3867
4048
|
|
|
4049
|
+
def update_cluster_scheduler_config(
|
|
4050
|
+
self, **kwargs: Unpack[UpdateClusterSchedulerConfigRequestRequestTypeDef]
|
|
4051
|
+
) -> UpdateClusterSchedulerConfigResponseTypeDef:
|
|
4052
|
+
"""
|
|
4053
|
+
Update the cluster policy configuration.
|
|
4054
|
+
|
|
4055
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster_scheduler_config.html)
|
|
4056
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster_scheduler_config)
|
|
4057
|
+
"""
|
|
4058
|
+
|
|
3868
4059
|
def update_cluster_software(
|
|
3869
4060
|
self, **kwargs: Unpack[UpdateClusterSoftwareRequestRequestTypeDef]
|
|
3870
4061
|
) -> UpdateClusterSoftwareResponseTypeDef:
|
|
@@ -3872,7 +4063,7 @@ class SageMakerClient(BaseClient):
|
|
|
3872
4063
|
Updates the platform software of a SageMaker HyperPod cluster for security
|
|
3873
4064
|
patching.
|
|
3874
4065
|
|
|
3875
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4066
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_cluster_software.html)
|
|
3876
4067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_cluster_software)
|
|
3877
4068
|
"""
|
|
3878
4069
|
|
|
@@ -3882,17 +4073,27 @@ class SageMakerClient(BaseClient):
|
|
|
3882
4073
|
"""
|
|
3883
4074
|
Updates the specified Git repository with the specified values.
|
|
3884
4075
|
|
|
3885
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4076
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_code_repository.html)
|
|
3886
4077
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_code_repository)
|
|
3887
4078
|
"""
|
|
3888
4079
|
|
|
4080
|
+
def update_compute_quota(
|
|
4081
|
+
self, **kwargs: Unpack[UpdateComputeQuotaRequestRequestTypeDef]
|
|
4082
|
+
) -> UpdateComputeQuotaResponseTypeDef:
|
|
4083
|
+
"""
|
|
4084
|
+
Update the compute allocation definition.
|
|
4085
|
+
|
|
4086
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_compute_quota.html)
|
|
4087
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_compute_quota)
|
|
4088
|
+
"""
|
|
4089
|
+
|
|
3889
4090
|
def update_context(
|
|
3890
4091
|
self, **kwargs: Unpack[UpdateContextRequestRequestTypeDef]
|
|
3891
4092
|
) -> UpdateContextResponseTypeDef:
|
|
3892
4093
|
"""
|
|
3893
4094
|
Updates a context.
|
|
3894
4095
|
|
|
3895
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4096
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_context.html)
|
|
3896
4097
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_context)
|
|
3897
4098
|
"""
|
|
3898
4099
|
|
|
@@ -3902,7 +4103,7 @@ class SageMakerClient(BaseClient):
|
|
|
3902
4103
|
"""
|
|
3903
4104
|
Updates a fleet of devices.
|
|
3904
4105
|
|
|
3905
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_device_fleet.html)
|
|
3906
4107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_device_fleet)
|
|
3907
4108
|
"""
|
|
3908
4109
|
|
|
@@ -3912,7 +4113,7 @@ class SageMakerClient(BaseClient):
|
|
|
3912
4113
|
"""
|
|
3913
4114
|
Updates one or more devices in a fleet.
|
|
3914
4115
|
|
|
3915
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4116
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_devices.html)
|
|
3916
4117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_devices)
|
|
3917
4118
|
"""
|
|
3918
4119
|
|
|
@@ -3922,7 +4123,7 @@ class SageMakerClient(BaseClient):
|
|
|
3922
4123
|
"""
|
|
3923
4124
|
Updates the default settings for new user profiles in the domain.
|
|
3924
4125
|
|
|
3925
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_domain.html)
|
|
3926
4127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_domain)
|
|
3927
4128
|
"""
|
|
3928
4129
|
|
|
@@ -3930,10 +4131,10 @@ class SageMakerClient(BaseClient):
|
|
|
3930
4131
|
self, **kwargs: Unpack[UpdateEndpointInputRequestTypeDef]
|
|
3931
4132
|
) -> UpdateEndpointOutputTypeDef:
|
|
3932
4133
|
"""
|
|
3933
|
-
Deploys the
|
|
3934
|
-
instances.
|
|
4134
|
+
Deploys the <code>EndpointConfig</code> specified in the request to a new fleet
|
|
4135
|
+
of instances.
|
|
3935
4136
|
|
|
3936
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4137
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_endpoint.html)
|
|
3937
4138
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_endpoint)
|
|
3938
4139
|
"""
|
|
3939
4140
|
|
|
@@ -3942,10 +4143,9 @@ class SageMakerClient(BaseClient):
|
|
|
3942
4143
|
) -> UpdateEndpointWeightsAndCapacitiesOutputTypeDef:
|
|
3943
4144
|
"""
|
|
3944
4145
|
Updates variant weight of one or more variants associated with an existing
|
|
3945
|
-
endpoint, or capacity of one variant associated with an existing
|
|
3946
|
-
endpoint.
|
|
4146
|
+
endpoint, or capacity of one variant associated with an existing endpoint.
|
|
3947
4147
|
|
|
3948
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_endpoint_weights_and_capacities.html)
|
|
3949
4149
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_endpoint_weights_and_capacities)
|
|
3950
4150
|
"""
|
|
3951
4151
|
|
|
@@ -3955,7 +4155,7 @@ class SageMakerClient(BaseClient):
|
|
|
3955
4155
|
"""
|
|
3956
4156
|
Adds, updates, or removes the description of an experiment.
|
|
3957
4157
|
|
|
3958
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4158
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_experiment.html)
|
|
3959
4159
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_experiment)
|
|
3960
4160
|
"""
|
|
3961
4161
|
|
|
@@ -3964,10 +4164,9 @@ class SageMakerClient(BaseClient):
|
|
|
3964
4164
|
) -> UpdateFeatureGroupResponseTypeDef:
|
|
3965
4165
|
"""
|
|
3966
4166
|
Updates the feature group by either adding features or updating the online
|
|
3967
|
-
store
|
|
3968
|
-
configuration.
|
|
4167
|
+
store configuration.
|
|
3969
4168
|
|
|
3970
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4169
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_feature_group.html)
|
|
3971
4170
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_feature_group)
|
|
3972
4171
|
"""
|
|
3973
4172
|
|
|
@@ -3977,7 +4176,7 @@ class SageMakerClient(BaseClient):
|
|
|
3977
4176
|
"""
|
|
3978
4177
|
Updates the description and parameters of the feature group.
|
|
3979
4178
|
|
|
3980
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_feature_metadata.html)
|
|
3981
4180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_feature_metadata)
|
|
3982
4181
|
"""
|
|
3983
4182
|
|
|
@@ -3987,7 +4186,7 @@ class SageMakerClient(BaseClient):
|
|
|
3987
4186
|
"""
|
|
3988
4187
|
Update a hub.
|
|
3989
4188
|
|
|
3990
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_hub.html)
|
|
3991
4190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_hub)
|
|
3992
4191
|
"""
|
|
3993
4192
|
|
|
@@ -3997,7 +4196,7 @@ class SageMakerClient(BaseClient):
|
|
|
3997
4196
|
"""
|
|
3998
4197
|
Updates the properties of a SageMaker image.
|
|
3999
4198
|
|
|
4000
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image.html)
|
|
4001
4200
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image)
|
|
4002
4201
|
"""
|
|
4003
4202
|
|
|
@@ -4007,7 +4206,7 @@ class SageMakerClient(BaseClient):
|
|
|
4007
4206
|
"""
|
|
4008
4207
|
Updates the properties of a SageMaker image version.
|
|
4009
4208
|
|
|
4010
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4209
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_image_version.html)
|
|
4011
4210
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_image_version)
|
|
4012
4211
|
"""
|
|
4013
4212
|
|
|
@@ -4017,7 +4216,7 @@ class SageMakerClient(BaseClient):
|
|
|
4017
4216
|
"""
|
|
4018
4217
|
Updates an inference component.
|
|
4019
4218
|
|
|
4020
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4219
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_inference_component.html)
|
|
4021
4220
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_inference_component)
|
|
4022
4221
|
"""
|
|
4023
4222
|
|
|
@@ -4027,7 +4226,7 @@ class SageMakerClient(BaseClient):
|
|
|
4027
4226
|
"""
|
|
4028
4227
|
Runtime settings for a model that is deployed with an inference component.
|
|
4029
4228
|
|
|
4030
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_inference_component_runtime_config.html)
|
|
4031
4230
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_inference_component_runtime_config)
|
|
4032
4231
|
"""
|
|
4033
4232
|
|
|
@@ -4037,7 +4236,7 @@ class SageMakerClient(BaseClient):
|
|
|
4037
4236
|
"""
|
|
4038
4237
|
Updates an inference experiment that you created.
|
|
4039
4238
|
|
|
4040
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_inference_experiment.html)
|
|
4041
4240
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_inference_experiment)
|
|
4042
4241
|
"""
|
|
4043
4242
|
|
|
@@ -4047,7 +4246,7 @@ class SageMakerClient(BaseClient):
|
|
|
4047
4246
|
"""
|
|
4048
4247
|
Updates properties of an existing MLflow Tracking Server.
|
|
4049
4248
|
|
|
4050
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4249
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_mlflow_tracking_server.html)
|
|
4051
4250
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_mlflow_tracking_server)
|
|
4052
4251
|
"""
|
|
4053
4252
|
|
|
@@ -4057,7 +4256,7 @@ class SageMakerClient(BaseClient):
|
|
|
4057
4256
|
"""
|
|
4058
4257
|
Update an Amazon SageMaker Model Card.
|
|
4059
4258
|
|
|
4060
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4259
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_model_card.html)
|
|
4061
4260
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_model_card)
|
|
4062
4261
|
"""
|
|
4063
4262
|
|
|
@@ -4067,7 +4266,7 @@ class SageMakerClient(BaseClient):
|
|
|
4067
4266
|
"""
|
|
4068
4267
|
Updates a versioned model.
|
|
4069
4268
|
|
|
4070
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_model_package.html)
|
|
4071
4270
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_model_package)
|
|
4072
4271
|
"""
|
|
4073
4272
|
|
|
@@ -4077,7 +4276,7 @@ class SageMakerClient(BaseClient):
|
|
|
4077
4276
|
"""
|
|
4078
4277
|
Update the parameters of a model monitor alert.
|
|
4079
4278
|
|
|
4080
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4279
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_monitoring_alert.html)
|
|
4081
4280
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_monitoring_alert)
|
|
4082
4281
|
"""
|
|
4083
4282
|
|
|
@@ -4087,7 +4286,7 @@ class SageMakerClient(BaseClient):
|
|
|
4087
4286
|
"""
|
|
4088
4287
|
Updates a previously created schedule.
|
|
4089
4288
|
|
|
4090
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4289
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_monitoring_schedule.html)
|
|
4091
4290
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_monitoring_schedule)
|
|
4092
4291
|
"""
|
|
4093
4292
|
|
|
@@ -4097,7 +4296,7 @@ class SageMakerClient(BaseClient):
|
|
|
4097
4296
|
"""
|
|
4098
4297
|
Updates a notebook instance.
|
|
4099
4298
|
|
|
4100
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4299
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_notebook_instance.html)
|
|
4101
4300
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_notebook_instance)
|
|
4102
4301
|
"""
|
|
4103
4302
|
|
|
@@ -4105,21 +4304,31 @@ class SageMakerClient(BaseClient):
|
|
|
4105
4304
|
self, **kwargs: Unpack[UpdateNotebookInstanceLifecycleConfigInputRequestTypeDef]
|
|
4106
4305
|
) -> Dict[str, Any]:
|
|
4107
4306
|
"""
|
|
4108
|
-
Updates a notebook instance lifecycle configuration created with the
|
|
4109
|
-
|
|
4307
|
+
Updates a notebook instance lifecycle configuration created with the <a
|
|
4308
|
+
href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html">CreateNotebookInstanceLifecycleConfig</a>
|
|
4110
4309
|
API.
|
|
4111
4310
|
|
|
4112
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4311
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_notebook_instance_lifecycle_config.html)
|
|
4113
4312
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_notebook_instance_lifecycle_config)
|
|
4114
4313
|
"""
|
|
4115
4314
|
|
|
4315
|
+
def update_partner_app(
|
|
4316
|
+
self, **kwargs: Unpack[UpdatePartnerAppRequestRequestTypeDef]
|
|
4317
|
+
) -> UpdatePartnerAppResponseTypeDef:
|
|
4318
|
+
"""
|
|
4319
|
+
Updates all of the SageMaker Partner AI Apps in an account.
|
|
4320
|
+
|
|
4321
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_partner_app.html)
|
|
4322
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_partner_app)
|
|
4323
|
+
"""
|
|
4324
|
+
|
|
4116
4325
|
def update_pipeline(
|
|
4117
4326
|
self, **kwargs: Unpack[UpdatePipelineRequestRequestTypeDef]
|
|
4118
4327
|
) -> UpdatePipelineResponseTypeDef:
|
|
4119
4328
|
"""
|
|
4120
4329
|
Updates a pipeline.
|
|
4121
4330
|
|
|
4122
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4331
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_pipeline.html)
|
|
4123
4332
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_pipeline)
|
|
4124
4333
|
"""
|
|
4125
4334
|
|
|
@@ -4129,7 +4338,7 @@ class SageMakerClient(BaseClient):
|
|
|
4129
4338
|
"""
|
|
4130
4339
|
Updates a pipeline execution.
|
|
4131
4340
|
|
|
4132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4341
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_pipeline_execution.html)
|
|
4133
4342
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_pipeline_execution)
|
|
4134
4343
|
"""
|
|
4135
4344
|
|
|
@@ -4138,10 +4347,9 @@ class SageMakerClient(BaseClient):
|
|
|
4138
4347
|
) -> UpdateProjectOutputTypeDef:
|
|
4139
4348
|
"""
|
|
4140
4349
|
Updates a machine learning (ML) project that is created from a template that
|
|
4141
|
-
sets up an ML pipeline from training to deploying an approved
|
|
4142
|
-
model.
|
|
4350
|
+
sets up an ML pipeline from training to deploying an approved model.
|
|
4143
4351
|
|
|
4144
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4352
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_project.html)
|
|
4145
4353
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_project)
|
|
4146
4354
|
"""
|
|
4147
4355
|
|
|
@@ -4151,7 +4359,7 @@ class SageMakerClient(BaseClient):
|
|
|
4151
4359
|
"""
|
|
4152
4360
|
Updates the settings of a space.
|
|
4153
4361
|
|
|
4154
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4362
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_space.html)
|
|
4155
4363
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_space)
|
|
4156
4364
|
"""
|
|
4157
4365
|
|
|
@@ -4160,10 +4368,9 @@ class SageMakerClient(BaseClient):
|
|
|
4160
4368
|
) -> UpdateTrainingJobResponseTypeDef:
|
|
4161
4369
|
"""
|
|
4162
4370
|
Update a model training job to request a new Debugger profiling configuration
|
|
4163
|
-
or to change warm pool retention
|
|
4164
|
-
length.
|
|
4371
|
+
or to change warm pool retention length.
|
|
4165
4372
|
|
|
4166
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_training_job.html)
|
|
4167
4374
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_training_job)
|
|
4168
4375
|
"""
|
|
4169
4376
|
|
|
@@ -4173,7 +4380,7 @@ class SageMakerClient(BaseClient):
|
|
|
4173
4380
|
"""
|
|
4174
4381
|
Updates the display name of a trial.
|
|
4175
4382
|
|
|
4176
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4383
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_trial.html)
|
|
4177
4384
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_trial)
|
|
4178
4385
|
"""
|
|
4179
4386
|
|
|
@@ -4183,7 +4390,7 @@ class SageMakerClient(BaseClient):
|
|
|
4183
4390
|
"""
|
|
4184
4391
|
Updates one or more properties of a trial component.
|
|
4185
4392
|
|
|
4186
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4393
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_trial_component.html)
|
|
4187
4394
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_trial_component)
|
|
4188
4395
|
"""
|
|
4189
4396
|
|
|
@@ -4193,7 +4400,7 @@ class SageMakerClient(BaseClient):
|
|
|
4193
4400
|
"""
|
|
4194
4401
|
Updates a user profile.
|
|
4195
4402
|
|
|
4196
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4403
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_user_profile.html)
|
|
4197
4404
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_user_profile)
|
|
4198
4405
|
"""
|
|
4199
4406
|
|
|
@@ -4203,7 +4410,7 @@ class SageMakerClient(BaseClient):
|
|
|
4203
4410
|
"""
|
|
4204
4411
|
Use this operation to update your workforce.
|
|
4205
4412
|
|
|
4206
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4413
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_workforce.html)
|
|
4207
4414
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workforce)
|
|
4208
4415
|
"""
|
|
4209
4416
|
|
|
@@ -4213,28 +4420,34 @@ class SageMakerClient(BaseClient):
|
|
|
4213
4420
|
"""
|
|
4214
4421
|
Updates an existing work team with new member definitions or description.
|
|
4215
4422
|
|
|
4216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html
|
|
4423
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/update_workteam.html)
|
|
4217
4424
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#update_workteam)
|
|
4218
4425
|
"""
|
|
4219
4426
|
|
|
4220
4427
|
@overload
|
|
4221
4428
|
def get_paginator(self, operation_name: Literal["list_actions"]) -> ListActionsPaginator:
|
|
4222
4429
|
"""
|
|
4223
|
-
|
|
4430
|
+
Create a paginator for an operation.
|
|
4431
|
+
|
|
4432
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4224
4433
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4225
4434
|
"""
|
|
4226
4435
|
|
|
4227
4436
|
@overload
|
|
4228
4437
|
def get_paginator(self, operation_name: Literal["list_algorithms"]) -> ListAlgorithmsPaginator:
|
|
4229
4438
|
"""
|
|
4230
|
-
|
|
4439
|
+
Create a paginator for an operation.
|
|
4440
|
+
|
|
4441
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4231
4442
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4232
4443
|
"""
|
|
4233
4444
|
|
|
4234
4445
|
@overload
|
|
4235
4446
|
def get_paginator(self, operation_name: Literal["list_aliases"]) -> ListAliasesPaginator:
|
|
4236
4447
|
"""
|
|
4237
|
-
|
|
4448
|
+
Create a paginator for an operation.
|
|
4449
|
+
|
|
4450
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4238
4451
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4239
4452
|
"""
|
|
4240
4453
|
|
|
@@ -4243,21 +4456,27 @@ class SageMakerClient(BaseClient):
|
|
|
4243
4456
|
self, operation_name: Literal["list_app_image_configs"]
|
|
4244
4457
|
) -> ListAppImageConfigsPaginator:
|
|
4245
4458
|
"""
|
|
4246
|
-
|
|
4459
|
+
Create a paginator for an operation.
|
|
4460
|
+
|
|
4461
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4247
4462
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4248
4463
|
"""
|
|
4249
4464
|
|
|
4250
4465
|
@overload
|
|
4251
4466
|
def get_paginator(self, operation_name: Literal["list_apps"]) -> ListAppsPaginator:
|
|
4252
4467
|
"""
|
|
4253
|
-
|
|
4468
|
+
Create a paginator for an operation.
|
|
4469
|
+
|
|
4470
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4254
4471
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4255
4472
|
"""
|
|
4256
4473
|
|
|
4257
4474
|
@overload
|
|
4258
4475
|
def get_paginator(self, operation_name: Literal["list_artifacts"]) -> ListArtifactsPaginator:
|
|
4259
4476
|
"""
|
|
4260
|
-
|
|
4477
|
+
Create a paginator for an operation.
|
|
4478
|
+
|
|
4479
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4261
4480
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4262
4481
|
"""
|
|
4263
4482
|
|
|
@@ -4266,7 +4485,9 @@ class SageMakerClient(BaseClient):
|
|
|
4266
4485
|
self, operation_name: Literal["list_associations"]
|
|
4267
4486
|
) -> ListAssociationsPaginator:
|
|
4268
4487
|
"""
|
|
4269
|
-
|
|
4488
|
+
Create a paginator for an operation.
|
|
4489
|
+
|
|
4490
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4270
4491
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4271
4492
|
"""
|
|
4272
4493
|
|
|
@@ -4275,7 +4496,9 @@ class SageMakerClient(BaseClient):
|
|
|
4275
4496
|
self, operation_name: Literal["list_auto_ml_jobs"]
|
|
4276
4497
|
) -> ListAutoMLJobsPaginator:
|
|
4277
4498
|
"""
|
|
4278
|
-
|
|
4499
|
+
Create a paginator for an operation.
|
|
4500
|
+
|
|
4501
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4279
4502
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4280
4503
|
"""
|
|
4281
4504
|
|
|
@@ -4284,7 +4507,9 @@ class SageMakerClient(BaseClient):
|
|
|
4284
4507
|
self, operation_name: Literal["list_candidates_for_auto_ml_job"]
|
|
4285
4508
|
) -> ListCandidatesForAutoMLJobPaginator:
|
|
4286
4509
|
"""
|
|
4287
|
-
|
|
4510
|
+
Create a paginator for an operation.
|
|
4511
|
+
|
|
4512
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4288
4513
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4289
4514
|
"""
|
|
4290
4515
|
|
|
@@ -4293,14 +4518,29 @@ class SageMakerClient(BaseClient):
|
|
|
4293
4518
|
self, operation_name: Literal["list_cluster_nodes"]
|
|
4294
4519
|
) -> ListClusterNodesPaginator:
|
|
4295
4520
|
"""
|
|
4296
|
-
|
|
4521
|
+
Create a paginator for an operation.
|
|
4522
|
+
|
|
4523
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4524
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4525
|
+
"""
|
|
4526
|
+
|
|
4527
|
+
@overload
|
|
4528
|
+
def get_paginator(
|
|
4529
|
+
self, operation_name: Literal["list_cluster_scheduler_configs"]
|
|
4530
|
+
) -> ListClusterSchedulerConfigsPaginator:
|
|
4531
|
+
"""
|
|
4532
|
+
Create a paginator for an operation.
|
|
4533
|
+
|
|
4534
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4297
4535
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4298
4536
|
"""
|
|
4299
4537
|
|
|
4300
4538
|
@overload
|
|
4301
4539
|
def get_paginator(self, operation_name: Literal["list_clusters"]) -> ListClustersPaginator:
|
|
4302
4540
|
"""
|
|
4303
|
-
|
|
4541
|
+
Create a paginator for an operation.
|
|
4542
|
+
|
|
4543
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4304
4544
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4305
4545
|
"""
|
|
4306
4546
|
|
|
@@ -4309,7 +4549,9 @@ class SageMakerClient(BaseClient):
|
|
|
4309
4549
|
self, operation_name: Literal["list_code_repositories"]
|
|
4310
4550
|
) -> ListCodeRepositoriesPaginator:
|
|
4311
4551
|
"""
|
|
4312
|
-
|
|
4552
|
+
Create a paginator for an operation.
|
|
4553
|
+
|
|
4554
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4313
4555
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4314
4556
|
"""
|
|
4315
4557
|
|
|
@@ -4318,14 +4560,29 @@ class SageMakerClient(BaseClient):
|
|
|
4318
4560
|
self, operation_name: Literal["list_compilation_jobs"]
|
|
4319
4561
|
) -> ListCompilationJobsPaginator:
|
|
4320
4562
|
"""
|
|
4321
|
-
|
|
4563
|
+
Create a paginator for an operation.
|
|
4564
|
+
|
|
4565
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4566
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4567
|
+
"""
|
|
4568
|
+
|
|
4569
|
+
@overload
|
|
4570
|
+
def get_paginator(
|
|
4571
|
+
self, operation_name: Literal["list_compute_quotas"]
|
|
4572
|
+
) -> ListComputeQuotasPaginator:
|
|
4573
|
+
"""
|
|
4574
|
+
Create a paginator for an operation.
|
|
4575
|
+
|
|
4576
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4322
4577
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4323
4578
|
"""
|
|
4324
4579
|
|
|
4325
4580
|
@overload
|
|
4326
4581
|
def get_paginator(self, operation_name: Literal["list_contexts"]) -> ListContextsPaginator:
|
|
4327
4582
|
"""
|
|
4328
|
-
|
|
4583
|
+
Create a paginator for an operation.
|
|
4584
|
+
|
|
4585
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4329
4586
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4330
4587
|
"""
|
|
4331
4588
|
|
|
@@ -4334,7 +4591,9 @@ class SageMakerClient(BaseClient):
|
|
|
4334
4591
|
self, operation_name: Literal["list_data_quality_job_definitions"]
|
|
4335
4592
|
) -> ListDataQualityJobDefinitionsPaginator:
|
|
4336
4593
|
"""
|
|
4337
|
-
|
|
4594
|
+
Create a paginator for an operation.
|
|
4595
|
+
|
|
4596
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4338
4597
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4339
4598
|
"""
|
|
4340
4599
|
|
|
@@ -4343,21 +4602,27 @@ class SageMakerClient(BaseClient):
|
|
|
4343
4602
|
self, operation_name: Literal["list_device_fleets"]
|
|
4344
4603
|
) -> ListDeviceFleetsPaginator:
|
|
4345
4604
|
"""
|
|
4346
|
-
|
|
4605
|
+
Create a paginator for an operation.
|
|
4606
|
+
|
|
4607
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4347
4608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4348
4609
|
"""
|
|
4349
4610
|
|
|
4350
4611
|
@overload
|
|
4351
4612
|
def get_paginator(self, operation_name: Literal["list_devices"]) -> ListDevicesPaginator:
|
|
4352
4613
|
"""
|
|
4353
|
-
|
|
4614
|
+
Create a paginator for an operation.
|
|
4615
|
+
|
|
4616
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4354
4617
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4355
4618
|
"""
|
|
4356
4619
|
|
|
4357
4620
|
@overload
|
|
4358
4621
|
def get_paginator(self, operation_name: Literal["list_domains"]) -> ListDomainsPaginator:
|
|
4359
4622
|
"""
|
|
4360
|
-
|
|
4623
|
+
Create a paginator for an operation.
|
|
4624
|
+
|
|
4625
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4361
4626
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4362
4627
|
"""
|
|
4363
4628
|
|
|
@@ -4366,7 +4631,9 @@ class SageMakerClient(BaseClient):
|
|
|
4366
4631
|
self, operation_name: Literal["list_edge_deployment_plans"]
|
|
4367
4632
|
) -> ListEdgeDeploymentPlansPaginator:
|
|
4368
4633
|
"""
|
|
4369
|
-
|
|
4634
|
+
Create a paginator for an operation.
|
|
4635
|
+
|
|
4636
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4370
4637
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4371
4638
|
"""
|
|
4372
4639
|
|
|
@@ -4375,7 +4642,9 @@ class SageMakerClient(BaseClient):
|
|
|
4375
4642
|
self, operation_name: Literal["list_edge_packaging_jobs"]
|
|
4376
4643
|
) -> ListEdgePackagingJobsPaginator:
|
|
4377
4644
|
"""
|
|
4378
|
-
|
|
4645
|
+
Create a paginator for an operation.
|
|
4646
|
+
|
|
4647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4379
4648
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4380
4649
|
"""
|
|
4381
4650
|
|
|
@@ -4384,14 +4653,18 @@ class SageMakerClient(BaseClient):
|
|
|
4384
4653
|
self, operation_name: Literal["list_endpoint_configs"]
|
|
4385
4654
|
) -> ListEndpointConfigsPaginator:
|
|
4386
4655
|
"""
|
|
4387
|
-
|
|
4656
|
+
Create a paginator for an operation.
|
|
4657
|
+
|
|
4658
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4388
4659
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4389
4660
|
"""
|
|
4390
4661
|
|
|
4391
4662
|
@overload
|
|
4392
4663
|
def get_paginator(self, operation_name: Literal["list_endpoints"]) -> ListEndpointsPaginator:
|
|
4393
4664
|
"""
|
|
4394
|
-
|
|
4665
|
+
Create a paginator for an operation.
|
|
4666
|
+
|
|
4667
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4395
4668
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4396
4669
|
"""
|
|
4397
4670
|
|
|
@@ -4400,7 +4673,9 @@ class SageMakerClient(BaseClient):
|
|
|
4400
4673
|
self, operation_name: Literal["list_experiments"]
|
|
4401
4674
|
) -> ListExperimentsPaginator:
|
|
4402
4675
|
"""
|
|
4403
|
-
|
|
4676
|
+
Create a paginator for an operation.
|
|
4677
|
+
|
|
4678
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4404
4679
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4405
4680
|
"""
|
|
4406
4681
|
|
|
@@ -4409,7 +4684,9 @@ class SageMakerClient(BaseClient):
|
|
|
4409
4684
|
self, operation_name: Literal["list_feature_groups"]
|
|
4410
4685
|
) -> ListFeatureGroupsPaginator:
|
|
4411
4686
|
"""
|
|
4412
|
-
|
|
4687
|
+
Create a paginator for an operation.
|
|
4688
|
+
|
|
4689
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4413
4690
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4414
4691
|
"""
|
|
4415
4692
|
|
|
@@ -4418,7 +4695,9 @@ class SageMakerClient(BaseClient):
|
|
|
4418
4695
|
self, operation_name: Literal["list_flow_definitions"]
|
|
4419
4696
|
) -> ListFlowDefinitionsPaginator:
|
|
4420
4697
|
"""
|
|
4421
|
-
|
|
4698
|
+
Create a paginator for an operation.
|
|
4699
|
+
|
|
4700
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4422
4701
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4423
4702
|
"""
|
|
4424
4703
|
|
|
@@ -4427,7 +4706,9 @@ class SageMakerClient(BaseClient):
|
|
|
4427
4706
|
self, operation_name: Literal["list_human_task_uis"]
|
|
4428
4707
|
) -> ListHumanTaskUisPaginator:
|
|
4429
4708
|
"""
|
|
4430
|
-
|
|
4709
|
+
Create a paginator for an operation.
|
|
4710
|
+
|
|
4711
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4431
4712
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4432
4713
|
"""
|
|
4433
4714
|
|
|
@@ -4436,7 +4717,9 @@ class SageMakerClient(BaseClient):
|
|
|
4436
4717
|
self, operation_name: Literal["list_hyper_parameter_tuning_jobs"]
|
|
4437
4718
|
) -> ListHyperParameterTuningJobsPaginator:
|
|
4438
4719
|
"""
|
|
4439
|
-
|
|
4720
|
+
Create a paginator for an operation.
|
|
4721
|
+
|
|
4722
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4440
4723
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4441
4724
|
"""
|
|
4442
4725
|
|
|
@@ -4445,14 +4728,18 @@ class SageMakerClient(BaseClient):
|
|
|
4445
4728
|
self, operation_name: Literal["list_image_versions"]
|
|
4446
4729
|
) -> ListImageVersionsPaginator:
|
|
4447
4730
|
"""
|
|
4448
|
-
|
|
4731
|
+
Create a paginator for an operation.
|
|
4732
|
+
|
|
4733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4449
4734
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4450
4735
|
"""
|
|
4451
4736
|
|
|
4452
4737
|
@overload
|
|
4453
4738
|
def get_paginator(self, operation_name: Literal["list_images"]) -> ListImagesPaginator:
|
|
4454
4739
|
"""
|
|
4455
|
-
|
|
4740
|
+
Create a paginator for an operation.
|
|
4741
|
+
|
|
4742
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4456
4743
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4457
4744
|
"""
|
|
4458
4745
|
|
|
@@ -4461,7 +4748,9 @@ class SageMakerClient(BaseClient):
|
|
|
4461
4748
|
self, operation_name: Literal["list_inference_components"]
|
|
4462
4749
|
) -> ListInferenceComponentsPaginator:
|
|
4463
4750
|
"""
|
|
4464
|
-
|
|
4751
|
+
Create a paginator for an operation.
|
|
4752
|
+
|
|
4753
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4465
4754
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4466
4755
|
"""
|
|
4467
4756
|
|
|
@@ -4470,7 +4759,9 @@ class SageMakerClient(BaseClient):
|
|
|
4470
4759
|
self, operation_name: Literal["list_inference_experiments"]
|
|
4471
4760
|
) -> ListInferenceExperimentsPaginator:
|
|
4472
4761
|
"""
|
|
4473
|
-
|
|
4762
|
+
Create a paginator for an operation.
|
|
4763
|
+
|
|
4764
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4474
4765
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4475
4766
|
"""
|
|
4476
4767
|
|
|
@@ -4479,7 +4770,9 @@ class SageMakerClient(BaseClient):
|
|
|
4479
4770
|
self, operation_name: Literal["list_inference_recommendations_job_steps"]
|
|
4480
4771
|
) -> ListInferenceRecommendationsJobStepsPaginator:
|
|
4481
4772
|
"""
|
|
4482
|
-
|
|
4773
|
+
Create a paginator for an operation.
|
|
4774
|
+
|
|
4775
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4483
4776
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4484
4777
|
"""
|
|
4485
4778
|
|
|
@@ -4488,7 +4781,9 @@ class SageMakerClient(BaseClient):
|
|
|
4488
4781
|
self, operation_name: Literal["list_inference_recommendations_jobs"]
|
|
4489
4782
|
) -> ListInferenceRecommendationsJobsPaginator:
|
|
4490
4783
|
"""
|
|
4491
|
-
|
|
4784
|
+
Create a paginator for an operation.
|
|
4785
|
+
|
|
4786
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4492
4787
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4493
4788
|
"""
|
|
4494
4789
|
|
|
@@ -4497,7 +4792,9 @@ class SageMakerClient(BaseClient):
|
|
|
4497
4792
|
self, operation_name: Literal["list_labeling_jobs_for_workteam"]
|
|
4498
4793
|
) -> ListLabelingJobsForWorkteamPaginator:
|
|
4499
4794
|
"""
|
|
4500
|
-
|
|
4795
|
+
Create a paginator for an operation.
|
|
4796
|
+
|
|
4797
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4501
4798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4502
4799
|
"""
|
|
4503
4800
|
|
|
@@ -4506,7 +4803,9 @@ class SageMakerClient(BaseClient):
|
|
|
4506
4803
|
self, operation_name: Literal["list_labeling_jobs"]
|
|
4507
4804
|
) -> ListLabelingJobsPaginator:
|
|
4508
4805
|
"""
|
|
4509
|
-
|
|
4806
|
+
Create a paginator for an operation.
|
|
4807
|
+
|
|
4808
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4510
4809
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4511
4810
|
"""
|
|
4512
4811
|
|
|
@@ -4515,7 +4814,9 @@ class SageMakerClient(BaseClient):
|
|
|
4515
4814
|
self, operation_name: Literal["list_lineage_groups"]
|
|
4516
4815
|
) -> ListLineageGroupsPaginator:
|
|
4517
4816
|
"""
|
|
4518
|
-
|
|
4817
|
+
Create a paginator for an operation.
|
|
4818
|
+
|
|
4819
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4519
4820
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4520
4821
|
"""
|
|
4521
4822
|
|
|
@@ -4524,7 +4825,9 @@ class SageMakerClient(BaseClient):
|
|
|
4524
4825
|
self, operation_name: Literal["list_mlflow_tracking_servers"]
|
|
4525
4826
|
) -> ListMlflowTrackingServersPaginator:
|
|
4526
4827
|
"""
|
|
4527
|
-
|
|
4828
|
+
Create a paginator for an operation.
|
|
4829
|
+
|
|
4830
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4528
4831
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4529
4832
|
"""
|
|
4530
4833
|
|
|
@@ -4533,7 +4836,9 @@ class SageMakerClient(BaseClient):
|
|
|
4533
4836
|
self, operation_name: Literal["list_model_bias_job_definitions"]
|
|
4534
4837
|
) -> ListModelBiasJobDefinitionsPaginator:
|
|
4535
4838
|
"""
|
|
4536
|
-
|
|
4839
|
+
Create a paginator for an operation.
|
|
4840
|
+
|
|
4841
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4537
4842
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4538
4843
|
"""
|
|
4539
4844
|
|
|
@@ -4542,7 +4847,9 @@ class SageMakerClient(BaseClient):
|
|
|
4542
4847
|
self, operation_name: Literal["list_model_card_export_jobs"]
|
|
4543
4848
|
) -> ListModelCardExportJobsPaginator:
|
|
4544
4849
|
"""
|
|
4545
|
-
|
|
4850
|
+
Create a paginator for an operation.
|
|
4851
|
+
|
|
4852
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4546
4853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4547
4854
|
"""
|
|
4548
4855
|
|
|
@@ -4551,14 +4858,18 @@ class SageMakerClient(BaseClient):
|
|
|
4551
4858
|
self, operation_name: Literal["list_model_card_versions"]
|
|
4552
4859
|
) -> ListModelCardVersionsPaginator:
|
|
4553
4860
|
"""
|
|
4554
|
-
|
|
4861
|
+
Create a paginator for an operation.
|
|
4862
|
+
|
|
4863
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4555
4864
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4556
4865
|
"""
|
|
4557
4866
|
|
|
4558
4867
|
@overload
|
|
4559
4868
|
def get_paginator(self, operation_name: Literal["list_model_cards"]) -> ListModelCardsPaginator:
|
|
4560
4869
|
"""
|
|
4561
|
-
|
|
4870
|
+
Create a paginator for an operation.
|
|
4871
|
+
|
|
4872
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4562
4873
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4563
4874
|
"""
|
|
4564
4875
|
|
|
@@ -4567,7 +4878,9 @@ class SageMakerClient(BaseClient):
|
|
|
4567
4878
|
self, operation_name: Literal["list_model_explainability_job_definitions"]
|
|
4568
4879
|
) -> ListModelExplainabilityJobDefinitionsPaginator:
|
|
4569
4880
|
"""
|
|
4570
|
-
|
|
4881
|
+
Create a paginator for an operation.
|
|
4882
|
+
|
|
4883
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4571
4884
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4572
4885
|
"""
|
|
4573
4886
|
|
|
@@ -4576,7 +4889,9 @@ class SageMakerClient(BaseClient):
|
|
|
4576
4889
|
self, operation_name: Literal["list_model_metadata"]
|
|
4577
4890
|
) -> ListModelMetadataPaginator:
|
|
4578
4891
|
"""
|
|
4579
|
-
|
|
4892
|
+
Create a paginator for an operation.
|
|
4893
|
+
|
|
4894
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4580
4895
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4581
4896
|
"""
|
|
4582
4897
|
|
|
@@ -4585,7 +4900,9 @@ class SageMakerClient(BaseClient):
|
|
|
4585
4900
|
self, operation_name: Literal["list_model_package_groups"]
|
|
4586
4901
|
) -> ListModelPackageGroupsPaginator:
|
|
4587
4902
|
"""
|
|
4588
|
-
|
|
4903
|
+
Create a paginator for an operation.
|
|
4904
|
+
|
|
4905
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4589
4906
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4590
4907
|
"""
|
|
4591
4908
|
|
|
@@ -4594,7 +4911,9 @@ class SageMakerClient(BaseClient):
|
|
|
4594
4911
|
self, operation_name: Literal["list_model_packages"]
|
|
4595
4912
|
) -> ListModelPackagesPaginator:
|
|
4596
4913
|
"""
|
|
4597
|
-
|
|
4914
|
+
Create a paginator for an operation.
|
|
4915
|
+
|
|
4916
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4598
4917
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4599
4918
|
"""
|
|
4600
4919
|
|
|
@@ -4603,14 +4922,18 @@ class SageMakerClient(BaseClient):
|
|
|
4603
4922
|
self, operation_name: Literal["list_model_quality_job_definitions"]
|
|
4604
4923
|
) -> ListModelQualityJobDefinitionsPaginator:
|
|
4605
4924
|
"""
|
|
4606
|
-
|
|
4925
|
+
Create a paginator for an operation.
|
|
4926
|
+
|
|
4927
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4607
4928
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4608
4929
|
"""
|
|
4609
4930
|
|
|
4610
4931
|
@overload
|
|
4611
4932
|
def get_paginator(self, operation_name: Literal["list_models"]) -> ListModelsPaginator:
|
|
4612
4933
|
"""
|
|
4613
|
-
|
|
4934
|
+
Create a paginator for an operation.
|
|
4935
|
+
|
|
4936
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4614
4937
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4615
4938
|
"""
|
|
4616
4939
|
|
|
@@ -4619,7 +4942,9 @@ class SageMakerClient(BaseClient):
|
|
|
4619
4942
|
self, operation_name: Literal["list_monitoring_alert_history"]
|
|
4620
4943
|
) -> ListMonitoringAlertHistoryPaginator:
|
|
4621
4944
|
"""
|
|
4622
|
-
|
|
4945
|
+
Create a paginator for an operation.
|
|
4946
|
+
|
|
4947
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4623
4948
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4624
4949
|
"""
|
|
4625
4950
|
|
|
@@ -4628,7 +4953,9 @@ class SageMakerClient(BaseClient):
|
|
|
4628
4953
|
self, operation_name: Literal["list_monitoring_alerts"]
|
|
4629
4954
|
) -> ListMonitoringAlertsPaginator:
|
|
4630
4955
|
"""
|
|
4631
|
-
|
|
4956
|
+
Create a paginator for an operation.
|
|
4957
|
+
|
|
4958
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4632
4959
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4633
4960
|
"""
|
|
4634
4961
|
|
|
@@ -4637,7 +4964,9 @@ class SageMakerClient(BaseClient):
|
|
|
4637
4964
|
self, operation_name: Literal["list_monitoring_executions"]
|
|
4638
4965
|
) -> ListMonitoringExecutionsPaginator:
|
|
4639
4966
|
"""
|
|
4640
|
-
|
|
4967
|
+
Create a paginator for an operation.
|
|
4968
|
+
|
|
4969
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4641
4970
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4642
4971
|
"""
|
|
4643
4972
|
|
|
@@ -4646,7 +4975,9 @@ class SageMakerClient(BaseClient):
|
|
|
4646
4975
|
self, operation_name: Literal["list_monitoring_schedules"]
|
|
4647
4976
|
) -> ListMonitoringSchedulesPaginator:
|
|
4648
4977
|
"""
|
|
4649
|
-
|
|
4978
|
+
Create a paginator for an operation.
|
|
4979
|
+
|
|
4980
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4650
4981
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4651
4982
|
"""
|
|
4652
4983
|
|
|
@@ -4655,7 +4986,9 @@ class SageMakerClient(BaseClient):
|
|
|
4655
4986
|
self, operation_name: Literal["list_notebook_instance_lifecycle_configs"]
|
|
4656
4987
|
) -> ListNotebookInstanceLifecycleConfigsPaginator:
|
|
4657
4988
|
"""
|
|
4658
|
-
|
|
4989
|
+
Create a paginator for an operation.
|
|
4990
|
+
|
|
4991
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4659
4992
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4660
4993
|
"""
|
|
4661
4994
|
|
|
@@ -4664,7 +4997,9 @@ class SageMakerClient(BaseClient):
|
|
|
4664
4997
|
self, operation_name: Literal["list_notebook_instances"]
|
|
4665
4998
|
) -> ListNotebookInstancesPaginator:
|
|
4666
4999
|
"""
|
|
4667
|
-
|
|
5000
|
+
Create a paginator for an operation.
|
|
5001
|
+
|
|
5002
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4668
5003
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4669
5004
|
"""
|
|
4670
5005
|
|
|
@@ -4673,7 +5008,20 @@ class SageMakerClient(BaseClient):
|
|
|
4673
5008
|
self, operation_name: Literal["list_optimization_jobs"]
|
|
4674
5009
|
) -> ListOptimizationJobsPaginator:
|
|
4675
5010
|
"""
|
|
4676
|
-
|
|
5011
|
+
Create a paginator for an operation.
|
|
5012
|
+
|
|
5013
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5014
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5015
|
+
"""
|
|
5016
|
+
|
|
5017
|
+
@overload
|
|
5018
|
+
def get_paginator(
|
|
5019
|
+
self, operation_name: Literal["list_partner_apps"]
|
|
5020
|
+
) -> ListPartnerAppsPaginator:
|
|
5021
|
+
"""
|
|
5022
|
+
Create a paginator for an operation.
|
|
5023
|
+
|
|
5024
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4677
5025
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4678
5026
|
"""
|
|
4679
5027
|
|
|
@@ -4682,7 +5030,9 @@ class SageMakerClient(BaseClient):
|
|
|
4682
5030
|
self, operation_name: Literal["list_pipeline_execution_steps"]
|
|
4683
5031
|
) -> ListPipelineExecutionStepsPaginator:
|
|
4684
5032
|
"""
|
|
4685
|
-
|
|
5033
|
+
Create a paginator for an operation.
|
|
5034
|
+
|
|
5035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4686
5036
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4687
5037
|
"""
|
|
4688
5038
|
|
|
@@ -4691,7 +5041,9 @@ class SageMakerClient(BaseClient):
|
|
|
4691
5041
|
self, operation_name: Literal["list_pipeline_executions"]
|
|
4692
5042
|
) -> ListPipelineExecutionsPaginator:
|
|
4693
5043
|
"""
|
|
4694
|
-
|
|
5044
|
+
Create a paginator for an operation.
|
|
5045
|
+
|
|
5046
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4695
5047
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4696
5048
|
"""
|
|
4697
5049
|
|
|
@@ -4700,14 +5052,18 @@ class SageMakerClient(BaseClient):
|
|
|
4700
5052
|
self, operation_name: Literal["list_pipeline_parameters_for_execution"]
|
|
4701
5053
|
) -> ListPipelineParametersForExecutionPaginator:
|
|
4702
5054
|
"""
|
|
4703
|
-
|
|
5055
|
+
Create a paginator for an operation.
|
|
5056
|
+
|
|
5057
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4704
5058
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4705
5059
|
"""
|
|
4706
5060
|
|
|
4707
5061
|
@overload
|
|
4708
5062
|
def get_paginator(self, operation_name: Literal["list_pipelines"]) -> ListPipelinesPaginator:
|
|
4709
5063
|
"""
|
|
4710
|
-
|
|
5064
|
+
Create a paginator for an operation.
|
|
5065
|
+
|
|
5066
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4711
5067
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4712
5068
|
"""
|
|
4713
5069
|
|
|
@@ -4716,7 +5072,9 @@ class SageMakerClient(BaseClient):
|
|
|
4716
5072
|
self, operation_name: Literal["list_processing_jobs"]
|
|
4717
5073
|
) -> ListProcessingJobsPaginator:
|
|
4718
5074
|
"""
|
|
4719
|
-
|
|
5075
|
+
Create a paginator for an operation.
|
|
5076
|
+
|
|
5077
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4720
5078
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4721
5079
|
"""
|
|
4722
5080
|
|
|
@@ -4725,14 +5083,18 @@ class SageMakerClient(BaseClient):
|
|
|
4725
5083
|
self, operation_name: Literal["list_resource_catalogs"]
|
|
4726
5084
|
) -> ListResourceCatalogsPaginator:
|
|
4727
5085
|
"""
|
|
4728
|
-
|
|
5086
|
+
Create a paginator for an operation.
|
|
5087
|
+
|
|
5088
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4729
5089
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4730
5090
|
"""
|
|
4731
5091
|
|
|
4732
5092
|
@overload
|
|
4733
5093
|
def get_paginator(self, operation_name: Literal["list_spaces"]) -> ListSpacesPaginator:
|
|
4734
5094
|
"""
|
|
4735
|
-
|
|
5095
|
+
Create a paginator for an operation.
|
|
5096
|
+
|
|
5097
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4736
5098
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4737
5099
|
"""
|
|
4738
5100
|
|
|
@@ -4741,7 +5103,9 @@ class SageMakerClient(BaseClient):
|
|
|
4741
5103
|
self, operation_name: Literal["list_stage_devices"]
|
|
4742
5104
|
) -> ListStageDevicesPaginator:
|
|
4743
5105
|
"""
|
|
4744
|
-
|
|
5106
|
+
Create a paginator for an operation.
|
|
5107
|
+
|
|
5108
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4745
5109
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4746
5110
|
"""
|
|
4747
5111
|
|
|
@@ -4750,7 +5114,9 @@ class SageMakerClient(BaseClient):
|
|
|
4750
5114
|
self, operation_name: Literal["list_studio_lifecycle_configs"]
|
|
4751
5115
|
) -> ListStudioLifecycleConfigsPaginator:
|
|
4752
5116
|
"""
|
|
4753
|
-
|
|
5117
|
+
Create a paginator for an operation.
|
|
5118
|
+
|
|
5119
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4754
5120
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4755
5121
|
"""
|
|
4756
5122
|
|
|
@@ -4759,14 +5125,18 @@ class SageMakerClient(BaseClient):
|
|
|
4759
5125
|
self, operation_name: Literal["list_subscribed_workteams"]
|
|
4760
5126
|
) -> ListSubscribedWorkteamsPaginator:
|
|
4761
5127
|
"""
|
|
4762
|
-
|
|
5128
|
+
Create a paginator for an operation.
|
|
5129
|
+
|
|
5130
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4763
5131
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4764
5132
|
"""
|
|
4765
5133
|
|
|
4766
5134
|
@overload
|
|
4767
5135
|
def get_paginator(self, operation_name: Literal["list_tags"]) -> ListTagsPaginator:
|
|
4768
5136
|
"""
|
|
4769
|
-
|
|
5137
|
+
Create a paginator for an operation.
|
|
5138
|
+
|
|
5139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4770
5140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4771
5141
|
"""
|
|
4772
5142
|
|
|
@@ -4775,7 +5145,9 @@ class SageMakerClient(BaseClient):
|
|
|
4775
5145
|
self, operation_name: Literal["list_training_jobs_for_hyper_parameter_tuning_job"]
|
|
4776
5146
|
) -> ListTrainingJobsForHyperParameterTuningJobPaginator:
|
|
4777
5147
|
"""
|
|
4778
|
-
|
|
5148
|
+
Create a paginator for an operation.
|
|
5149
|
+
|
|
5150
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4779
5151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4780
5152
|
"""
|
|
4781
5153
|
|
|
@@ -4784,7 +5156,20 @@ class SageMakerClient(BaseClient):
|
|
|
4784
5156
|
self, operation_name: Literal["list_training_jobs"]
|
|
4785
5157
|
) -> ListTrainingJobsPaginator:
|
|
4786
5158
|
"""
|
|
4787
|
-
|
|
5159
|
+
Create a paginator for an operation.
|
|
5160
|
+
|
|
5161
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
5162
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
5163
|
+
"""
|
|
5164
|
+
|
|
5165
|
+
@overload
|
|
5166
|
+
def get_paginator(
|
|
5167
|
+
self, operation_name: Literal["list_training_plans"]
|
|
5168
|
+
) -> ListTrainingPlansPaginator:
|
|
5169
|
+
"""
|
|
5170
|
+
Create a paginator for an operation.
|
|
5171
|
+
|
|
5172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4788
5173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4789
5174
|
"""
|
|
4790
5175
|
|
|
@@ -4793,7 +5178,9 @@ class SageMakerClient(BaseClient):
|
|
|
4793
5178
|
self, operation_name: Literal["list_transform_jobs"]
|
|
4794
5179
|
) -> ListTransformJobsPaginator:
|
|
4795
5180
|
"""
|
|
4796
|
-
|
|
5181
|
+
Create a paginator for an operation.
|
|
5182
|
+
|
|
5183
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4797
5184
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4798
5185
|
"""
|
|
4799
5186
|
|
|
@@ -4802,14 +5189,18 @@ class SageMakerClient(BaseClient):
|
|
|
4802
5189
|
self, operation_name: Literal["list_trial_components"]
|
|
4803
5190
|
) -> ListTrialComponentsPaginator:
|
|
4804
5191
|
"""
|
|
4805
|
-
|
|
5192
|
+
Create a paginator for an operation.
|
|
5193
|
+
|
|
5194
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4806
5195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4807
5196
|
"""
|
|
4808
5197
|
|
|
4809
5198
|
@overload
|
|
4810
5199
|
def get_paginator(self, operation_name: Literal["list_trials"]) -> ListTrialsPaginator:
|
|
4811
5200
|
"""
|
|
4812
|
-
|
|
5201
|
+
Create a paginator for an operation.
|
|
5202
|
+
|
|
5203
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4813
5204
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4814
5205
|
"""
|
|
4815
5206
|
|
|
@@ -4818,63 +5209,81 @@ class SageMakerClient(BaseClient):
|
|
|
4818
5209
|
self, operation_name: Literal["list_user_profiles"]
|
|
4819
5210
|
) -> ListUserProfilesPaginator:
|
|
4820
5211
|
"""
|
|
4821
|
-
|
|
5212
|
+
Create a paginator for an operation.
|
|
5213
|
+
|
|
5214
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4822
5215
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4823
5216
|
"""
|
|
4824
5217
|
|
|
4825
5218
|
@overload
|
|
4826
5219
|
def get_paginator(self, operation_name: Literal["list_workforces"]) -> ListWorkforcesPaginator:
|
|
4827
5220
|
"""
|
|
4828
|
-
|
|
5221
|
+
Create a paginator for an operation.
|
|
5222
|
+
|
|
5223
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4829
5224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4830
5225
|
"""
|
|
4831
5226
|
|
|
4832
5227
|
@overload
|
|
4833
5228
|
def get_paginator(self, operation_name: Literal["list_workteams"]) -> ListWorkteamsPaginator:
|
|
4834
5229
|
"""
|
|
4835
|
-
|
|
5230
|
+
Create a paginator for an operation.
|
|
5231
|
+
|
|
5232
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4836
5233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4837
5234
|
"""
|
|
4838
5235
|
|
|
4839
5236
|
@overload
|
|
4840
5237
|
def get_paginator(self, operation_name: Literal["search"]) -> SearchPaginator:
|
|
4841
5238
|
"""
|
|
4842
|
-
|
|
5239
|
+
Create a paginator for an operation.
|
|
5240
|
+
|
|
5241
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4843
5242
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4844
5243
|
"""
|
|
4845
5244
|
|
|
4846
5245
|
@overload
|
|
4847
5246
|
def get_waiter(self, waiter_name: Literal["endpoint_deleted"]) -> EndpointDeletedWaiter:
|
|
4848
5247
|
"""
|
|
4849
|
-
|
|
5248
|
+
Returns an object that can wait for some condition.
|
|
5249
|
+
|
|
5250
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4850
5251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4851
5252
|
"""
|
|
4852
5253
|
|
|
4853
5254
|
@overload
|
|
4854
5255
|
def get_waiter(self, waiter_name: Literal["endpoint_in_service"]) -> EndpointInServiceWaiter:
|
|
4855
5256
|
"""
|
|
4856
|
-
|
|
5257
|
+
Returns an object that can wait for some condition.
|
|
5258
|
+
|
|
5259
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4857
5260
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4858
5261
|
"""
|
|
4859
5262
|
|
|
4860
5263
|
@overload
|
|
4861
5264
|
def get_waiter(self, waiter_name: Literal["image_created"]) -> ImageCreatedWaiter:
|
|
4862
5265
|
"""
|
|
4863
|
-
|
|
5266
|
+
Returns an object that can wait for some condition.
|
|
5267
|
+
|
|
5268
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4864
5269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4865
5270
|
"""
|
|
4866
5271
|
|
|
4867
5272
|
@overload
|
|
4868
5273
|
def get_waiter(self, waiter_name: Literal["image_deleted"]) -> ImageDeletedWaiter:
|
|
4869
5274
|
"""
|
|
4870
|
-
|
|
5275
|
+
Returns an object that can wait for some condition.
|
|
5276
|
+
|
|
5277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4871
5278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4872
5279
|
"""
|
|
4873
5280
|
|
|
4874
5281
|
@overload
|
|
4875
5282
|
def get_waiter(self, waiter_name: Literal["image_updated"]) -> ImageUpdatedWaiter:
|
|
4876
5283
|
"""
|
|
4877
|
-
|
|
5284
|
+
Returns an object that can wait for some condition.
|
|
5285
|
+
|
|
5286
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4878
5287
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4879
5288
|
"""
|
|
4880
5289
|
|
|
@@ -4883,7 +5292,9 @@ class SageMakerClient(BaseClient):
|
|
|
4883
5292
|
self, waiter_name: Literal["image_version_created"]
|
|
4884
5293
|
) -> ImageVersionCreatedWaiter:
|
|
4885
5294
|
"""
|
|
4886
|
-
|
|
5295
|
+
Returns an object that can wait for some condition.
|
|
5296
|
+
|
|
5297
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4887
5298
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4888
5299
|
"""
|
|
4889
5300
|
|
|
@@ -4892,7 +5303,9 @@ class SageMakerClient(BaseClient):
|
|
|
4892
5303
|
self, waiter_name: Literal["image_version_deleted"]
|
|
4893
5304
|
) -> ImageVersionDeletedWaiter:
|
|
4894
5305
|
"""
|
|
4895
|
-
|
|
5306
|
+
Returns an object that can wait for some condition.
|
|
5307
|
+
|
|
5308
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4896
5309
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4897
5310
|
"""
|
|
4898
5311
|
|
|
@@ -4901,7 +5314,9 @@ class SageMakerClient(BaseClient):
|
|
|
4901
5314
|
self, waiter_name: Literal["notebook_instance_deleted"]
|
|
4902
5315
|
) -> NotebookInstanceDeletedWaiter:
|
|
4903
5316
|
"""
|
|
4904
|
-
|
|
5317
|
+
Returns an object that can wait for some condition.
|
|
5318
|
+
|
|
5319
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4905
5320
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4906
5321
|
"""
|
|
4907
5322
|
|
|
@@ -4910,7 +5325,9 @@ class SageMakerClient(BaseClient):
|
|
|
4910
5325
|
self, waiter_name: Literal["notebook_instance_in_service"]
|
|
4911
5326
|
) -> NotebookInstanceInServiceWaiter:
|
|
4912
5327
|
"""
|
|
4913
|
-
|
|
5328
|
+
Returns an object that can wait for some condition.
|
|
5329
|
+
|
|
5330
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4914
5331
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4915
5332
|
"""
|
|
4916
5333
|
|
|
@@ -4919,7 +5336,9 @@ class SageMakerClient(BaseClient):
|
|
|
4919
5336
|
self, waiter_name: Literal["notebook_instance_stopped"]
|
|
4920
5337
|
) -> NotebookInstanceStoppedWaiter:
|
|
4921
5338
|
"""
|
|
4922
|
-
|
|
5339
|
+
Returns an object that can wait for some condition.
|
|
5340
|
+
|
|
5341
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4923
5342
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4924
5343
|
"""
|
|
4925
5344
|
|
|
@@ -4928,7 +5347,9 @@ class SageMakerClient(BaseClient):
|
|
|
4928
5347
|
self, waiter_name: Literal["processing_job_completed_or_stopped"]
|
|
4929
5348
|
) -> ProcessingJobCompletedOrStoppedWaiter:
|
|
4930
5349
|
"""
|
|
4931
|
-
|
|
5350
|
+
Returns an object that can wait for some condition.
|
|
5351
|
+
|
|
5352
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4932
5353
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4933
5354
|
"""
|
|
4934
5355
|
|
|
@@ -4937,7 +5358,9 @@ class SageMakerClient(BaseClient):
|
|
|
4937
5358
|
self, waiter_name: Literal["training_job_completed_or_stopped"]
|
|
4938
5359
|
) -> TrainingJobCompletedOrStoppedWaiter:
|
|
4939
5360
|
"""
|
|
4940
|
-
|
|
5361
|
+
Returns an object that can wait for some condition.
|
|
5362
|
+
|
|
5363
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4941
5364
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4942
5365
|
"""
|
|
4943
5366
|
|
|
@@ -4946,6 +5369,8 @@ class SageMakerClient(BaseClient):
|
|
|
4946
5369
|
self, waiter_name: Literal["transform_job_completed_or_stopped"]
|
|
4947
5370
|
) -> TransformJobCompletedOrStoppedWaiter:
|
|
4948
5371
|
"""
|
|
4949
|
-
|
|
5372
|
+
Returns an object that can wait for some condition.
|
|
5373
|
+
|
|
5374
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_waiter.html)
|
|
4950
5375
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_waiter)
|
|
4951
5376
|
"""
|