mypy-boto3-sagemaker 1.35.53__py3-none-any.whl → 1.35.68__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 +4 -2
- mypy_boto3_sagemaker/__init__.pyi +4 -2
- mypy_boto3_sagemaker/__main__.py +7 -5
- mypy_boto3_sagemaker/client.py +467 -495
- mypy_boto3_sagemaker/client.pyi +467 -495
- mypy_boto3_sagemaker/literals.py +53 -6
- mypy_boto3_sagemaker/literals.pyi +53 -6
- mypy_boto3_sagemaker/paginator.py +183 -181
- mypy_boto3_sagemaker/paginator.pyi +179 -177
- mypy_boto3_sagemaker/type_defs.py +12064 -14706
- mypy_boto3_sagemaker/type_defs.pyi +10618 -14738
- 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.53.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/METADATA +35 -20
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.53.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.53.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.53.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.53.dist-info → mypy_boto3_sagemaker-1.35.68.dist-info}/top_level.txt +0 -0
|
@@ -43,8 +43,8 @@ Usage::
|
|
|
43
43
|
ListInferenceExperimentsPaginator,
|
|
44
44
|
ListInferenceRecommendationsJobStepsPaginator,
|
|
45
45
|
ListInferenceRecommendationsJobsPaginator,
|
|
46
|
-
ListLabelingJobsPaginator,
|
|
47
46
|
ListLabelingJobsForWorkteamPaginator,
|
|
47
|
+
ListLabelingJobsPaginator,
|
|
48
48
|
ListLineageGroupsPaginator,
|
|
49
49
|
ListMlflowTrackingServersPaginator,
|
|
50
50
|
ListModelBiasJobDefinitionsPaginator,
|
|
@@ -75,8 +75,8 @@ Usage::
|
|
|
75
75
|
ListStudioLifecycleConfigsPaginator,
|
|
76
76
|
ListSubscribedWorkteamsPaginator,
|
|
77
77
|
ListTagsPaginator,
|
|
78
|
-
ListTrainingJobsPaginator,
|
|
79
78
|
ListTrainingJobsForHyperParameterTuningJobPaginator,
|
|
79
|
+
ListTrainingJobsPaginator,
|
|
80
80
|
ListTransformJobsPaginator,
|
|
81
81
|
ListTrialComponentsPaginator,
|
|
82
82
|
ListTrialsPaginator,
|
|
@@ -122,8 +122,8 @@ Usage::
|
|
|
122
122
|
list_inference_experiments_paginator: ListInferenceExperimentsPaginator = client.get_paginator("list_inference_experiments")
|
|
123
123
|
list_inference_recommendations_job_steps_paginator: ListInferenceRecommendationsJobStepsPaginator = client.get_paginator("list_inference_recommendations_job_steps")
|
|
124
124
|
list_inference_recommendations_jobs_paginator: ListInferenceRecommendationsJobsPaginator = client.get_paginator("list_inference_recommendations_jobs")
|
|
125
|
-
list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
|
|
126
125
|
list_labeling_jobs_for_workteam_paginator: ListLabelingJobsForWorkteamPaginator = client.get_paginator("list_labeling_jobs_for_workteam")
|
|
126
|
+
list_labeling_jobs_paginator: ListLabelingJobsPaginator = client.get_paginator("list_labeling_jobs")
|
|
127
127
|
list_lineage_groups_paginator: ListLineageGroupsPaginator = client.get_paginator("list_lineage_groups")
|
|
128
128
|
list_mlflow_tracking_servers_paginator: ListMlflowTrackingServersPaginator = client.get_paginator("list_mlflow_tracking_servers")
|
|
129
129
|
list_model_bias_job_definitions_paginator: ListModelBiasJobDefinitionsPaginator = client.get_paginator("list_model_bias_job_definitions")
|
|
@@ -154,8 +154,8 @@ Usage::
|
|
|
154
154
|
list_studio_lifecycle_configs_paginator: ListStudioLifecycleConfigsPaginator = client.get_paginator("list_studio_lifecycle_configs")
|
|
155
155
|
list_subscribed_workteams_paginator: ListSubscribedWorkteamsPaginator = client.get_paginator("list_subscribed_workteams")
|
|
156
156
|
list_tags_paginator: ListTagsPaginator = client.get_paginator("list_tags")
|
|
157
|
-
list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
|
|
158
157
|
list_training_jobs_for_hyper_parameter_tuning_job_paginator: ListTrainingJobsForHyperParameterTuningJobPaginator = client.get_paginator("list_training_jobs_for_hyper_parameter_tuning_job")
|
|
158
|
+
list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
|
|
159
159
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator("list_transform_jobs")
|
|
160
160
|
list_trial_components_paginator: ListTrialComponentsPaginator = client.get_paginator("list_trial_components")
|
|
161
161
|
list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
|
|
@@ -164,6 +164,8 @@ Usage::
|
|
|
164
164
|
list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
|
|
165
165
|
search_paginator: SearchPaginator = client.get_paginator("search")
|
|
166
166
|
```
|
|
167
|
+
|
|
168
|
+
Copyright 2024 Vlad Emelianov
|
|
167
169
|
"""
|
|
168
170
|
|
|
169
171
|
import sys
|
|
@@ -362,8 +364,8 @@ __all__ = (
|
|
|
362
364
|
"ListInferenceExperimentsPaginator",
|
|
363
365
|
"ListInferenceRecommendationsJobStepsPaginator",
|
|
364
366
|
"ListInferenceRecommendationsJobsPaginator",
|
|
365
|
-
"ListLabelingJobsPaginator",
|
|
366
367
|
"ListLabelingJobsForWorkteamPaginator",
|
|
368
|
+
"ListLabelingJobsPaginator",
|
|
367
369
|
"ListLineageGroupsPaginator",
|
|
368
370
|
"ListMlflowTrackingServersPaginator",
|
|
369
371
|
"ListModelBiasJobDefinitionsPaginator",
|
|
@@ -394,8 +396,8 @@ __all__ = (
|
|
|
394
396
|
"ListStudioLifecycleConfigsPaginator",
|
|
395
397
|
"ListSubscribedWorkteamsPaginator",
|
|
396
398
|
"ListTagsPaginator",
|
|
397
|
-
"ListTrainingJobsPaginator",
|
|
398
399
|
"ListTrainingJobsForHyperParameterTuningJobPaginator",
|
|
400
|
+
"ListTrainingJobsPaginator",
|
|
399
401
|
"ListTransformJobsPaginator",
|
|
400
402
|
"ListTrialComponentsPaginator",
|
|
401
403
|
"ListTrialsPaginator",
|
|
@@ -409,7 +411,7 @@ __all__ = (
|
|
|
409
411
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
410
412
|
|
|
411
413
|
|
|
412
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
414
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
413
415
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
414
416
|
"""
|
|
415
417
|
Proxy method to specify iterator item type.
|
|
@@ -418,7 +420,7 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
418
420
|
|
|
419
421
|
class ListActionsPaginator(Paginator):
|
|
420
422
|
"""
|
|
421
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions)
|
|
423
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions)
|
|
422
424
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
|
|
423
425
|
"""
|
|
424
426
|
|
|
@@ -426,14 +428,14 @@ class ListActionsPaginator(Paginator):
|
|
|
426
428
|
self, **kwargs: Unpack[ListActionsRequestListActionsPaginateTypeDef]
|
|
427
429
|
) -> _PageIterator[ListActionsResponseTypeDef]:
|
|
428
430
|
"""
|
|
429
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListActions.paginate)
|
|
431
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListActions.html#SageMaker.Paginator.ListActions.paginate)
|
|
430
432
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listactionspaginator)
|
|
431
433
|
"""
|
|
432
434
|
|
|
433
435
|
|
|
434
436
|
class ListAlgorithmsPaginator(Paginator):
|
|
435
437
|
"""
|
|
436
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms)
|
|
438
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms)
|
|
437
439
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
|
|
438
440
|
"""
|
|
439
441
|
|
|
@@ -441,14 +443,14 @@ class ListAlgorithmsPaginator(Paginator):
|
|
|
441
443
|
self, **kwargs: Unpack[ListAlgorithmsInputListAlgorithmsPaginateTypeDef]
|
|
442
444
|
) -> _PageIterator[ListAlgorithmsOutputTypeDef]:
|
|
443
445
|
"""
|
|
444
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAlgorithms.paginate)
|
|
446
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAlgorithms.html#SageMaker.Paginator.ListAlgorithms.paginate)
|
|
445
447
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listalgorithmspaginator)
|
|
446
448
|
"""
|
|
447
449
|
|
|
448
450
|
|
|
449
451
|
class ListAliasesPaginator(Paginator):
|
|
450
452
|
"""
|
|
451
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAliases)
|
|
453
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases)
|
|
452
454
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
|
|
453
455
|
"""
|
|
454
456
|
|
|
@@ -456,14 +458,14 @@ class ListAliasesPaginator(Paginator):
|
|
|
456
458
|
self, **kwargs: Unpack[ListAliasesRequestListAliasesPaginateTypeDef]
|
|
457
459
|
) -> _PageIterator[ListAliasesResponseTypeDef]:
|
|
458
460
|
"""
|
|
459
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAliases.paginate)
|
|
461
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAliases.html#SageMaker.Paginator.ListAliases.paginate)
|
|
460
462
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listaliasespaginator)
|
|
461
463
|
"""
|
|
462
464
|
|
|
463
465
|
|
|
464
466
|
class ListAppImageConfigsPaginator(Paginator):
|
|
465
467
|
"""
|
|
466
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs)
|
|
468
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs)
|
|
467
469
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
|
|
468
470
|
"""
|
|
469
471
|
|
|
@@ -471,14 +473,14 @@ class ListAppImageConfigsPaginator(Paginator):
|
|
|
471
473
|
self, **kwargs: Unpack[ListAppImageConfigsRequestListAppImageConfigsPaginateTypeDef]
|
|
472
474
|
) -> _PageIterator[ListAppImageConfigsResponseTypeDef]:
|
|
473
475
|
"""
|
|
474
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
|
|
476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAppImageConfigs.html#SageMaker.Paginator.ListAppImageConfigs.paginate)
|
|
475
477
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappimageconfigspaginator)
|
|
476
478
|
"""
|
|
477
479
|
|
|
478
480
|
|
|
479
481
|
class ListAppsPaginator(Paginator):
|
|
480
482
|
"""
|
|
481
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps)
|
|
483
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps)
|
|
482
484
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
|
|
483
485
|
"""
|
|
484
486
|
|
|
@@ -486,14 +488,14 @@ class ListAppsPaginator(Paginator):
|
|
|
486
488
|
self, **kwargs: Unpack[ListAppsRequestListAppsPaginateTypeDef]
|
|
487
489
|
) -> _PageIterator[ListAppsResponseTypeDef]:
|
|
488
490
|
"""
|
|
489
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListApps.paginate)
|
|
491
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListApps.html#SageMaker.Paginator.ListApps.paginate)
|
|
490
492
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listappspaginator)
|
|
491
493
|
"""
|
|
492
494
|
|
|
493
495
|
|
|
494
496
|
class ListArtifactsPaginator(Paginator):
|
|
495
497
|
"""
|
|
496
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts)
|
|
498
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts)
|
|
497
499
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
|
|
498
500
|
"""
|
|
499
501
|
|
|
@@ -501,14 +503,14 @@ class ListArtifactsPaginator(Paginator):
|
|
|
501
503
|
self, **kwargs: Unpack[ListArtifactsRequestListArtifactsPaginateTypeDef]
|
|
502
504
|
) -> _PageIterator[ListArtifactsResponseTypeDef]:
|
|
503
505
|
"""
|
|
504
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListArtifacts.paginate)
|
|
506
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListArtifacts.html#SageMaker.Paginator.ListArtifacts.paginate)
|
|
505
507
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listartifactspaginator)
|
|
506
508
|
"""
|
|
507
509
|
|
|
508
510
|
|
|
509
511
|
class ListAssociationsPaginator(Paginator):
|
|
510
512
|
"""
|
|
511
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations)
|
|
513
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations)
|
|
512
514
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
|
|
513
515
|
"""
|
|
514
516
|
|
|
@@ -516,14 +518,14 @@ class ListAssociationsPaginator(Paginator):
|
|
|
516
518
|
self, **kwargs: Unpack[ListAssociationsRequestListAssociationsPaginateTypeDef]
|
|
517
519
|
) -> _PageIterator[ListAssociationsResponseTypeDef]:
|
|
518
520
|
"""
|
|
519
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAssociations.paginate)
|
|
521
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAssociations.html#SageMaker.Paginator.ListAssociations.paginate)
|
|
520
522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listassociationspaginator)
|
|
521
523
|
"""
|
|
522
524
|
|
|
523
525
|
|
|
524
526
|
class ListAutoMLJobsPaginator(Paginator):
|
|
525
527
|
"""
|
|
526
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs)
|
|
528
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs)
|
|
527
529
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
|
|
528
530
|
"""
|
|
529
531
|
|
|
@@ -531,14 +533,14 @@ class ListAutoMLJobsPaginator(Paginator):
|
|
|
531
533
|
self, **kwargs: Unpack[ListAutoMLJobsRequestListAutoMLJobsPaginateTypeDef]
|
|
532
534
|
) -> _PageIterator[ListAutoMLJobsResponseTypeDef]:
|
|
533
535
|
"""
|
|
534
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
|
|
536
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListAutoMLJobs.html#SageMaker.Paginator.ListAutoMLJobs.paginate)
|
|
535
537
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listautomljobspaginator)
|
|
536
538
|
"""
|
|
537
539
|
|
|
538
540
|
|
|
539
541
|
class ListCandidatesForAutoMLJobPaginator(Paginator):
|
|
540
542
|
"""
|
|
541
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
|
|
543
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob)
|
|
542
544
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
543
545
|
"""
|
|
544
546
|
|
|
@@ -549,14 +551,14 @@ class ListCandidatesForAutoMLJobPaginator(Paginator):
|
|
|
549
551
|
],
|
|
550
552
|
) -> _PageIterator[ListCandidatesForAutoMLJobResponseTypeDef]:
|
|
551
553
|
"""
|
|
552
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
|
|
554
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCandidatesForAutoMLJob.html#SageMaker.Paginator.ListCandidatesForAutoMLJob.paginate)
|
|
553
555
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
554
556
|
"""
|
|
555
557
|
|
|
556
558
|
|
|
557
559
|
class ListClusterNodesPaginator(Paginator):
|
|
558
560
|
"""
|
|
559
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListClusterNodes)
|
|
561
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes)
|
|
560
562
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
|
|
561
563
|
"""
|
|
562
564
|
|
|
@@ -564,14 +566,14 @@ class ListClusterNodesPaginator(Paginator):
|
|
|
564
566
|
self, **kwargs: Unpack[ListClusterNodesRequestListClusterNodesPaginateTypeDef]
|
|
565
567
|
) -> _PageIterator[ListClusterNodesResponseTypeDef]:
|
|
566
568
|
"""
|
|
567
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListClusterNodes.paginate)
|
|
569
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterNodes.html#SageMaker.Paginator.ListClusterNodes.paginate)
|
|
568
570
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusternodespaginator)
|
|
569
571
|
"""
|
|
570
572
|
|
|
571
573
|
|
|
572
574
|
class ListClustersPaginator(Paginator):
|
|
573
575
|
"""
|
|
574
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListClusters)
|
|
576
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters)
|
|
575
577
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
|
|
576
578
|
"""
|
|
577
579
|
|
|
@@ -579,14 +581,14 @@ class ListClustersPaginator(Paginator):
|
|
|
579
581
|
self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
|
|
580
582
|
) -> _PageIterator[ListClustersResponseTypeDef]:
|
|
581
583
|
"""
|
|
582
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListClusters.paginate)
|
|
584
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusters.html#SageMaker.Paginator.ListClusters.paginate)
|
|
583
585
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclusterspaginator)
|
|
584
586
|
"""
|
|
585
587
|
|
|
586
588
|
|
|
587
589
|
class ListCodeRepositoriesPaginator(Paginator):
|
|
588
590
|
"""
|
|
589
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories)
|
|
591
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories)
|
|
590
592
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
|
|
591
593
|
"""
|
|
592
594
|
|
|
@@ -594,14 +596,14 @@ class ListCodeRepositoriesPaginator(Paginator):
|
|
|
594
596
|
self, **kwargs: Unpack[ListCodeRepositoriesInputListCodeRepositoriesPaginateTypeDef]
|
|
595
597
|
) -> _PageIterator[ListCodeRepositoriesOutputTypeDef]:
|
|
596
598
|
"""
|
|
597
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCodeRepositories.paginate)
|
|
599
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCodeRepositories.html#SageMaker.Paginator.ListCodeRepositories.paginate)
|
|
598
600
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcoderepositoriespaginator)
|
|
599
601
|
"""
|
|
600
602
|
|
|
601
603
|
|
|
602
604
|
class ListCompilationJobsPaginator(Paginator):
|
|
603
605
|
"""
|
|
604
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs)
|
|
606
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs)
|
|
605
607
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
|
|
606
608
|
"""
|
|
607
609
|
|
|
@@ -609,14 +611,14 @@ class ListCompilationJobsPaginator(Paginator):
|
|
|
609
611
|
self, **kwargs: Unpack[ListCompilationJobsRequestListCompilationJobsPaginateTypeDef]
|
|
610
612
|
) -> _PageIterator[ListCompilationJobsResponseTypeDef]:
|
|
611
613
|
"""
|
|
612
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListCompilationJobs.paginate)
|
|
614
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListCompilationJobs.html#SageMaker.Paginator.ListCompilationJobs.paginate)
|
|
613
615
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcompilationjobspaginator)
|
|
614
616
|
"""
|
|
615
617
|
|
|
616
618
|
|
|
617
619
|
class ListContextsPaginator(Paginator):
|
|
618
620
|
"""
|
|
619
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts)
|
|
621
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts)
|
|
620
622
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
|
|
621
623
|
"""
|
|
622
624
|
|
|
@@ -624,14 +626,14 @@ class ListContextsPaginator(Paginator):
|
|
|
624
626
|
self, **kwargs: Unpack[ListContextsRequestListContextsPaginateTypeDef]
|
|
625
627
|
) -> _PageIterator[ListContextsResponseTypeDef]:
|
|
626
628
|
"""
|
|
627
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListContexts.paginate)
|
|
629
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListContexts.html#SageMaker.Paginator.ListContexts.paginate)
|
|
628
630
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcontextspaginator)
|
|
629
631
|
"""
|
|
630
632
|
|
|
631
633
|
|
|
632
634
|
class ListDataQualityJobDefinitionsPaginator(Paginator):
|
|
633
635
|
"""
|
|
634
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
|
|
636
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions)
|
|
635
637
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
|
|
636
638
|
"""
|
|
637
639
|
|
|
@@ -642,14 +644,14 @@ class ListDataQualityJobDefinitionsPaginator(Paginator):
|
|
|
642
644
|
],
|
|
643
645
|
) -> _PageIterator[ListDataQualityJobDefinitionsResponseTypeDef]:
|
|
644
646
|
"""
|
|
645
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
|
|
647
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDataQualityJobDefinitions.html#SageMaker.Paginator.ListDataQualityJobDefinitions.paginate)
|
|
646
648
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdataqualityjobdefinitionspaginator)
|
|
647
649
|
"""
|
|
648
650
|
|
|
649
651
|
|
|
650
652
|
class ListDeviceFleetsPaginator(Paginator):
|
|
651
653
|
"""
|
|
652
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets)
|
|
654
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets)
|
|
653
655
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
|
|
654
656
|
"""
|
|
655
657
|
|
|
@@ -657,14 +659,14 @@ class ListDeviceFleetsPaginator(Paginator):
|
|
|
657
659
|
self, **kwargs: Unpack[ListDeviceFleetsRequestListDeviceFleetsPaginateTypeDef]
|
|
658
660
|
) -> _PageIterator[ListDeviceFleetsResponseTypeDef]:
|
|
659
661
|
"""
|
|
660
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDeviceFleets.paginate)
|
|
662
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDeviceFleets.html#SageMaker.Paginator.ListDeviceFleets.paginate)
|
|
661
663
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicefleetspaginator)
|
|
662
664
|
"""
|
|
663
665
|
|
|
664
666
|
|
|
665
667
|
class ListDevicesPaginator(Paginator):
|
|
666
668
|
"""
|
|
667
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices)
|
|
669
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices)
|
|
668
670
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
|
|
669
671
|
"""
|
|
670
672
|
|
|
@@ -672,14 +674,14 @@ class ListDevicesPaginator(Paginator):
|
|
|
672
674
|
self, **kwargs: Unpack[ListDevicesRequestListDevicesPaginateTypeDef]
|
|
673
675
|
) -> _PageIterator[ListDevicesResponseTypeDef]:
|
|
674
676
|
"""
|
|
675
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDevices.paginate)
|
|
677
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDevices.html#SageMaker.Paginator.ListDevices.paginate)
|
|
676
678
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdevicespaginator)
|
|
677
679
|
"""
|
|
678
680
|
|
|
679
681
|
|
|
680
682
|
class ListDomainsPaginator(Paginator):
|
|
681
683
|
"""
|
|
682
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains)
|
|
684
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains)
|
|
683
685
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
|
|
684
686
|
"""
|
|
685
687
|
|
|
@@ -687,14 +689,14 @@ class ListDomainsPaginator(Paginator):
|
|
|
687
689
|
self, **kwargs: Unpack[ListDomainsRequestListDomainsPaginateTypeDef]
|
|
688
690
|
) -> _PageIterator[ListDomainsResponseTypeDef]:
|
|
689
691
|
"""
|
|
690
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListDomains.paginate)
|
|
692
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListDomains.html#SageMaker.Paginator.ListDomains.paginate)
|
|
691
693
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listdomainspaginator)
|
|
692
694
|
"""
|
|
693
695
|
|
|
694
696
|
|
|
695
697
|
class ListEdgeDeploymentPlansPaginator(Paginator):
|
|
696
698
|
"""
|
|
697
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgeDeploymentPlans)
|
|
699
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans)
|
|
698
700
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
|
|
699
701
|
"""
|
|
700
702
|
|
|
@@ -702,14 +704,14 @@ class ListEdgeDeploymentPlansPaginator(Paginator):
|
|
|
702
704
|
self, **kwargs: Unpack[ListEdgeDeploymentPlansRequestListEdgeDeploymentPlansPaginateTypeDef]
|
|
703
705
|
) -> _PageIterator[ListEdgeDeploymentPlansResponseTypeDef]:
|
|
704
706
|
"""
|
|
705
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgeDeploymentPlans.paginate)
|
|
707
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgeDeploymentPlans.html#SageMaker.Paginator.ListEdgeDeploymentPlans.paginate)
|
|
706
708
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgedeploymentplanspaginator)
|
|
707
709
|
"""
|
|
708
710
|
|
|
709
711
|
|
|
710
712
|
class ListEdgePackagingJobsPaginator(Paginator):
|
|
711
713
|
"""
|
|
712
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs)
|
|
714
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs)
|
|
713
715
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
|
|
714
716
|
"""
|
|
715
717
|
|
|
@@ -717,14 +719,14 @@ class ListEdgePackagingJobsPaginator(Paginator):
|
|
|
717
719
|
self, **kwargs: Unpack[ListEdgePackagingJobsRequestListEdgePackagingJobsPaginateTypeDef]
|
|
718
720
|
) -> _PageIterator[ListEdgePackagingJobsResponseTypeDef]:
|
|
719
721
|
"""
|
|
720
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
|
|
722
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEdgePackagingJobs.html#SageMaker.Paginator.ListEdgePackagingJobs.paginate)
|
|
721
723
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listedgepackagingjobspaginator)
|
|
722
724
|
"""
|
|
723
725
|
|
|
724
726
|
|
|
725
727
|
class ListEndpointConfigsPaginator(Paginator):
|
|
726
728
|
"""
|
|
727
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs)
|
|
729
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs)
|
|
728
730
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
|
|
729
731
|
"""
|
|
730
732
|
|
|
@@ -732,14 +734,14 @@ class ListEndpointConfigsPaginator(Paginator):
|
|
|
732
734
|
self, **kwargs: Unpack[ListEndpointConfigsInputListEndpointConfigsPaginateTypeDef]
|
|
733
735
|
) -> _PageIterator[ListEndpointConfigsOutputTypeDef]:
|
|
734
736
|
"""
|
|
735
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
|
|
737
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpointConfigs.html#SageMaker.Paginator.ListEndpointConfigs.paginate)
|
|
736
738
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointconfigspaginator)
|
|
737
739
|
"""
|
|
738
740
|
|
|
739
741
|
|
|
740
742
|
class ListEndpointsPaginator(Paginator):
|
|
741
743
|
"""
|
|
742
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints)
|
|
744
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints)
|
|
743
745
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
|
|
744
746
|
"""
|
|
745
747
|
|
|
@@ -747,14 +749,14 @@ class ListEndpointsPaginator(Paginator):
|
|
|
747
749
|
self, **kwargs: Unpack[ListEndpointsInputListEndpointsPaginateTypeDef]
|
|
748
750
|
) -> _PageIterator[ListEndpointsOutputTypeDef]:
|
|
749
751
|
"""
|
|
750
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListEndpoints.paginate)
|
|
752
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListEndpoints.html#SageMaker.Paginator.ListEndpoints.paginate)
|
|
751
753
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listendpointspaginator)
|
|
752
754
|
"""
|
|
753
755
|
|
|
754
756
|
|
|
755
757
|
class ListExperimentsPaginator(Paginator):
|
|
756
758
|
"""
|
|
757
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments)
|
|
759
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments)
|
|
758
760
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
|
|
759
761
|
"""
|
|
760
762
|
|
|
@@ -762,14 +764,14 @@ class ListExperimentsPaginator(Paginator):
|
|
|
762
764
|
self, **kwargs: Unpack[ListExperimentsRequestListExperimentsPaginateTypeDef]
|
|
763
765
|
) -> _PageIterator[ListExperimentsResponseTypeDef]:
|
|
764
766
|
"""
|
|
765
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListExperiments.paginate)
|
|
767
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListExperiments.html#SageMaker.Paginator.ListExperiments.paginate)
|
|
766
768
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listexperimentspaginator)
|
|
767
769
|
"""
|
|
768
770
|
|
|
769
771
|
|
|
770
772
|
class ListFeatureGroupsPaginator(Paginator):
|
|
771
773
|
"""
|
|
772
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups)
|
|
774
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups)
|
|
773
775
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
|
|
774
776
|
"""
|
|
775
777
|
|
|
@@ -777,14 +779,14 @@ class ListFeatureGroupsPaginator(Paginator):
|
|
|
777
779
|
self, **kwargs: Unpack[ListFeatureGroupsRequestListFeatureGroupsPaginateTypeDef]
|
|
778
780
|
) -> _PageIterator[ListFeatureGroupsResponseTypeDef]:
|
|
779
781
|
"""
|
|
780
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFeatureGroups.paginate)
|
|
782
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFeatureGroups.html#SageMaker.Paginator.ListFeatureGroups.paginate)
|
|
781
783
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listfeaturegroupspaginator)
|
|
782
784
|
"""
|
|
783
785
|
|
|
784
786
|
|
|
785
787
|
class ListFlowDefinitionsPaginator(Paginator):
|
|
786
788
|
"""
|
|
787
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions)
|
|
789
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions)
|
|
788
790
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
|
|
789
791
|
"""
|
|
790
792
|
|
|
@@ -792,14 +794,14 @@ class ListFlowDefinitionsPaginator(Paginator):
|
|
|
792
794
|
self, **kwargs: Unpack[ListFlowDefinitionsRequestListFlowDefinitionsPaginateTypeDef]
|
|
793
795
|
) -> _PageIterator[ListFlowDefinitionsResponseTypeDef]:
|
|
794
796
|
"""
|
|
795
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
|
|
797
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListFlowDefinitions.html#SageMaker.Paginator.ListFlowDefinitions.paginate)
|
|
796
798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listflowdefinitionspaginator)
|
|
797
799
|
"""
|
|
798
800
|
|
|
799
801
|
|
|
800
802
|
class ListHumanTaskUisPaginator(Paginator):
|
|
801
803
|
"""
|
|
802
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis)
|
|
804
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis)
|
|
803
805
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
|
|
804
806
|
"""
|
|
805
807
|
|
|
@@ -807,14 +809,14 @@ class ListHumanTaskUisPaginator(Paginator):
|
|
|
807
809
|
self, **kwargs: Unpack[ListHumanTaskUisRequestListHumanTaskUisPaginateTypeDef]
|
|
808
810
|
) -> _PageIterator[ListHumanTaskUisResponseTypeDef]:
|
|
809
811
|
"""
|
|
810
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
|
|
812
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHumanTaskUis.html#SageMaker.Paginator.ListHumanTaskUis.paginate)
|
|
811
813
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhumantaskuispaginator)
|
|
812
814
|
"""
|
|
813
815
|
|
|
814
816
|
|
|
815
817
|
class ListHyperParameterTuningJobsPaginator(Paginator):
|
|
816
818
|
"""
|
|
817
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
|
|
819
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs)
|
|
818
820
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
|
|
819
821
|
"""
|
|
820
822
|
|
|
@@ -825,14 +827,14 @@ class ListHyperParameterTuningJobsPaginator(Paginator):
|
|
|
825
827
|
],
|
|
826
828
|
) -> _PageIterator[ListHyperParameterTuningJobsResponseTypeDef]:
|
|
827
829
|
"""
|
|
828
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
|
|
830
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListHyperParameterTuningJobs.html#SageMaker.Paginator.ListHyperParameterTuningJobs.paginate)
|
|
829
831
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listhyperparametertuningjobspaginator)
|
|
830
832
|
"""
|
|
831
833
|
|
|
832
834
|
|
|
833
835
|
class ListImageVersionsPaginator(Paginator):
|
|
834
836
|
"""
|
|
835
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions)
|
|
837
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions)
|
|
836
838
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
|
|
837
839
|
"""
|
|
838
840
|
|
|
@@ -840,14 +842,14 @@ class ListImageVersionsPaginator(Paginator):
|
|
|
840
842
|
self, **kwargs: Unpack[ListImageVersionsRequestListImageVersionsPaginateTypeDef]
|
|
841
843
|
) -> _PageIterator[ListImageVersionsResponseTypeDef]:
|
|
842
844
|
"""
|
|
843
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImageVersions.paginate)
|
|
845
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImageVersions.html#SageMaker.Paginator.ListImageVersions.paginate)
|
|
844
846
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimageversionspaginator)
|
|
845
847
|
"""
|
|
846
848
|
|
|
847
849
|
|
|
848
850
|
class ListImagesPaginator(Paginator):
|
|
849
851
|
"""
|
|
850
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages)
|
|
852
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages)
|
|
851
853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
|
|
852
854
|
"""
|
|
853
855
|
|
|
@@ -855,14 +857,14 @@ class ListImagesPaginator(Paginator):
|
|
|
855
857
|
self, **kwargs: Unpack[ListImagesRequestListImagesPaginateTypeDef]
|
|
856
858
|
) -> _PageIterator[ListImagesResponseTypeDef]:
|
|
857
859
|
"""
|
|
858
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListImages.paginate)
|
|
860
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListImages.html#SageMaker.Paginator.ListImages.paginate)
|
|
859
861
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listimagespaginator)
|
|
860
862
|
"""
|
|
861
863
|
|
|
862
864
|
|
|
863
865
|
class ListInferenceComponentsPaginator(Paginator):
|
|
864
866
|
"""
|
|
865
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceComponents)
|
|
867
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents)
|
|
866
868
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
|
|
867
869
|
"""
|
|
868
870
|
|
|
@@ -870,14 +872,14 @@ class ListInferenceComponentsPaginator(Paginator):
|
|
|
870
872
|
self, **kwargs: Unpack[ListInferenceComponentsInputListInferenceComponentsPaginateTypeDef]
|
|
871
873
|
) -> _PageIterator[ListInferenceComponentsOutputTypeDef]:
|
|
872
874
|
"""
|
|
873
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceComponents.paginate)
|
|
875
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceComponents.html#SageMaker.Paginator.ListInferenceComponents.paginate)
|
|
874
876
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencecomponentspaginator)
|
|
875
877
|
"""
|
|
876
878
|
|
|
877
879
|
|
|
878
880
|
class ListInferenceExperimentsPaginator(Paginator):
|
|
879
881
|
"""
|
|
880
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceExperiments)
|
|
882
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments)
|
|
881
883
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
|
|
882
884
|
"""
|
|
883
885
|
|
|
@@ -886,14 +888,14 @@ class ListInferenceExperimentsPaginator(Paginator):
|
|
|
886
888
|
**kwargs: Unpack[ListInferenceExperimentsRequestListInferenceExperimentsPaginateTypeDef],
|
|
887
889
|
) -> _PageIterator[ListInferenceExperimentsResponseTypeDef]:
|
|
888
890
|
"""
|
|
889
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceExperiments.paginate)
|
|
891
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceExperiments.html#SageMaker.Paginator.ListInferenceExperiments.paginate)
|
|
890
892
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferenceexperimentspaginator)
|
|
891
893
|
"""
|
|
892
894
|
|
|
893
895
|
|
|
894
896
|
class ListInferenceRecommendationsJobStepsPaginator(Paginator):
|
|
895
897
|
"""
|
|
896
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps)
|
|
898
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps)
|
|
897
899
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
|
|
898
900
|
"""
|
|
899
901
|
|
|
@@ -904,14 +906,14 @@ class ListInferenceRecommendationsJobStepsPaginator(Paginator):
|
|
|
904
906
|
],
|
|
905
907
|
) -> _PageIterator[ListInferenceRecommendationsJobStepsResponseTypeDef]:
|
|
906
908
|
"""
|
|
907
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps.paginate)
|
|
909
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobSteps.html#SageMaker.Paginator.ListInferenceRecommendationsJobSteps.paginate)
|
|
908
910
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobstepspaginator)
|
|
909
911
|
"""
|
|
910
912
|
|
|
911
913
|
|
|
912
914
|
class ListInferenceRecommendationsJobsPaginator(Paginator):
|
|
913
915
|
"""
|
|
914
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
|
|
916
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs)
|
|
915
917
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
|
|
916
918
|
"""
|
|
917
919
|
|
|
@@ -922,29 +924,14 @@ class ListInferenceRecommendationsJobsPaginator(Paginator):
|
|
|
922
924
|
],
|
|
923
925
|
) -> _PageIterator[ListInferenceRecommendationsJobsResponseTypeDef]:
|
|
924
926
|
"""
|
|
925
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
|
|
927
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListInferenceRecommendationsJobs.html#SageMaker.Paginator.ListInferenceRecommendationsJobs.paginate)
|
|
926
928
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listinferencerecommendationsjobspaginator)
|
|
927
929
|
"""
|
|
928
930
|
|
|
929
931
|
|
|
930
|
-
class ListLabelingJobsPaginator(Paginator):
|
|
931
|
-
"""
|
|
932
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs)
|
|
933
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
934
|
-
"""
|
|
935
|
-
|
|
936
|
-
def paginate(
|
|
937
|
-
self, **kwargs: Unpack[ListLabelingJobsRequestListLabelingJobsPaginateTypeDef]
|
|
938
|
-
) -> _PageIterator[ListLabelingJobsResponseTypeDef]:
|
|
939
|
-
"""
|
|
940
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobs.paginate)
|
|
941
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
942
|
-
"""
|
|
943
|
-
|
|
944
|
-
|
|
945
932
|
class ListLabelingJobsForWorkteamPaginator(Paginator):
|
|
946
933
|
"""
|
|
947
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
|
|
934
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam)
|
|
948
935
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
|
|
949
936
|
"""
|
|
950
937
|
|
|
@@ -955,14 +942,29 @@ class ListLabelingJobsForWorkteamPaginator(Paginator):
|
|
|
955
942
|
],
|
|
956
943
|
) -> _PageIterator[ListLabelingJobsForWorkteamResponseTypeDef]:
|
|
957
944
|
"""
|
|
958
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
|
|
945
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobsForWorkteam.html#SageMaker.Paginator.ListLabelingJobsForWorkteam.paginate)
|
|
959
946
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobsforworkteampaginator)
|
|
960
947
|
"""
|
|
961
948
|
|
|
962
949
|
|
|
950
|
+
class ListLabelingJobsPaginator(Paginator):
|
|
951
|
+
"""
|
|
952
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs)
|
|
953
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
954
|
+
"""
|
|
955
|
+
|
|
956
|
+
def paginate(
|
|
957
|
+
self, **kwargs: Unpack[ListLabelingJobsRequestListLabelingJobsPaginateTypeDef]
|
|
958
|
+
) -> _PageIterator[ListLabelingJobsResponseTypeDef]:
|
|
959
|
+
"""
|
|
960
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLabelingJobs.html#SageMaker.Paginator.ListLabelingJobs.paginate)
|
|
961
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlabelingjobspaginator)
|
|
962
|
+
"""
|
|
963
|
+
|
|
964
|
+
|
|
963
965
|
class ListLineageGroupsPaginator(Paginator):
|
|
964
966
|
"""
|
|
965
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups)
|
|
967
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups)
|
|
966
968
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
|
|
967
969
|
"""
|
|
968
970
|
|
|
@@ -970,14 +972,14 @@ class ListLineageGroupsPaginator(Paginator):
|
|
|
970
972
|
self, **kwargs: Unpack[ListLineageGroupsRequestListLineageGroupsPaginateTypeDef]
|
|
971
973
|
) -> _PageIterator[ListLineageGroupsResponseTypeDef]:
|
|
972
974
|
"""
|
|
973
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListLineageGroups.paginate)
|
|
975
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListLineageGroups.html#SageMaker.Paginator.ListLineageGroups.paginate)
|
|
974
976
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listlineagegroupspaginator)
|
|
975
977
|
"""
|
|
976
978
|
|
|
977
979
|
|
|
978
980
|
class ListMlflowTrackingServersPaginator(Paginator):
|
|
979
981
|
"""
|
|
980
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers)
|
|
982
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers)
|
|
981
983
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
982
984
|
"""
|
|
983
985
|
|
|
@@ -986,14 +988,14 @@ class ListMlflowTrackingServersPaginator(Paginator):
|
|
|
986
988
|
**kwargs: Unpack[ListMlflowTrackingServersRequestListMlflowTrackingServersPaginateTypeDef],
|
|
987
989
|
) -> _PageIterator[ListMlflowTrackingServersResponseTypeDef]:
|
|
988
990
|
"""
|
|
989
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
|
|
991
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMlflowTrackingServers.html#SageMaker.Paginator.ListMlflowTrackingServers.paginate)
|
|
990
992
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmlflowtrackingserverspaginator)
|
|
991
993
|
"""
|
|
992
994
|
|
|
993
995
|
|
|
994
996
|
class ListModelBiasJobDefinitionsPaginator(Paginator):
|
|
995
997
|
"""
|
|
996
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
|
|
998
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions)
|
|
997
999
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
|
|
998
1000
|
"""
|
|
999
1001
|
|
|
@@ -1004,14 +1006,14 @@ class ListModelBiasJobDefinitionsPaginator(Paginator):
|
|
|
1004
1006
|
],
|
|
1005
1007
|
) -> _PageIterator[ListModelBiasJobDefinitionsResponseTypeDef]:
|
|
1006
1008
|
"""
|
|
1007
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
|
|
1009
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelBiasJobDefinitions.html#SageMaker.Paginator.ListModelBiasJobDefinitions.paginate)
|
|
1008
1010
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelbiasjobdefinitionspaginator)
|
|
1009
1011
|
"""
|
|
1010
1012
|
|
|
1011
1013
|
|
|
1012
1014
|
class ListModelCardExportJobsPaginator(Paginator):
|
|
1013
1015
|
"""
|
|
1014
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCardExportJobs)
|
|
1016
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs)
|
|
1015
1017
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
|
|
1016
1018
|
"""
|
|
1017
1019
|
|
|
@@ -1019,14 +1021,14 @@ class ListModelCardExportJobsPaginator(Paginator):
|
|
|
1019
1021
|
self, **kwargs: Unpack[ListModelCardExportJobsRequestListModelCardExportJobsPaginateTypeDef]
|
|
1020
1022
|
) -> _PageIterator[ListModelCardExportJobsResponseTypeDef]:
|
|
1021
1023
|
"""
|
|
1022
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCardExportJobs.paginate)
|
|
1024
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardExportJobs.html#SageMaker.Paginator.ListModelCardExportJobs.paginate)
|
|
1023
1025
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardexportjobspaginator)
|
|
1024
1026
|
"""
|
|
1025
1027
|
|
|
1026
1028
|
|
|
1027
1029
|
class ListModelCardVersionsPaginator(Paginator):
|
|
1028
1030
|
"""
|
|
1029
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCardVersions)
|
|
1031
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions)
|
|
1030
1032
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
|
|
1031
1033
|
"""
|
|
1032
1034
|
|
|
@@ -1034,14 +1036,14 @@ class ListModelCardVersionsPaginator(Paginator):
|
|
|
1034
1036
|
self, **kwargs: Unpack[ListModelCardVersionsRequestListModelCardVersionsPaginateTypeDef]
|
|
1035
1037
|
) -> _PageIterator[ListModelCardVersionsResponseTypeDef]:
|
|
1036
1038
|
"""
|
|
1037
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCardVersions.paginate)
|
|
1039
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCardVersions.html#SageMaker.Paginator.ListModelCardVersions.paginate)
|
|
1038
1040
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardversionspaginator)
|
|
1039
1041
|
"""
|
|
1040
1042
|
|
|
1041
1043
|
|
|
1042
1044
|
class ListModelCardsPaginator(Paginator):
|
|
1043
1045
|
"""
|
|
1044
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCards)
|
|
1046
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards)
|
|
1045
1047
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
|
|
1046
1048
|
"""
|
|
1047
1049
|
|
|
@@ -1049,14 +1051,14 @@ class ListModelCardsPaginator(Paginator):
|
|
|
1049
1051
|
self, **kwargs: Unpack[ListModelCardsRequestListModelCardsPaginateTypeDef]
|
|
1050
1052
|
) -> _PageIterator[ListModelCardsResponseTypeDef]:
|
|
1051
1053
|
"""
|
|
1052
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelCards.paginate)
|
|
1054
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelCards.html#SageMaker.Paginator.ListModelCards.paginate)
|
|
1053
1055
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelcardspaginator)
|
|
1054
1056
|
"""
|
|
1055
1057
|
|
|
1056
1058
|
|
|
1057
1059
|
class ListModelExplainabilityJobDefinitionsPaginator(Paginator):
|
|
1058
1060
|
"""
|
|
1059
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
|
|
1061
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions)
|
|
1060
1062
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
|
|
1061
1063
|
"""
|
|
1062
1064
|
|
|
@@ -1067,14 +1069,14 @@ class ListModelExplainabilityJobDefinitionsPaginator(Paginator):
|
|
|
1067
1069
|
],
|
|
1068
1070
|
) -> _PageIterator[ListModelExplainabilityJobDefinitionsResponseTypeDef]:
|
|
1069
1071
|
"""
|
|
1070
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
|
|
1072
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelExplainabilityJobDefinitions.html#SageMaker.Paginator.ListModelExplainabilityJobDefinitions.paginate)
|
|
1071
1073
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelexplainabilityjobdefinitionspaginator)
|
|
1072
1074
|
"""
|
|
1073
1075
|
|
|
1074
1076
|
|
|
1075
1077
|
class ListModelMetadataPaginator(Paginator):
|
|
1076
1078
|
"""
|
|
1077
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata)
|
|
1079
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata)
|
|
1078
1080
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
|
|
1079
1081
|
"""
|
|
1080
1082
|
|
|
@@ -1082,14 +1084,14 @@ class ListModelMetadataPaginator(Paginator):
|
|
|
1082
1084
|
self, **kwargs: Unpack[ListModelMetadataRequestListModelMetadataPaginateTypeDef]
|
|
1083
1085
|
) -> _PageIterator[ListModelMetadataResponseTypeDef]:
|
|
1084
1086
|
"""
|
|
1085
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelMetadata.paginate)
|
|
1087
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelMetadata.html#SageMaker.Paginator.ListModelMetadata.paginate)
|
|
1086
1088
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelmetadatapaginator)
|
|
1087
1089
|
"""
|
|
1088
1090
|
|
|
1089
1091
|
|
|
1090
1092
|
class ListModelPackageGroupsPaginator(Paginator):
|
|
1091
1093
|
"""
|
|
1092
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups)
|
|
1094
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups)
|
|
1093
1095
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
|
|
1094
1096
|
"""
|
|
1095
1097
|
|
|
@@ -1097,14 +1099,14 @@ class ListModelPackageGroupsPaginator(Paginator):
|
|
|
1097
1099
|
self, **kwargs: Unpack[ListModelPackageGroupsInputListModelPackageGroupsPaginateTypeDef]
|
|
1098
1100
|
) -> _PageIterator[ListModelPackageGroupsOutputTypeDef]:
|
|
1099
1101
|
"""
|
|
1100
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
|
|
1102
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackageGroups.html#SageMaker.Paginator.ListModelPackageGroups.paginate)
|
|
1101
1103
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagegroupspaginator)
|
|
1102
1104
|
"""
|
|
1103
1105
|
|
|
1104
1106
|
|
|
1105
1107
|
class ListModelPackagesPaginator(Paginator):
|
|
1106
1108
|
"""
|
|
1107
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages)
|
|
1109
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages)
|
|
1108
1110
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
|
|
1109
1111
|
"""
|
|
1110
1112
|
|
|
@@ -1112,14 +1114,14 @@ class ListModelPackagesPaginator(Paginator):
|
|
|
1112
1114
|
self, **kwargs: Unpack[ListModelPackagesInputListModelPackagesPaginateTypeDef]
|
|
1113
1115
|
) -> _PageIterator[ListModelPackagesOutputTypeDef]:
|
|
1114
1116
|
"""
|
|
1115
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelPackages.paginate)
|
|
1117
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelPackages.html#SageMaker.Paginator.ListModelPackages.paginate)
|
|
1116
1118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelpackagespaginator)
|
|
1117
1119
|
"""
|
|
1118
1120
|
|
|
1119
1121
|
|
|
1120
1122
|
class ListModelQualityJobDefinitionsPaginator(Paginator):
|
|
1121
1123
|
"""
|
|
1122
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
|
|
1124
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions)
|
|
1123
1125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
|
|
1124
1126
|
"""
|
|
1125
1127
|
|
|
@@ -1130,14 +1132,14 @@ class ListModelQualityJobDefinitionsPaginator(Paginator):
|
|
|
1130
1132
|
],
|
|
1131
1133
|
) -> _PageIterator[ListModelQualityJobDefinitionsResponseTypeDef]:
|
|
1132
1134
|
"""
|
|
1133
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
|
|
1135
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModelQualityJobDefinitions.html#SageMaker.Paginator.ListModelQualityJobDefinitions.paginate)
|
|
1134
1136
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelqualityjobdefinitionspaginator)
|
|
1135
1137
|
"""
|
|
1136
1138
|
|
|
1137
1139
|
|
|
1138
1140
|
class ListModelsPaginator(Paginator):
|
|
1139
1141
|
"""
|
|
1140
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels)
|
|
1142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels)
|
|
1141
1143
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
|
|
1142
1144
|
"""
|
|
1143
1145
|
|
|
@@ -1145,14 +1147,14 @@ class ListModelsPaginator(Paginator):
|
|
|
1145
1147
|
self, **kwargs: Unpack[ListModelsInputListModelsPaginateTypeDef]
|
|
1146
1148
|
) -> _PageIterator[ListModelsOutputTypeDef]:
|
|
1147
1149
|
"""
|
|
1148
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListModels.paginate)
|
|
1150
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListModels.html#SageMaker.Paginator.ListModels.paginate)
|
|
1149
1151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmodelspaginator)
|
|
1150
1152
|
"""
|
|
1151
1153
|
|
|
1152
1154
|
|
|
1153
1155
|
class ListMonitoringAlertHistoryPaginator(Paginator):
|
|
1154
1156
|
"""
|
|
1155
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringAlertHistory)
|
|
1157
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory)
|
|
1156
1158
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
|
|
1157
1159
|
"""
|
|
1158
1160
|
|
|
@@ -1163,14 +1165,14 @@ class ListMonitoringAlertHistoryPaginator(Paginator):
|
|
|
1163
1165
|
],
|
|
1164
1166
|
) -> _PageIterator[ListMonitoringAlertHistoryResponseTypeDef]:
|
|
1165
1167
|
"""
|
|
1166
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringAlertHistory.paginate)
|
|
1168
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlertHistory.html#SageMaker.Paginator.ListMonitoringAlertHistory.paginate)
|
|
1167
1169
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalerthistorypaginator)
|
|
1168
1170
|
"""
|
|
1169
1171
|
|
|
1170
1172
|
|
|
1171
1173
|
class ListMonitoringAlertsPaginator(Paginator):
|
|
1172
1174
|
"""
|
|
1173
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringAlerts)
|
|
1175
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts)
|
|
1174
1176
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
|
|
1175
1177
|
"""
|
|
1176
1178
|
|
|
@@ -1178,14 +1180,14 @@ class ListMonitoringAlertsPaginator(Paginator):
|
|
|
1178
1180
|
self, **kwargs: Unpack[ListMonitoringAlertsRequestListMonitoringAlertsPaginateTypeDef]
|
|
1179
1181
|
) -> _PageIterator[ListMonitoringAlertsResponseTypeDef]:
|
|
1180
1182
|
"""
|
|
1181
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringAlerts.paginate)
|
|
1183
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringAlerts.html#SageMaker.Paginator.ListMonitoringAlerts.paginate)
|
|
1182
1184
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringalertspaginator)
|
|
1183
1185
|
"""
|
|
1184
1186
|
|
|
1185
1187
|
|
|
1186
1188
|
class ListMonitoringExecutionsPaginator(Paginator):
|
|
1187
1189
|
"""
|
|
1188
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions)
|
|
1190
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions)
|
|
1189
1191
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
|
|
1190
1192
|
"""
|
|
1191
1193
|
|
|
@@ -1194,14 +1196,14 @@ class ListMonitoringExecutionsPaginator(Paginator):
|
|
|
1194
1196
|
**kwargs: Unpack[ListMonitoringExecutionsRequestListMonitoringExecutionsPaginateTypeDef],
|
|
1195
1197
|
) -> _PageIterator[ListMonitoringExecutionsResponseTypeDef]:
|
|
1196
1198
|
"""
|
|
1197
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
|
|
1199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringExecutions.html#SageMaker.Paginator.ListMonitoringExecutions.paginate)
|
|
1198
1200
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringexecutionspaginator)
|
|
1199
1201
|
"""
|
|
1200
1202
|
|
|
1201
1203
|
|
|
1202
1204
|
class ListMonitoringSchedulesPaginator(Paginator):
|
|
1203
1205
|
"""
|
|
1204
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules)
|
|
1206
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules)
|
|
1205
1207
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
|
|
1206
1208
|
"""
|
|
1207
1209
|
|
|
@@ -1209,14 +1211,14 @@ class ListMonitoringSchedulesPaginator(Paginator):
|
|
|
1209
1211
|
self, **kwargs: Unpack[ListMonitoringSchedulesRequestListMonitoringSchedulesPaginateTypeDef]
|
|
1210
1212
|
) -> _PageIterator[ListMonitoringSchedulesResponseTypeDef]:
|
|
1211
1213
|
"""
|
|
1212
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
|
|
1214
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListMonitoringSchedules.html#SageMaker.Paginator.ListMonitoringSchedules.paginate)
|
|
1213
1215
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listmonitoringschedulespaginator)
|
|
1214
1216
|
"""
|
|
1215
1217
|
|
|
1216
1218
|
|
|
1217
1219
|
class ListNotebookInstanceLifecycleConfigsPaginator(Paginator):
|
|
1218
1220
|
"""
|
|
1219
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
|
|
1221
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs)
|
|
1220
1222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
|
|
1221
1223
|
"""
|
|
1222
1224
|
|
|
@@ -1227,14 +1229,14 @@ class ListNotebookInstanceLifecycleConfigsPaginator(Paginator):
|
|
|
1227
1229
|
],
|
|
1228
1230
|
) -> _PageIterator[ListNotebookInstanceLifecycleConfigsOutputTypeDef]:
|
|
1229
1231
|
"""
|
|
1230
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
|
|
1232
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstanceLifecycleConfigs.html#SageMaker.Paginator.ListNotebookInstanceLifecycleConfigs.paginate)
|
|
1231
1233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancelifecycleconfigspaginator)
|
|
1232
1234
|
"""
|
|
1233
1235
|
|
|
1234
1236
|
|
|
1235
1237
|
class ListNotebookInstancesPaginator(Paginator):
|
|
1236
1238
|
"""
|
|
1237
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances)
|
|
1239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances)
|
|
1238
1240
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
|
|
1239
1241
|
"""
|
|
1240
1242
|
|
|
@@ -1242,14 +1244,14 @@ class ListNotebookInstancesPaginator(Paginator):
|
|
|
1242
1244
|
self, **kwargs: Unpack[ListNotebookInstancesInputListNotebookInstancesPaginateTypeDef]
|
|
1243
1245
|
) -> _PageIterator[ListNotebookInstancesOutputTypeDef]:
|
|
1244
1246
|
"""
|
|
1245
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListNotebookInstances.paginate)
|
|
1247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListNotebookInstances.html#SageMaker.Paginator.ListNotebookInstances.paginate)
|
|
1246
1248
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listnotebookinstancespaginator)
|
|
1247
1249
|
"""
|
|
1248
1250
|
|
|
1249
1251
|
|
|
1250
1252
|
class ListOptimizationJobsPaginator(Paginator):
|
|
1251
1253
|
"""
|
|
1252
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListOptimizationJobs)
|
|
1254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs)
|
|
1253
1255
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
|
|
1254
1256
|
"""
|
|
1255
1257
|
|
|
@@ -1257,14 +1259,14 @@ class ListOptimizationJobsPaginator(Paginator):
|
|
|
1257
1259
|
self, **kwargs: Unpack[ListOptimizationJobsRequestListOptimizationJobsPaginateTypeDef]
|
|
1258
1260
|
) -> _PageIterator[ListOptimizationJobsResponseTypeDef]:
|
|
1259
1261
|
"""
|
|
1260
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListOptimizationJobs.paginate)
|
|
1262
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListOptimizationJobs.html#SageMaker.Paginator.ListOptimizationJobs.paginate)
|
|
1261
1263
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listoptimizationjobspaginator)
|
|
1262
1264
|
"""
|
|
1263
1265
|
|
|
1264
1266
|
|
|
1265
1267
|
class ListPipelineExecutionStepsPaginator(Paginator):
|
|
1266
1268
|
"""
|
|
1267
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps)
|
|
1269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps)
|
|
1268
1270
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
|
|
1269
1271
|
"""
|
|
1270
1272
|
|
|
@@ -1275,14 +1277,14 @@ class ListPipelineExecutionStepsPaginator(Paginator):
|
|
|
1275
1277
|
],
|
|
1276
1278
|
) -> _PageIterator[ListPipelineExecutionStepsResponseTypeDef]:
|
|
1277
1279
|
"""
|
|
1278
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
|
|
1280
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutionSteps.html#SageMaker.Paginator.ListPipelineExecutionSteps.paginate)
|
|
1279
1281
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionstepspaginator)
|
|
1280
1282
|
"""
|
|
1281
1283
|
|
|
1282
1284
|
|
|
1283
1285
|
class ListPipelineExecutionsPaginator(Paginator):
|
|
1284
1286
|
"""
|
|
1285
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions)
|
|
1287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions)
|
|
1286
1288
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
|
|
1287
1289
|
"""
|
|
1288
1290
|
|
|
@@ -1290,14 +1292,14 @@ class ListPipelineExecutionsPaginator(Paginator):
|
|
|
1290
1292
|
self, **kwargs: Unpack[ListPipelineExecutionsRequestListPipelineExecutionsPaginateTypeDef]
|
|
1291
1293
|
) -> _PageIterator[ListPipelineExecutionsResponseTypeDef]:
|
|
1292
1294
|
"""
|
|
1293
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
|
|
1295
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineExecutions.html#SageMaker.Paginator.ListPipelineExecutions.paginate)
|
|
1294
1296
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineexecutionspaginator)
|
|
1295
1297
|
"""
|
|
1296
1298
|
|
|
1297
1299
|
|
|
1298
1300
|
class ListPipelineParametersForExecutionPaginator(Paginator):
|
|
1299
1301
|
"""
|
|
1300
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution)
|
|
1302
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution)
|
|
1301
1303
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
|
|
1302
1304
|
"""
|
|
1303
1305
|
|
|
@@ -1308,14 +1310,14 @@ class ListPipelineParametersForExecutionPaginator(Paginator):
|
|
|
1308
1310
|
],
|
|
1309
1311
|
) -> _PageIterator[ListPipelineParametersForExecutionResponseTypeDef]:
|
|
1310
1312
|
"""
|
|
1311
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
|
|
1313
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelineParametersForExecution.html#SageMaker.Paginator.ListPipelineParametersForExecution.paginate)
|
|
1312
1314
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelineparametersforexecutionpaginator)
|
|
1313
1315
|
"""
|
|
1314
1316
|
|
|
1315
1317
|
|
|
1316
1318
|
class ListPipelinesPaginator(Paginator):
|
|
1317
1319
|
"""
|
|
1318
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines)
|
|
1320
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines)
|
|
1319
1321
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
|
|
1320
1322
|
"""
|
|
1321
1323
|
|
|
@@ -1323,14 +1325,14 @@ class ListPipelinesPaginator(Paginator):
|
|
|
1323
1325
|
self, **kwargs: Unpack[ListPipelinesRequestListPipelinesPaginateTypeDef]
|
|
1324
1326
|
) -> _PageIterator[ListPipelinesResponseTypeDef]:
|
|
1325
1327
|
"""
|
|
1326
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListPipelines.paginate)
|
|
1328
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListPipelines.html#SageMaker.Paginator.ListPipelines.paginate)
|
|
1327
1329
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listpipelinespaginator)
|
|
1328
1330
|
"""
|
|
1329
1331
|
|
|
1330
1332
|
|
|
1331
1333
|
class ListProcessingJobsPaginator(Paginator):
|
|
1332
1334
|
"""
|
|
1333
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs)
|
|
1335
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs)
|
|
1334
1336
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
|
|
1335
1337
|
"""
|
|
1336
1338
|
|
|
@@ -1338,14 +1340,14 @@ class ListProcessingJobsPaginator(Paginator):
|
|
|
1338
1340
|
self, **kwargs: Unpack[ListProcessingJobsRequestListProcessingJobsPaginateTypeDef]
|
|
1339
1341
|
) -> _PageIterator[ListProcessingJobsResponseTypeDef]:
|
|
1340
1342
|
"""
|
|
1341
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListProcessingJobs.paginate)
|
|
1343
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListProcessingJobs.html#SageMaker.Paginator.ListProcessingJobs.paginate)
|
|
1342
1344
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listprocessingjobspaginator)
|
|
1343
1345
|
"""
|
|
1344
1346
|
|
|
1345
1347
|
|
|
1346
1348
|
class ListResourceCatalogsPaginator(Paginator):
|
|
1347
1349
|
"""
|
|
1348
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListResourceCatalogs)
|
|
1350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs)
|
|
1349
1351
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
|
|
1350
1352
|
"""
|
|
1351
1353
|
|
|
@@ -1353,14 +1355,14 @@ class ListResourceCatalogsPaginator(Paginator):
|
|
|
1353
1355
|
self, **kwargs: Unpack[ListResourceCatalogsRequestListResourceCatalogsPaginateTypeDef]
|
|
1354
1356
|
) -> _PageIterator[ListResourceCatalogsResponseTypeDef]:
|
|
1355
1357
|
"""
|
|
1356
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListResourceCatalogs.paginate)
|
|
1358
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListResourceCatalogs.html#SageMaker.Paginator.ListResourceCatalogs.paginate)
|
|
1357
1359
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listresourcecatalogspaginator)
|
|
1358
1360
|
"""
|
|
1359
1361
|
|
|
1360
1362
|
|
|
1361
1363
|
class ListSpacesPaginator(Paginator):
|
|
1362
1364
|
"""
|
|
1363
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSpaces)
|
|
1365
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces)
|
|
1364
1366
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
|
|
1365
1367
|
"""
|
|
1366
1368
|
|
|
@@ -1368,14 +1370,14 @@ class ListSpacesPaginator(Paginator):
|
|
|
1368
1370
|
self, **kwargs: Unpack[ListSpacesRequestListSpacesPaginateTypeDef]
|
|
1369
1371
|
) -> _PageIterator[ListSpacesResponseTypeDef]:
|
|
1370
1372
|
"""
|
|
1371
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSpaces.paginate)
|
|
1373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSpaces.html#SageMaker.Paginator.ListSpaces.paginate)
|
|
1372
1374
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listspacespaginator)
|
|
1373
1375
|
"""
|
|
1374
1376
|
|
|
1375
1377
|
|
|
1376
1378
|
class ListStageDevicesPaginator(Paginator):
|
|
1377
1379
|
"""
|
|
1378
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStageDevices)
|
|
1380
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices)
|
|
1379
1381
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
|
|
1380
1382
|
"""
|
|
1381
1383
|
|
|
@@ -1383,14 +1385,14 @@ class ListStageDevicesPaginator(Paginator):
|
|
|
1383
1385
|
self, **kwargs: Unpack[ListStageDevicesRequestListStageDevicesPaginateTypeDef]
|
|
1384
1386
|
) -> _PageIterator[ListStageDevicesResponseTypeDef]:
|
|
1385
1387
|
"""
|
|
1386
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStageDevices.paginate)
|
|
1388
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStageDevices.html#SageMaker.Paginator.ListStageDevices.paginate)
|
|
1387
1389
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststagedevicespaginator)
|
|
1388
1390
|
"""
|
|
1389
1391
|
|
|
1390
1392
|
|
|
1391
1393
|
class ListStudioLifecycleConfigsPaginator(Paginator):
|
|
1392
1394
|
"""
|
|
1393
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
|
|
1395
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs)
|
|
1394
1396
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
|
|
1395
1397
|
"""
|
|
1396
1398
|
|
|
@@ -1401,14 +1403,14 @@ class ListStudioLifecycleConfigsPaginator(Paginator):
|
|
|
1401
1403
|
],
|
|
1402
1404
|
) -> _PageIterator[ListStudioLifecycleConfigsResponseTypeDef]:
|
|
1403
1405
|
"""
|
|
1404
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
|
|
1406
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListStudioLifecycleConfigs.html#SageMaker.Paginator.ListStudioLifecycleConfigs.paginate)
|
|
1405
1407
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#liststudiolifecycleconfigspaginator)
|
|
1406
1408
|
"""
|
|
1407
1409
|
|
|
1408
1410
|
|
|
1409
1411
|
class ListSubscribedWorkteamsPaginator(Paginator):
|
|
1410
1412
|
"""
|
|
1411
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams)
|
|
1413
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams)
|
|
1412
1414
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
|
|
1413
1415
|
"""
|
|
1414
1416
|
|
|
@@ -1416,14 +1418,14 @@ class ListSubscribedWorkteamsPaginator(Paginator):
|
|
|
1416
1418
|
self, **kwargs: Unpack[ListSubscribedWorkteamsRequestListSubscribedWorkteamsPaginateTypeDef]
|
|
1417
1419
|
) -> _PageIterator[ListSubscribedWorkteamsResponseTypeDef]:
|
|
1418
1420
|
"""
|
|
1419
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
|
|
1421
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListSubscribedWorkteams.html#SageMaker.Paginator.ListSubscribedWorkteams.paginate)
|
|
1420
1422
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listsubscribedworkteamspaginator)
|
|
1421
1423
|
"""
|
|
1422
1424
|
|
|
1423
1425
|
|
|
1424
1426
|
class ListTagsPaginator(Paginator):
|
|
1425
1427
|
"""
|
|
1426
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags)
|
|
1428
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags)
|
|
1427
1429
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
|
|
1428
1430
|
"""
|
|
1429
1431
|
|
|
@@ -1431,29 +1433,14 @@ class ListTagsPaginator(Paginator):
|
|
|
1431
1433
|
self, **kwargs: Unpack[ListTagsInputListTagsPaginateTypeDef]
|
|
1432
1434
|
) -> _PageIterator[ListTagsOutputTypeDef]:
|
|
1433
1435
|
"""
|
|
1434
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTags.paginate)
|
|
1436
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTags.html#SageMaker.Paginator.ListTags.paginate)
|
|
1435
1437
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtagspaginator)
|
|
1436
1438
|
"""
|
|
1437
1439
|
|
|
1438
1440
|
|
|
1439
|
-
class ListTrainingJobsPaginator(Paginator):
|
|
1440
|
-
"""
|
|
1441
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs)
|
|
1442
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1443
|
-
"""
|
|
1444
|
-
|
|
1445
|
-
def paginate(
|
|
1446
|
-
self, **kwargs: Unpack[ListTrainingJobsRequestListTrainingJobsPaginateTypeDef]
|
|
1447
|
-
) -> _PageIterator[ListTrainingJobsResponseTypeDef]:
|
|
1448
|
-
"""
|
|
1449
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobs.paginate)
|
|
1450
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1451
|
-
"""
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
1441
|
class ListTrainingJobsForHyperParameterTuningJobPaginator(Paginator):
|
|
1455
1442
|
"""
|
|
1456
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
|
|
1443
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob)
|
|
1457
1444
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
|
|
1458
1445
|
"""
|
|
1459
1446
|
|
|
@@ -1464,14 +1451,29 @@ class ListTrainingJobsForHyperParameterTuningJobPaginator(Paginator):
|
|
|
1464
1451
|
],
|
|
1465
1452
|
) -> _PageIterator[ListTrainingJobsForHyperParameterTuningJobResponseTypeDef]:
|
|
1466
1453
|
"""
|
|
1467
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
|
|
1454
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobsForHyperParameterTuningJob.html#SageMaker.Paginator.ListTrainingJobsForHyperParameterTuningJob.paginate)
|
|
1468
1455
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobsforhyperparametertuningjobpaginator)
|
|
1469
1456
|
"""
|
|
1470
1457
|
|
|
1471
1458
|
|
|
1459
|
+
class ListTrainingJobsPaginator(Paginator):
|
|
1460
|
+
"""
|
|
1461
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs)
|
|
1462
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1463
|
+
"""
|
|
1464
|
+
|
|
1465
|
+
def paginate(
|
|
1466
|
+
self, **kwargs: Unpack[ListTrainingJobsRequestListTrainingJobsPaginateTypeDef]
|
|
1467
|
+
) -> _PageIterator[ListTrainingJobsResponseTypeDef]:
|
|
1468
|
+
"""
|
|
1469
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrainingJobs.html#SageMaker.Paginator.ListTrainingJobs.paginate)
|
|
1470
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrainingjobspaginator)
|
|
1471
|
+
"""
|
|
1472
|
+
|
|
1473
|
+
|
|
1472
1474
|
class ListTransformJobsPaginator(Paginator):
|
|
1473
1475
|
"""
|
|
1474
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs)
|
|
1476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs)
|
|
1475
1477
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
|
|
1476
1478
|
"""
|
|
1477
1479
|
|
|
@@ -1479,14 +1481,14 @@ class ListTransformJobsPaginator(Paginator):
|
|
|
1479
1481
|
self, **kwargs: Unpack[ListTransformJobsRequestListTransformJobsPaginateTypeDef]
|
|
1480
1482
|
) -> _PageIterator[ListTransformJobsResponseTypeDef]:
|
|
1481
1483
|
"""
|
|
1482
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTransformJobs.paginate)
|
|
1484
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTransformJobs.html#SageMaker.Paginator.ListTransformJobs.paginate)
|
|
1483
1485
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtransformjobspaginator)
|
|
1484
1486
|
"""
|
|
1485
1487
|
|
|
1486
1488
|
|
|
1487
1489
|
class ListTrialComponentsPaginator(Paginator):
|
|
1488
1490
|
"""
|
|
1489
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents)
|
|
1491
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents)
|
|
1490
1492
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
|
|
1491
1493
|
"""
|
|
1492
1494
|
|
|
@@ -1494,14 +1496,14 @@ class ListTrialComponentsPaginator(Paginator):
|
|
|
1494
1496
|
self, **kwargs: Unpack[ListTrialComponentsRequestListTrialComponentsPaginateTypeDef]
|
|
1495
1497
|
) -> _PageIterator[ListTrialComponentsResponseTypeDef]:
|
|
1496
1498
|
"""
|
|
1497
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrialComponents.paginate)
|
|
1499
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrialComponents.html#SageMaker.Paginator.ListTrialComponents.paginate)
|
|
1498
1500
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialcomponentspaginator)
|
|
1499
1501
|
"""
|
|
1500
1502
|
|
|
1501
1503
|
|
|
1502
1504
|
class ListTrialsPaginator(Paginator):
|
|
1503
1505
|
"""
|
|
1504
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials)
|
|
1506
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials)
|
|
1505
1507
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1506
1508
|
"""
|
|
1507
1509
|
|
|
@@ -1509,14 +1511,14 @@ class ListTrialsPaginator(Paginator):
|
|
|
1509
1511
|
self, **kwargs: Unpack[ListTrialsRequestListTrialsPaginateTypeDef]
|
|
1510
1512
|
) -> _PageIterator[ListTrialsResponseTypeDef]:
|
|
1511
1513
|
"""
|
|
1512
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListTrials.paginate)
|
|
1514
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListTrials.html#SageMaker.Paginator.ListTrials.paginate)
|
|
1513
1515
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listtrialspaginator)
|
|
1514
1516
|
"""
|
|
1515
1517
|
|
|
1516
1518
|
|
|
1517
1519
|
class ListUserProfilesPaginator(Paginator):
|
|
1518
1520
|
"""
|
|
1519
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles)
|
|
1521
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles)
|
|
1520
1522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
|
|
1521
1523
|
"""
|
|
1522
1524
|
|
|
@@ -1524,14 +1526,14 @@ class ListUserProfilesPaginator(Paginator):
|
|
|
1524
1526
|
self, **kwargs: Unpack[ListUserProfilesRequestListUserProfilesPaginateTypeDef]
|
|
1525
1527
|
) -> _PageIterator[ListUserProfilesResponseTypeDef]:
|
|
1526
1528
|
"""
|
|
1527
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListUserProfiles.paginate)
|
|
1529
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListUserProfiles.html#SageMaker.Paginator.ListUserProfiles.paginate)
|
|
1528
1530
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listuserprofilespaginator)
|
|
1529
1531
|
"""
|
|
1530
1532
|
|
|
1531
1533
|
|
|
1532
1534
|
class ListWorkforcesPaginator(Paginator):
|
|
1533
1535
|
"""
|
|
1534
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces)
|
|
1536
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces)
|
|
1535
1537
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
|
|
1536
1538
|
"""
|
|
1537
1539
|
|
|
@@ -1539,14 +1541,14 @@ class ListWorkforcesPaginator(Paginator):
|
|
|
1539
1541
|
self, **kwargs: Unpack[ListWorkforcesRequestListWorkforcesPaginateTypeDef]
|
|
1540
1542
|
) -> _PageIterator[ListWorkforcesResponseTypeDef]:
|
|
1541
1543
|
"""
|
|
1542
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkforces.paginate)
|
|
1544
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkforces.html#SageMaker.Paginator.ListWorkforces.paginate)
|
|
1543
1545
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkforcespaginator)
|
|
1544
1546
|
"""
|
|
1545
1547
|
|
|
1546
1548
|
|
|
1547
1549
|
class ListWorkteamsPaginator(Paginator):
|
|
1548
1550
|
"""
|
|
1549
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams)
|
|
1551
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams)
|
|
1550
1552
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
|
|
1551
1553
|
"""
|
|
1552
1554
|
|
|
@@ -1554,14 +1556,14 @@ class ListWorkteamsPaginator(Paginator):
|
|
|
1554
1556
|
self, **kwargs: Unpack[ListWorkteamsRequestListWorkteamsPaginateTypeDef]
|
|
1555
1557
|
) -> _PageIterator[ListWorkteamsResponseTypeDef]:
|
|
1556
1558
|
"""
|
|
1557
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.ListWorkteams.paginate)
|
|
1559
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListWorkteams.html#SageMaker.Paginator.ListWorkteams.paginate)
|
|
1558
1560
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listworkteamspaginator)
|
|
1559
1561
|
"""
|
|
1560
1562
|
|
|
1561
1563
|
|
|
1562
1564
|
class SearchPaginator(Paginator):
|
|
1563
1565
|
"""
|
|
1564
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search)
|
|
1566
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search)
|
|
1565
1567
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
|
|
1566
1568
|
"""
|
|
1567
1569
|
|
|
@@ -1569,6 +1571,6 @@ class SearchPaginator(Paginator):
|
|
|
1569
1571
|
self, **kwargs: Unpack[SearchRequestSearchPaginateTypeDef]
|
|
1570
1572
|
) -> _PageIterator[SearchResponseTypeDef]:
|
|
1571
1573
|
"""
|
|
1572
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Paginator.Search.paginate)
|
|
1574
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/Search.html#SageMaker.Paginator.Search.paginate)
|
|
1573
1575
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#searchpaginator)
|
|
1574
1576
|
"""
|