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