mypy-boto3-sagemaker 1.40.2__py3-none-any.whl → 1.40.3__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 -0
- mypy_boto3_sagemaker/__init__.pyi +4 -0
- mypy_boto3_sagemaker/__main__.py +3 -3
- mypy_boto3_sagemaker/client.py +50 -0
- mypy_boto3_sagemaker/client.pyi +50 -0
- mypy_boto3_sagemaker/literals.py +20 -1
- mypy_boto3_sagemaker/literals.pyi +20 -1
- mypy_boto3_sagemaker/paginator.py +26 -0
- mypy_boto3_sagemaker/paginator.pyi +23 -0
- mypy_boto3_sagemaker/type_defs.py +192 -0
- mypy_boto3_sagemaker/type_defs.pyi +172 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/METADATA +8 -4
- mypy_boto3_sagemaker-1.40.3.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.40.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.40.2.dist-info → mypy_boto3_sagemaker-1.40.3.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__init__.py
CHANGED
|
@@ -28,6 +28,7 @@ Usage::
|
|
|
28
28
|
ListAssociationsPaginator,
|
|
29
29
|
ListAutoMLJobsPaginator,
|
|
30
30
|
ListCandidatesForAutoMLJobPaginator,
|
|
31
|
+
ListClusterEventsPaginator,
|
|
31
32
|
ListClusterNodesPaginator,
|
|
32
33
|
ListClusterSchedulerConfigsPaginator,
|
|
33
34
|
ListClustersPaginator,
|
|
@@ -134,6 +135,7 @@ Usage::
|
|
|
134
135
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
136
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
137
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
138
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
139
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
140
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
141
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -219,6 +221,7 @@ from .paginator import (
|
|
|
219
221
|
ListAssociationsPaginator,
|
|
220
222
|
ListAutoMLJobsPaginator,
|
|
221
223
|
ListCandidatesForAutoMLJobPaginator,
|
|
224
|
+
ListClusterEventsPaginator,
|
|
222
225
|
ListClusterNodesPaginator,
|
|
223
226
|
ListClusterSchedulerConfigsPaginator,
|
|
224
227
|
ListClustersPaginator,
|
|
@@ -328,6 +331,7 @@ __all__ = (
|
|
|
328
331
|
"ListAssociationsPaginator",
|
|
329
332
|
"ListAutoMLJobsPaginator",
|
|
330
333
|
"ListCandidatesForAutoMLJobPaginator",
|
|
334
|
+
"ListClusterEventsPaginator",
|
|
331
335
|
"ListClusterNodesPaginator",
|
|
332
336
|
"ListClusterSchedulerConfigsPaginator",
|
|
333
337
|
"ListClustersPaginator",
|
|
@@ -28,6 +28,7 @@ Usage::
|
|
|
28
28
|
ListAssociationsPaginator,
|
|
29
29
|
ListAutoMLJobsPaginator,
|
|
30
30
|
ListCandidatesForAutoMLJobPaginator,
|
|
31
|
+
ListClusterEventsPaginator,
|
|
31
32
|
ListClusterNodesPaginator,
|
|
32
33
|
ListClusterSchedulerConfigsPaginator,
|
|
33
34
|
ListClustersPaginator,
|
|
@@ -134,6 +135,7 @@ Usage::
|
|
|
134
135
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
135
136
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
136
137
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
138
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
137
139
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
138
140
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
139
141
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -219,6 +221,7 @@ from .paginator import (
|
|
|
219
221
|
ListAssociationsPaginator,
|
|
220
222
|
ListAutoMLJobsPaginator,
|
|
221
223
|
ListCandidatesForAutoMLJobPaginator,
|
|
224
|
+
ListClusterEventsPaginator,
|
|
222
225
|
ListClusterNodesPaginator,
|
|
223
226
|
ListClusterSchedulerConfigsPaginator,
|
|
224
227
|
ListClustersPaginator,
|
|
@@ -327,6 +330,7 @@ __all__ = (
|
|
|
327
330
|
"ListAssociationsPaginator",
|
|
328
331
|
"ListAutoMLJobsPaginator",
|
|
329
332
|
"ListCandidatesForAutoMLJobPaginator",
|
|
333
|
+
"ListClusterEventsPaginator",
|
|
330
334
|
"ListClusterNodesPaginator",
|
|
331
335
|
"ListClusterSchedulerConfigsPaginator",
|
|
332
336
|
"ListClustersPaginator",
|
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.40.3\n"
|
|
16
|
+
"Version: 1.40.3\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -36,6 +36,7 @@ from .paginator import (
|
|
|
36
36
|
ListAssociationsPaginator,
|
|
37
37
|
ListAutoMLJobsPaginator,
|
|
38
38
|
ListCandidatesForAutoMLJobPaginator,
|
|
39
|
+
ListClusterEventsPaginator,
|
|
39
40
|
ListClusterNodesPaginator,
|
|
40
41
|
ListClusterSchedulerConfigsPaginator,
|
|
41
42
|
ListClustersPaginator,
|
|
@@ -116,6 +117,8 @@ from .type_defs import (
|
|
|
116
117
|
AssociateTrialComponentResponseTypeDef,
|
|
117
118
|
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
119
|
AttachClusterNodeVolumeResponseTypeDef,
|
|
120
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
121
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
119
122
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
120
123
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
121
124
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -332,6 +335,8 @@ from .type_defs import (
|
|
|
332
335
|
DescribeAutoMLJobResponseTypeDef,
|
|
333
336
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
334
337
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
338
|
+
DescribeClusterEventRequestTypeDef,
|
|
339
|
+
DescribeClusterEventResponseTypeDef,
|
|
335
340
|
DescribeClusterNodeRequestTypeDef,
|
|
336
341
|
DescribeClusterNodeResponseTypeDef,
|
|
337
342
|
DescribeClusterRequestTypeDef,
|
|
@@ -488,6 +493,8 @@ from .type_defs import (
|
|
|
488
493
|
ListAutoMLJobsResponseTypeDef,
|
|
489
494
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
490
495
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
496
|
+
ListClusterEventsRequestTypeDef,
|
|
497
|
+
ListClusterEventsResponseTypeDef,
|
|
491
498
|
ListClusterNodesRequestTypeDef,
|
|
492
499
|
ListClusterNodesResponseTypeDef,
|
|
493
500
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -878,6 +885,17 @@ class SageMakerClient(BaseClient):
|
|
|
878
885
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
879
886
|
"""
|
|
880
887
|
|
|
888
|
+
def batch_add_cluster_nodes(
|
|
889
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
890
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
891
|
+
"""
|
|
892
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
893
|
+
more instance groups.
|
|
894
|
+
|
|
895
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
896
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
897
|
+
"""
|
|
898
|
+
|
|
881
899
|
def batch_delete_cluster_nodes(
|
|
882
900
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
883
901
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2204,6 +2222,17 @@ class SageMakerClient(BaseClient):
|
|
|
2204
2222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2205
2223
|
"""
|
|
2206
2224
|
|
|
2225
|
+
def describe_cluster_event(
|
|
2226
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2227
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2228
|
+
"""
|
|
2229
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2230
|
+
cluster.
|
|
2231
|
+
|
|
2232
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2233
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2234
|
+
"""
|
|
2235
|
+
|
|
2207
2236
|
def describe_cluster_node(
|
|
2208
2237
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2209
2238
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2997,6 +3026,16 @@ class SageMakerClient(BaseClient):
|
|
|
2997
3026
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2998
3027
|
"""
|
|
2999
3028
|
|
|
3029
|
+
def list_cluster_events(
|
|
3030
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3031
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3032
|
+
"""
|
|
3033
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3034
|
+
|
|
3035
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3036
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3037
|
+
"""
|
|
3038
|
+
|
|
3000
3039
|
def list_cluster_nodes(
|
|
3001
3040
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
3002
3041
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -4611,6 +4650,17 @@ class SageMakerClient(BaseClient):
|
|
|
4611
4650
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4612
4651
|
"""
|
|
4613
4652
|
|
|
4653
|
+
@overload # type: ignore[override]
|
|
4654
|
+
def get_paginator( # type: ignore[override]
|
|
4655
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4656
|
+
) -> ListClusterEventsPaginator:
|
|
4657
|
+
"""
|
|
4658
|
+
Create a paginator for an operation.
|
|
4659
|
+
|
|
4660
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4661
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4662
|
+
"""
|
|
4663
|
+
|
|
4614
4664
|
@overload # type: ignore[override]
|
|
4615
4665
|
def get_paginator( # type: ignore[override]
|
|
4616
4666
|
self, operation_name: Literal["list_cluster_nodes"]
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -36,6 +36,7 @@ from .paginator import (
|
|
|
36
36
|
ListAssociationsPaginator,
|
|
37
37
|
ListAutoMLJobsPaginator,
|
|
38
38
|
ListCandidatesForAutoMLJobPaginator,
|
|
39
|
+
ListClusterEventsPaginator,
|
|
39
40
|
ListClusterNodesPaginator,
|
|
40
41
|
ListClusterSchedulerConfigsPaginator,
|
|
41
42
|
ListClustersPaginator,
|
|
@@ -116,6 +117,8 @@ from .type_defs import (
|
|
|
116
117
|
AssociateTrialComponentResponseTypeDef,
|
|
117
118
|
AttachClusterNodeVolumeRequestTypeDef,
|
|
118
119
|
AttachClusterNodeVolumeResponseTypeDef,
|
|
120
|
+
BatchAddClusterNodesRequestTypeDef,
|
|
121
|
+
BatchAddClusterNodesResponseTypeDef,
|
|
119
122
|
BatchDeleteClusterNodesRequestTypeDef,
|
|
120
123
|
BatchDeleteClusterNodesResponseTypeDef,
|
|
121
124
|
BatchDescribeModelPackageInputTypeDef,
|
|
@@ -332,6 +335,8 @@ from .type_defs import (
|
|
|
332
335
|
DescribeAutoMLJobResponseTypeDef,
|
|
333
336
|
DescribeAutoMLJobV2RequestTypeDef,
|
|
334
337
|
DescribeAutoMLJobV2ResponseTypeDef,
|
|
338
|
+
DescribeClusterEventRequestTypeDef,
|
|
339
|
+
DescribeClusterEventResponseTypeDef,
|
|
335
340
|
DescribeClusterNodeRequestTypeDef,
|
|
336
341
|
DescribeClusterNodeResponseTypeDef,
|
|
337
342
|
DescribeClusterRequestTypeDef,
|
|
@@ -488,6 +493,8 @@ from .type_defs import (
|
|
|
488
493
|
ListAutoMLJobsResponseTypeDef,
|
|
489
494
|
ListCandidatesForAutoMLJobRequestTypeDef,
|
|
490
495
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
496
|
+
ListClusterEventsRequestTypeDef,
|
|
497
|
+
ListClusterEventsResponseTypeDef,
|
|
491
498
|
ListClusterNodesRequestTypeDef,
|
|
492
499
|
ListClusterNodesResponseTypeDef,
|
|
493
500
|
ListClusterSchedulerConfigsRequestTypeDef,
|
|
@@ -875,6 +882,17 @@ class SageMakerClient(BaseClient):
|
|
|
875
882
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#attach_cluster_node_volume)
|
|
876
883
|
"""
|
|
877
884
|
|
|
885
|
+
def batch_add_cluster_nodes(
|
|
886
|
+
self, **kwargs: Unpack[BatchAddClusterNodesRequestTypeDef]
|
|
887
|
+
) -> BatchAddClusterNodesResponseTypeDef:
|
|
888
|
+
"""
|
|
889
|
+
Adds nodes to a HyperPod cluster by incrementing the target count for one or
|
|
890
|
+
more instance groups.
|
|
891
|
+
|
|
892
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/batch_add_cluster_nodes.html)
|
|
893
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#batch_add_cluster_nodes)
|
|
894
|
+
"""
|
|
895
|
+
|
|
878
896
|
def batch_delete_cluster_nodes(
|
|
879
897
|
self, **kwargs: Unpack[BatchDeleteClusterNodesRequestTypeDef]
|
|
880
898
|
) -> BatchDeleteClusterNodesResponseTypeDef:
|
|
@@ -2201,6 +2219,17 @@ class SageMakerClient(BaseClient):
|
|
|
2201
2219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster)
|
|
2202
2220
|
"""
|
|
2203
2221
|
|
|
2222
|
+
def describe_cluster_event(
|
|
2223
|
+
self, **kwargs: Unpack[DescribeClusterEventRequestTypeDef]
|
|
2224
|
+
) -> DescribeClusterEventResponseTypeDef:
|
|
2225
|
+
"""
|
|
2226
|
+
Retrieves detailed information about a specific event for a given HyperPod
|
|
2227
|
+
cluster.
|
|
2228
|
+
|
|
2229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/describe_cluster_event.html)
|
|
2230
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#describe_cluster_event)
|
|
2231
|
+
"""
|
|
2232
|
+
|
|
2204
2233
|
def describe_cluster_node(
|
|
2205
2234
|
self, **kwargs: Unpack[DescribeClusterNodeRequestTypeDef]
|
|
2206
2235
|
) -> DescribeClusterNodeResponseTypeDef:
|
|
@@ -2994,6 +3023,16 @@ class SageMakerClient(BaseClient):
|
|
|
2994
3023
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_candidates_for_auto_ml_job)
|
|
2995
3024
|
"""
|
|
2996
3025
|
|
|
3026
|
+
def list_cluster_events(
|
|
3027
|
+
self, **kwargs: Unpack[ListClusterEventsRequestTypeDef]
|
|
3028
|
+
) -> ListClusterEventsResponseTypeDef:
|
|
3029
|
+
"""
|
|
3030
|
+
Retrieves a list of event summaries for a specified HyperPod cluster.
|
|
3031
|
+
|
|
3032
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/list_cluster_events.html)
|
|
3033
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#list_cluster_events)
|
|
3034
|
+
"""
|
|
3035
|
+
|
|
2997
3036
|
def list_cluster_nodes(
|
|
2998
3037
|
self, **kwargs: Unpack[ListClusterNodesRequestTypeDef]
|
|
2999
3038
|
) -> ListClusterNodesResponseTypeDef:
|
|
@@ -4608,6 +4647,17 @@ class SageMakerClient(BaseClient):
|
|
|
4608
4647
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4609
4648
|
"""
|
|
4610
4649
|
|
|
4650
|
+
@overload # type: ignore[override]
|
|
4651
|
+
def get_paginator( # type: ignore[override]
|
|
4652
|
+
self, operation_name: Literal["list_cluster_events"]
|
|
4653
|
+
) -> ListClusterEventsPaginator:
|
|
4654
|
+
"""
|
|
4655
|
+
Create a paginator for an operation.
|
|
4656
|
+
|
|
4657
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/client/get_paginator.html)
|
|
4658
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#get_paginator)
|
|
4659
|
+
"""
|
|
4660
|
+
|
|
4611
4661
|
@overload # type: ignore[override]
|
|
4612
4662
|
def get_paginator( # type: ignore[override]
|
|
4613
4663
|
self, operation_name: Literal["list_cluster_nodes"]
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -59,6 +59,7 @@ __all__ = (
|
|
|
59
59
|
"AutoMountHomeEFSType",
|
|
60
60
|
"AutotuneModeType",
|
|
61
61
|
"AwsManagedHumanLoopRequestSourceType",
|
|
62
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
62
63
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
63
64
|
"BatchStrategyType",
|
|
64
65
|
"BooleanOperatorType",
|
|
@@ -66,14 +67,17 @@ __all__ = (
|
|
|
66
67
|
"CandidateStatusType",
|
|
67
68
|
"CandidateStepTypeType",
|
|
68
69
|
"CapacityReservationPreferenceType",
|
|
70
|
+
"CapacityReservationTypeType",
|
|
69
71
|
"CapacitySizeTypeType",
|
|
70
72
|
"CaptureModeType",
|
|
71
73
|
"CaptureStatusType",
|
|
72
74
|
"ClarifyFeatureTypeType",
|
|
73
75
|
"ClarifyTextGranularityType",
|
|
74
76
|
"ClarifyTextLanguageType",
|
|
77
|
+
"ClusterEventResourceTypeType",
|
|
75
78
|
"ClusterInstanceStatusType",
|
|
76
79
|
"ClusterInstanceTypeType",
|
|
80
|
+
"ClusterNodeProvisioningModeType",
|
|
77
81
|
"ClusterNodeRecoveryType",
|
|
78
82
|
"ClusterSortByType",
|
|
79
83
|
"ClusterStatusType",
|
|
@@ -107,6 +111,7 @@ __all__ = (
|
|
|
107
111
|
"EndpointInServiceWaiterName",
|
|
108
112
|
"EndpointSortKeyType",
|
|
109
113
|
"EndpointStatusType",
|
|
114
|
+
"EventSortByType",
|
|
110
115
|
"ExecutionRoleIdentityConfigType",
|
|
111
116
|
"ExecutionStatusType",
|
|
112
117
|
"FailureHandlingPolicyType",
|
|
@@ -173,6 +178,7 @@ __all__ = (
|
|
|
173
178
|
"ListAssociationsPaginatorName",
|
|
174
179
|
"ListAutoMLJobsPaginatorName",
|
|
175
180
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
181
|
+
"ListClusterEventsPaginatorName",
|
|
176
182
|
"ListClusterNodesPaginatorName",
|
|
177
183
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
178
184
|
"ListClustersPaginatorName",
|
|
@@ -731,6 +737,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
731
737
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
732
738
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
733
739
|
]
|
|
740
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
734
741
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
735
742
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
736
743
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -740,6 +747,7 @@ CandidateStepTypeType = Literal[
|
|
|
740
747
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
741
748
|
]
|
|
742
749
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
750
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
743
751
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
744
752
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
745
753
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -807,8 +815,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
807
815
|
"yo",
|
|
808
816
|
"zh",
|
|
809
817
|
]
|
|
818
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
810
819
|
ClusterInstanceStatusType = Literal[
|
|
811
|
-
"DeepHealthCheckInProgress",
|
|
820
|
+
"DeepHealthCheckInProgress",
|
|
821
|
+
"Failure",
|
|
822
|
+
"NotFound",
|
|
823
|
+
"Pending",
|
|
824
|
+
"Running",
|
|
825
|
+
"ShuttingDown",
|
|
826
|
+
"SystemUpdating",
|
|
812
827
|
]
|
|
813
828
|
ClusterInstanceTypeType = Literal[
|
|
814
829
|
"ml.c5.12xlarge",
|
|
@@ -924,6 +939,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
924
939
|
"ml.trn1n.32xlarge",
|
|
925
940
|
"ml.trn2.48xlarge",
|
|
926
941
|
]
|
|
942
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
927
943
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
928
944
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
929
945
|
ClusterStatusType = Literal[
|
|
@@ -977,6 +993,7 @@ EndpointStatusType = Literal[
|
|
|
977
993
|
"UpdateRollbackFailed",
|
|
978
994
|
"Updating",
|
|
979
995
|
]
|
|
996
|
+
EventSortByType = Literal["EventTime"]
|
|
980
997
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
981
998
|
ExecutionStatusType = Literal[
|
|
982
999
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1243,6 +1260,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1243
1260
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1244
1261
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1245
1262
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1263
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1246
1264
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1247
1265
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1248
1266
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -2822,6 +2840,7 @@ PaginatorName = Literal[
|
|
|
2822
2840
|
"list_associations",
|
|
2823
2841
|
"list_auto_ml_jobs",
|
|
2824
2842
|
"list_candidates_for_auto_ml_job",
|
|
2843
|
+
"list_cluster_events",
|
|
2825
2844
|
"list_cluster_nodes",
|
|
2826
2845
|
"list_cluster_scheduler_configs",
|
|
2827
2846
|
"list_clusters",
|
|
@@ -58,6 +58,7 @@ __all__ = (
|
|
|
58
58
|
"AutoMountHomeEFSType",
|
|
59
59
|
"AutotuneModeType",
|
|
60
60
|
"AwsManagedHumanLoopRequestSourceType",
|
|
61
|
+
"BatchAddClusterNodesErrorCodeType",
|
|
61
62
|
"BatchDeleteClusterNodesErrorCodeType",
|
|
62
63
|
"BatchStrategyType",
|
|
63
64
|
"BooleanOperatorType",
|
|
@@ -65,14 +66,17 @@ __all__ = (
|
|
|
65
66
|
"CandidateStatusType",
|
|
66
67
|
"CandidateStepTypeType",
|
|
67
68
|
"CapacityReservationPreferenceType",
|
|
69
|
+
"CapacityReservationTypeType",
|
|
68
70
|
"CapacitySizeTypeType",
|
|
69
71
|
"CaptureModeType",
|
|
70
72
|
"CaptureStatusType",
|
|
71
73
|
"ClarifyFeatureTypeType",
|
|
72
74
|
"ClarifyTextGranularityType",
|
|
73
75
|
"ClarifyTextLanguageType",
|
|
76
|
+
"ClusterEventResourceTypeType",
|
|
74
77
|
"ClusterInstanceStatusType",
|
|
75
78
|
"ClusterInstanceTypeType",
|
|
79
|
+
"ClusterNodeProvisioningModeType",
|
|
76
80
|
"ClusterNodeRecoveryType",
|
|
77
81
|
"ClusterSortByType",
|
|
78
82
|
"ClusterStatusType",
|
|
@@ -106,6 +110,7 @@ __all__ = (
|
|
|
106
110
|
"EndpointInServiceWaiterName",
|
|
107
111
|
"EndpointSortKeyType",
|
|
108
112
|
"EndpointStatusType",
|
|
113
|
+
"EventSortByType",
|
|
109
114
|
"ExecutionRoleIdentityConfigType",
|
|
110
115
|
"ExecutionStatusType",
|
|
111
116
|
"FailureHandlingPolicyType",
|
|
@@ -172,6 +177,7 @@ __all__ = (
|
|
|
172
177
|
"ListAssociationsPaginatorName",
|
|
173
178
|
"ListAutoMLJobsPaginatorName",
|
|
174
179
|
"ListCandidatesForAutoMLJobPaginatorName",
|
|
180
|
+
"ListClusterEventsPaginatorName",
|
|
175
181
|
"ListClusterNodesPaginatorName",
|
|
176
182
|
"ListClusterSchedulerConfigsPaginatorName",
|
|
177
183
|
"ListClustersPaginatorName",
|
|
@@ -729,6 +735,7 @@ AutotuneModeType = Literal["Enabled"]
|
|
|
729
735
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
730
736
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
731
737
|
]
|
|
738
|
+
BatchAddClusterNodesErrorCodeType = Literal["InstanceGroupNotFound", "InvalidInstanceGroupStatus"]
|
|
732
739
|
BatchDeleteClusterNodesErrorCodeType = Literal["InvalidNodeStatus", "NodeIdInUse", "NodeIdNotFound"]
|
|
733
740
|
BatchStrategyType = Literal["MultiRecord", "SingleRecord"]
|
|
734
741
|
BooleanOperatorType = Literal["And", "Or"]
|
|
@@ -738,6 +745,7 @@ CandidateStepTypeType = Literal[
|
|
|
738
745
|
"AWS::SageMaker::ProcessingJob", "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob"
|
|
739
746
|
]
|
|
740
747
|
CapacityReservationPreferenceType = Literal["capacity-reservations-only"]
|
|
748
|
+
CapacityReservationTypeType = Literal["CRG", "ODCR"]
|
|
741
749
|
CapacitySizeTypeType = Literal["CAPACITY_PERCENT", "INSTANCE_COUNT"]
|
|
742
750
|
CaptureModeType = Literal["Input", "InputAndOutput", "Output"]
|
|
743
751
|
CaptureStatusType = Literal["Started", "Stopped"]
|
|
@@ -805,8 +813,15 @@ ClarifyTextLanguageType = Literal[
|
|
|
805
813
|
"yo",
|
|
806
814
|
"zh",
|
|
807
815
|
]
|
|
816
|
+
ClusterEventResourceTypeType = Literal["Cluster", "Instance", "InstanceGroup"]
|
|
808
817
|
ClusterInstanceStatusType = Literal[
|
|
809
|
-
"DeepHealthCheckInProgress",
|
|
818
|
+
"DeepHealthCheckInProgress",
|
|
819
|
+
"Failure",
|
|
820
|
+
"NotFound",
|
|
821
|
+
"Pending",
|
|
822
|
+
"Running",
|
|
823
|
+
"ShuttingDown",
|
|
824
|
+
"SystemUpdating",
|
|
810
825
|
]
|
|
811
826
|
ClusterInstanceTypeType = Literal[
|
|
812
827
|
"ml.c5.12xlarge",
|
|
@@ -922,6 +937,7 @@ ClusterInstanceTypeType = Literal[
|
|
|
922
937
|
"ml.trn1n.32xlarge",
|
|
923
938
|
"ml.trn2.48xlarge",
|
|
924
939
|
]
|
|
940
|
+
ClusterNodeProvisioningModeType = Literal["Continuous"]
|
|
925
941
|
ClusterNodeRecoveryType = Literal["Automatic", "None"]
|
|
926
942
|
ClusterSortByType = Literal["CREATION_TIME", "NAME"]
|
|
927
943
|
ClusterStatusType = Literal[
|
|
@@ -975,6 +991,7 @@ EndpointStatusType = Literal[
|
|
|
975
991
|
"UpdateRollbackFailed",
|
|
976
992
|
"Updating",
|
|
977
993
|
]
|
|
994
|
+
EventSortByType = Literal["EventTime"]
|
|
978
995
|
ExecutionRoleIdentityConfigType = Literal["DISABLED", "USER_PROFILE_NAME"]
|
|
979
996
|
ExecutionStatusType = Literal[
|
|
980
997
|
"Completed", "CompletedWithViolations", "Failed", "InProgress", "Pending", "Stopped", "Stopping"
|
|
@@ -1241,6 +1258,7 @@ ListArtifactsPaginatorName = Literal["list_artifacts"]
|
|
|
1241
1258
|
ListAssociationsPaginatorName = Literal["list_associations"]
|
|
1242
1259
|
ListAutoMLJobsPaginatorName = Literal["list_auto_ml_jobs"]
|
|
1243
1260
|
ListCandidatesForAutoMLJobPaginatorName = Literal["list_candidates_for_auto_ml_job"]
|
|
1261
|
+
ListClusterEventsPaginatorName = Literal["list_cluster_events"]
|
|
1244
1262
|
ListClusterNodesPaginatorName = Literal["list_cluster_nodes"]
|
|
1245
1263
|
ListClusterSchedulerConfigsPaginatorName = Literal["list_cluster_scheduler_configs"]
|
|
1246
1264
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
@@ -2820,6 +2838,7 @@ PaginatorName = Literal[
|
|
|
2820
2838
|
"list_associations",
|
|
2821
2839
|
"list_auto_ml_jobs",
|
|
2822
2840
|
"list_candidates_for_auto_ml_job",
|
|
2841
|
+
"list_cluster_events",
|
|
2823
2842
|
"list_cluster_nodes",
|
|
2824
2843
|
"list_cluster_scheduler_configs",
|
|
2825
2844
|
"list_clusters",
|
|
@@ -22,6 +22,7 @@ Usage::
|
|
|
22
22
|
ListAssociationsPaginator,
|
|
23
23
|
ListAutoMLJobsPaginator,
|
|
24
24
|
ListCandidatesForAutoMLJobPaginator,
|
|
25
|
+
ListClusterEventsPaginator,
|
|
25
26
|
ListClusterNodesPaginator,
|
|
26
27
|
ListClusterSchedulerConfigsPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
@@ -107,6 +108,7 @@ Usage::
|
|
|
107
108
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
108
109
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
109
110
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
111
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
110
112
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
111
113
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
112
114
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -208,6 +210,8 @@ from .type_defs import (
|
|
|
208
210
|
ListAutoMLJobsResponseTypeDef,
|
|
209
211
|
ListCandidatesForAutoMLJobRequestPaginateTypeDef,
|
|
210
212
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
213
|
+
ListClusterEventsRequestPaginateTypeDef,
|
|
214
|
+
ListClusterEventsResponseTypeDef,
|
|
211
215
|
ListClusterNodesRequestPaginateTypeDef,
|
|
212
216
|
ListClusterNodesResponseTypeDef,
|
|
213
217
|
ListClusterSchedulerConfigsRequestPaginateTypeDef,
|
|
@@ -367,6 +371,7 @@ __all__ = (
|
|
|
367
371
|
"ListAssociationsPaginator",
|
|
368
372
|
"ListAutoMLJobsPaginator",
|
|
369
373
|
"ListCandidatesForAutoMLJobPaginator",
|
|
374
|
+
"ListClusterEventsPaginator",
|
|
370
375
|
"ListClusterNodesPaginator",
|
|
371
376
|
"ListClusterSchedulerConfigsPaginator",
|
|
372
377
|
"ListClustersPaginator",
|
|
@@ -652,6 +657,27 @@ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBa
|
|
|
652
657
|
"""
|
|
653
658
|
|
|
654
659
|
|
|
660
|
+
if TYPE_CHECKING:
|
|
661
|
+
_ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
|
|
662
|
+
else:
|
|
663
|
+
_ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
|
|
667
|
+
"""
|
|
668
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
|
|
669
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
670
|
+
"""
|
|
671
|
+
|
|
672
|
+
def paginate( # type: ignore[override]
|
|
673
|
+
self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
|
|
674
|
+
) -> PageIterator[ListClusterEventsResponseTypeDef]:
|
|
675
|
+
"""
|
|
676
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
|
|
677
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
678
|
+
"""
|
|
679
|
+
|
|
680
|
+
|
|
655
681
|
if TYPE_CHECKING:
|
|
656
682
|
_ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
|
|
657
683
|
else:
|
|
@@ -22,6 +22,7 @@ Usage::
|
|
|
22
22
|
ListAssociationsPaginator,
|
|
23
23
|
ListAutoMLJobsPaginator,
|
|
24
24
|
ListCandidatesForAutoMLJobPaginator,
|
|
25
|
+
ListClusterEventsPaginator,
|
|
25
26
|
ListClusterNodesPaginator,
|
|
26
27
|
ListClusterSchedulerConfigsPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
@@ -107,6 +108,7 @@ Usage::
|
|
|
107
108
|
list_associations_paginator: ListAssociationsPaginator = client.get_paginator("list_associations")
|
|
108
109
|
list_auto_ml_jobs_paginator: ListAutoMLJobsPaginator = client.get_paginator("list_auto_ml_jobs")
|
|
109
110
|
list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator = client.get_paginator("list_candidates_for_auto_ml_job")
|
|
111
|
+
list_cluster_events_paginator: ListClusterEventsPaginator = client.get_paginator("list_cluster_events")
|
|
110
112
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
111
113
|
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = client.get_paginator("list_cluster_scheduler_configs")
|
|
112
114
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
@@ -208,6 +210,8 @@ from .type_defs import (
|
|
|
208
210
|
ListAutoMLJobsResponseTypeDef,
|
|
209
211
|
ListCandidatesForAutoMLJobRequestPaginateTypeDef,
|
|
210
212
|
ListCandidatesForAutoMLJobResponseTypeDef,
|
|
213
|
+
ListClusterEventsRequestPaginateTypeDef,
|
|
214
|
+
ListClusterEventsResponseTypeDef,
|
|
211
215
|
ListClusterNodesRequestPaginateTypeDef,
|
|
212
216
|
ListClusterNodesResponseTypeDef,
|
|
213
217
|
ListClusterSchedulerConfigsRequestPaginateTypeDef,
|
|
@@ -366,6 +370,7 @@ __all__ = (
|
|
|
366
370
|
"ListAssociationsPaginator",
|
|
367
371
|
"ListAutoMLJobsPaginator",
|
|
368
372
|
"ListCandidatesForAutoMLJobPaginator",
|
|
373
|
+
"ListClusterEventsPaginator",
|
|
369
374
|
"ListClusterNodesPaginator",
|
|
370
375
|
"ListClusterSchedulerConfigsPaginator",
|
|
371
376
|
"ListClustersPaginator",
|
|
@@ -620,6 +625,24 @@ class ListCandidatesForAutoMLJobPaginator(_ListCandidatesForAutoMLJobPaginatorBa
|
|
|
620
625
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listcandidatesforautomljobpaginator)
|
|
621
626
|
"""
|
|
622
627
|
|
|
628
|
+
if TYPE_CHECKING:
|
|
629
|
+
_ListClusterEventsPaginatorBase = Paginator[ListClusterEventsResponseTypeDef]
|
|
630
|
+
else:
|
|
631
|
+
_ListClusterEventsPaginatorBase = Paginator # type: ignore[assignment]
|
|
632
|
+
|
|
633
|
+
class ListClusterEventsPaginator(_ListClusterEventsPaginatorBase):
|
|
634
|
+
"""
|
|
635
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents)
|
|
636
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
637
|
+
"""
|
|
638
|
+
def paginate( # type: ignore[override]
|
|
639
|
+
self, **kwargs: Unpack[ListClusterEventsRequestPaginateTypeDef]
|
|
640
|
+
) -> PageIterator[ListClusterEventsResponseTypeDef]:
|
|
641
|
+
"""
|
|
642
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/paginator/ListClusterEvents.html#SageMaker.Paginator.ListClusterEvents.paginate)
|
|
643
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/paginators/#listclustereventspaginator)
|
|
644
|
+
"""
|
|
645
|
+
|
|
623
646
|
if TYPE_CHECKING:
|
|
624
647
|
_ListClusterNodesPaginatorBase = Paginator[ListClusterNodesResponseTypeDef]
|
|
625
648
|
else:
|