mypy-boto3-sagemaker 1.21.36__py3-none-any.whl → 1.41.1__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.
- mypy_boto3_sagemaker/__init__.py +107 -2
- mypy_boto3_sagemaker/__init__.pyi +107 -2
- mypy_boto3_sagemaker/__main__.py +14 -9
- mypy_boto3_sagemaker/client.py +3189 -2116
- mypy_boto3_sagemaker/client.pyi +3495 -2098
- mypy_boto3_sagemaker/literals.py +1646 -51
- mypy_boto3_sagemaker/literals.pyi +1646 -51
- mypy_boto3_sagemaker/paginator.py +1470 -901
- mypy_boto3_sagemaker/paginator.pyi +1338 -956
- mypy_boto3_sagemaker/type_defs.py +12046 -11554
- mypy_boto3_sagemaker/type_defs.pyi +11823 -12495
- mypy_boto3_sagemaker/version.py +4 -1
- mypy_boto3_sagemaker/waiter.py +106 -57
- mypy_boto3_sagemaker/waiter.pyi +105 -70
- mypy_boto3_sagemaker-1.41.1.dist-info/METADATA +796 -0
- mypy_boto3_sagemaker-1.41.1.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.21.36.dist-info → mypy_boto3_sagemaker-1.41.1.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.41.1.dist-info/licenses/LICENSE +21 -0
- mypy_boto3_sagemaker-1.21.36.dist-info/METADATA +0 -1733
- mypy_boto3_sagemaker-1.21.36.dist-info/RECORD +0 -19
- {mypy_boto3_sagemaker-1.21.36.dist-info → mypy_boto3_sagemaker-1.41.1.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/version.py
CHANGED
mypy_boto3_sagemaker/waiter.py
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for sagemaker service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -43,9 +45,34 @@ Usage::
|
|
|
43
45
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
44
46
|
```
|
|
45
47
|
"""
|
|
46
|
-
from botocore.waiter import Waiter as Boto3Waiter
|
|
47
48
|
|
|
48
|
-
from
|
|
49
|
+
from __future__ import annotations
|
|
50
|
+
|
|
51
|
+
import sys
|
|
52
|
+
|
|
53
|
+
from botocore.waiter import Waiter
|
|
54
|
+
|
|
55
|
+
from .type_defs import (
|
|
56
|
+
DescribeEndpointInputWaitExtraTypeDef,
|
|
57
|
+
DescribeEndpointInputWaitTypeDef,
|
|
58
|
+
DescribeImageRequestWaitExtraExtraTypeDef,
|
|
59
|
+
DescribeImageRequestWaitExtraTypeDef,
|
|
60
|
+
DescribeImageRequestWaitTypeDef,
|
|
61
|
+
DescribeImageVersionRequestWaitExtraTypeDef,
|
|
62
|
+
DescribeImageVersionRequestWaitTypeDef,
|
|
63
|
+
DescribeNotebookInstanceInputWaitExtraExtraTypeDef,
|
|
64
|
+
DescribeNotebookInstanceInputWaitExtraTypeDef,
|
|
65
|
+
DescribeNotebookInstanceInputWaitTypeDef,
|
|
66
|
+
DescribeProcessingJobRequestWaitTypeDef,
|
|
67
|
+
DescribeTrainingJobRequestWaitTypeDef,
|
|
68
|
+
DescribeTransformJobRequestWaitTypeDef,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
if sys.version_info >= (3, 12):
|
|
72
|
+
from typing import Unpack
|
|
73
|
+
else:
|
|
74
|
+
from typing_extensions import Unpack
|
|
75
|
+
|
|
49
76
|
|
|
50
77
|
__all__ = (
|
|
51
78
|
"EndpointDeletedWaiter",
|
|
@@ -64,174 +91,196 @@ __all__ = (
|
|
|
64
91
|
)
|
|
65
92
|
|
|
66
93
|
|
|
67
|
-
class EndpointDeletedWaiter(
|
|
94
|
+
class EndpointDeletedWaiter(Waiter):
|
|
68
95
|
"""
|
|
69
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted)
|
|
96
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted)
|
|
70
97
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
71
98
|
"""
|
|
72
99
|
|
|
73
|
-
def wait(
|
|
100
|
+
def wait( # type: ignore[override]
|
|
101
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
102
|
+
) -> None:
|
|
74
103
|
"""
|
|
75
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
76
105
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
77
106
|
"""
|
|
78
107
|
|
|
79
108
|
|
|
80
|
-
class EndpointInServiceWaiter(
|
|
109
|
+
class EndpointInServiceWaiter(Waiter):
|
|
81
110
|
"""
|
|
82
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService)
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService)
|
|
83
112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
84
113
|
"""
|
|
85
114
|
|
|
86
|
-
def wait(
|
|
115
|
+
def wait( # type: ignore[override]
|
|
116
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
|
|
117
|
+
) -> None:
|
|
87
118
|
"""
|
|
88
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService.wait)
|
|
119
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
|
|
89
120
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
90
121
|
"""
|
|
91
122
|
|
|
92
123
|
|
|
93
|
-
class ImageCreatedWaiter(
|
|
124
|
+
class ImageCreatedWaiter(Waiter):
|
|
94
125
|
"""
|
|
95
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated)
|
|
96
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
97
128
|
"""
|
|
98
129
|
|
|
99
|
-
def wait(
|
|
130
|
+
def wait( # type: ignore[override]
|
|
131
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
132
|
+
) -> None:
|
|
100
133
|
"""
|
|
101
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated.wait)
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated.wait)
|
|
102
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
103
136
|
"""
|
|
104
137
|
|
|
105
138
|
|
|
106
|
-
class ImageDeletedWaiter(
|
|
139
|
+
class ImageDeletedWaiter(Waiter):
|
|
107
140
|
"""
|
|
108
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted)
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted)
|
|
109
142
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
110
143
|
"""
|
|
111
144
|
|
|
112
|
-
def wait(
|
|
145
|
+
def wait( # type: ignore[override]
|
|
146
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
|
|
147
|
+
) -> None:
|
|
113
148
|
"""
|
|
114
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
149
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
115
150
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
116
151
|
"""
|
|
117
152
|
|
|
118
153
|
|
|
119
|
-
class ImageUpdatedWaiter(
|
|
154
|
+
class ImageUpdatedWaiter(Waiter):
|
|
120
155
|
"""
|
|
121
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated)
|
|
156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated)
|
|
122
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
123
158
|
"""
|
|
124
159
|
|
|
125
|
-
def wait(
|
|
160
|
+
def wait( # type: ignore[override]
|
|
161
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
|
|
162
|
+
) -> None:
|
|
126
163
|
"""
|
|
127
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
164
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
128
165
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
129
166
|
"""
|
|
130
167
|
|
|
131
168
|
|
|
132
|
-
class ImageVersionCreatedWaiter(
|
|
169
|
+
class ImageVersionCreatedWaiter(Waiter):
|
|
133
170
|
"""
|
|
134
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated)
|
|
171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated)
|
|
135
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
136
173
|
"""
|
|
137
174
|
|
|
138
|
-
def wait(
|
|
139
|
-
self,
|
|
175
|
+
def wait( # type: ignore[override]
|
|
176
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
140
177
|
) -> None:
|
|
141
178
|
"""
|
|
142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
143
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
144
181
|
"""
|
|
145
182
|
|
|
146
183
|
|
|
147
|
-
class ImageVersionDeletedWaiter(
|
|
184
|
+
class ImageVersionDeletedWaiter(Waiter):
|
|
148
185
|
"""
|
|
149
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
150
187
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
151
188
|
"""
|
|
152
189
|
|
|
153
|
-
def wait(
|
|
154
|
-
self,
|
|
190
|
+
def wait( # type: ignore[override]
|
|
191
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitExtraTypeDef]
|
|
155
192
|
) -> None:
|
|
156
193
|
"""
|
|
157
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
194
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
158
195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
159
196
|
"""
|
|
160
197
|
|
|
161
198
|
|
|
162
|
-
class NotebookInstanceDeletedWaiter(
|
|
199
|
+
class NotebookInstanceDeletedWaiter(Waiter):
|
|
163
200
|
"""
|
|
164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
201
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
165
202
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
166
203
|
"""
|
|
167
204
|
|
|
168
|
-
def wait(
|
|
205
|
+
def wait( # type: ignore[override]
|
|
206
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
207
|
+
) -> None:
|
|
169
208
|
"""
|
|
170
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
209
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
171
210
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
172
211
|
"""
|
|
173
212
|
|
|
174
213
|
|
|
175
|
-
class NotebookInstanceInServiceWaiter(
|
|
214
|
+
class NotebookInstanceInServiceWaiter(Waiter):
|
|
176
215
|
"""
|
|
177
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
216
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
178
217
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
179
218
|
"""
|
|
180
219
|
|
|
181
|
-
def wait(
|
|
220
|
+
def wait( # type: ignore[override]
|
|
221
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
|
|
222
|
+
) -> None:
|
|
182
223
|
"""
|
|
183
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
184
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
185
226
|
"""
|
|
186
227
|
|
|
187
228
|
|
|
188
|
-
class NotebookInstanceStoppedWaiter(
|
|
229
|
+
class NotebookInstanceStoppedWaiter(Waiter):
|
|
189
230
|
"""
|
|
190
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
191
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
192
233
|
"""
|
|
193
234
|
|
|
194
|
-
def wait(
|
|
235
|
+
def wait( # type: ignore[override]
|
|
236
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
|
|
237
|
+
) -> None:
|
|
195
238
|
"""
|
|
196
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
239
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
197
240
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
198
241
|
"""
|
|
199
242
|
|
|
200
243
|
|
|
201
|
-
class ProcessingJobCompletedOrStoppedWaiter(
|
|
244
|
+
class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
202
245
|
"""
|
|
203
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
246
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
204
247
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
205
248
|
"""
|
|
206
249
|
|
|
207
|
-
def wait(
|
|
250
|
+
def wait( # type: ignore[override]
|
|
251
|
+
self, **kwargs: Unpack[DescribeProcessingJobRequestWaitTypeDef]
|
|
252
|
+
) -> None:
|
|
208
253
|
"""
|
|
209
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
210
255
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
211
256
|
"""
|
|
212
257
|
|
|
213
258
|
|
|
214
|
-
class TrainingJobCompletedOrStoppedWaiter(
|
|
259
|
+
class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
215
260
|
"""
|
|
216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
261
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
217
262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
218
263
|
"""
|
|
219
264
|
|
|
220
|
-
def wait(
|
|
265
|
+
def wait( # type: ignore[override]
|
|
266
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestWaitTypeDef]
|
|
267
|
+
) -> None:
|
|
221
268
|
"""
|
|
222
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
223
270
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
224
271
|
"""
|
|
225
272
|
|
|
226
273
|
|
|
227
|
-
class TransformJobCompletedOrStoppedWaiter(
|
|
274
|
+
class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
228
275
|
"""
|
|
229
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
230
277
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
231
278
|
"""
|
|
232
279
|
|
|
233
|
-
def wait(
|
|
280
|
+
def wait( # type: ignore[override]
|
|
281
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestWaitTypeDef]
|
|
282
|
+
) -> None:
|
|
234
283
|
"""
|
|
235
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
284
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
236
285
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
237
286
|
"""
|
mypy_boto3_sagemaker/waiter.pyi
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for sagemaker service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -43,9 +45,33 @@ Usage::
|
|
|
43
45
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
44
46
|
```
|
|
45
47
|
"""
|
|
46
|
-
from botocore.waiter import Waiter as Boto3Waiter
|
|
47
48
|
|
|
48
|
-
from
|
|
49
|
+
from __future__ import annotations
|
|
50
|
+
|
|
51
|
+
import sys
|
|
52
|
+
|
|
53
|
+
from botocore.waiter import Waiter
|
|
54
|
+
|
|
55
|
+
from .type_defs import (
|
|
56
|
+
DescribeEndpointInputWaitExtraTypeDef,
|
|
57
|
+
DescribeEndpointInputWaitTypeDef,
|
|
58
|
+
DescribeImageRequestWaitExtraExtraTypeDef,
|
|
59
|
+
DescribeImageRequestWaitExtraTypeDef,
|
|
60
|
+
DescribeImageRequestWaitTypeDef,
|
|
61
|
+
DescribeImageVersionRequestWaitExtraTypeDef,
|
|
62
|
+
DescribeImageVersionRequestWaitTypeDef,
|
|
63
|
+
DescribeNotebookInstanceInputWaitExtraExtraTypeDef,
|
|
64
|
+
DescribeNotebookInstanceInputWaitExtraTypeDef,
|
|
65
|
+
DescribeNotebookInstanceInputWaitTypeDef,
|
|
66
|
+
DescribeProcessingJobRequestWaitTypeDef,
|
|
67
|
+
DescribeTrainingJobRequestWaitTypeDef,
|
|
68
|
+
DescribeTransformJobRequestWaitTypeDef,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
if sys.version_info >= (3, 12):
|
|
72
|
+
from typing import Unpack
|
|
73
|
+
else:
|
|
74
|
+
from typing_extensions import Unpack
|
|
49
75
|
|
|
50
76
|
__all__ = (
|
|
51
77
|
"EndpointDeletedWaiter",
|
|
@@ -63,162 +89,171 @@ __all__ = (
|
|
|
63
89
|
"TransformJobCompletedOrStoppedWaiter",
|
|
64
90
|
)
|
|
65
91
|
|
|
66
|
-
class EndpointDeletedWaiter(
|
|
92
|
+
class EndpointDeletedWaiter(Waiter):
|
|
67
93
|
"""
|
|
68
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted)
|
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted)
|
|
69
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
70
96
|
"""
|
|
71
|
-
|
|
72
|
-
|
|
97
|
+
def wait( # type: ignore[override]
|
|
98
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
99
|
+
) -> None:
|
|
73
100
|
"""
|
|
74
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
101
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
75
102
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
76
103
|
"""
|
|
77
104
|
|
|
78
|
-
class EndpointInServiceWaiter(
|
|
105
|
+
class EndpointInServiceWaiter(Waiter):
|
|
79
106
|
"""
|
|
80
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService)
|
|
107
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService)
|
|
81
108
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
82
109
|
"""
|
|
83
|
-
|
|
84
|
-
|
|
110
|
+
def wait( # type: ignore[override]
|
|
111
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
|
|
112
|
+
) -> None:
|
|
85
113
|
"""
|
|
86
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService.wait)
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
|
|
87
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
88
116
|
"""
|
|
89
117
|
|
|
90
|
-
class ImageCreatedWaiter(
|
|
118
|
+
class ImageCreatedWaiter(Waiter):
|
|
91
119
|
"""
|
|
92
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated)
|
|
120
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated)
|
|
93
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
94
122
|
"""
|
|
95
|
-
|
|
96
|
-
|
|
123
|
+
def wait( # type: ignore[override]
|
|
124
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
125
|
+
) -> None:
|
|
97
126
|
"""
|
|
98
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated.wait)
|
|
127
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated.wait)
|
|
99
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
100
129
|
"""
|
|
101
130
|
|
|
102
|
-
class ImageDeletedWaiter(
|
|
131
|
+
class ImageDeletedWaiter(Waiter):
|
|
103
132
|
"""
|
|
104
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted)
|
|
105
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
106
135
|
"""
|
|
107
|
-
|
|
108
|
-
|
|
136
|
+
def wait( # type: ignore[override]
|
|
137
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
|
|
138
|
+
) -> None:
|
|
109
139
|
"""
|
|
110
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
140
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
111
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
112
142
|
"""
|
|
113
143
|
|
|
114
|
-
class ImageUpdatedWaiter(
|
|
144
|
+
class ImageUpdatedWaiter(Waiter):
|
|
115
145
|
"""
|
|
116
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated)
|
|
146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated)
|
|
117
147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
118
148
|
"""
|
|
119
|
-
|
|
120
|
-
|
|
149
|
+
def wait( # type: ignore[override]
|
|
150
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
|
|
151
|
+
) -> None:
|
|
121
152
|
"""
|
|
122
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
153
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
123
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
124
155
|
"""
|
|
125
156
|
|
|
126
|
-
class ImageVersionCreatedWaiter(
|
|
157
|
+
class ImageVersionCreatedWaiter(Waiter):
|
|
127
158
|
"""
|
|
128
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated)
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated)
|
|
129
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
130
161
|
"""
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
self, *, ImageName: str, Version: int = ..., WaiterConfig: "WaiterConfigTypeDef" = ...
|
|
162
|
+
def wait( # type: ignore[override]
|
|
163
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
134
164
|
) -> None:
|
|
135
165
|
"""
|
|
136
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
137
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
138
168
|
"""
|
|
139
169
|
|
|
140
|
-
class ImageVersionDeletedWaiter(
|
|
170
|
+
class ImageVersionDeletedWaiter(Waiter):
|
|
141
171
|
"""
|
|
142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
143
173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
144
174
|
"""
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
self, *, ImageName: str, Version: int = ..., WaiterConfig: "WaiterConfigTypeDef" = ...
|
|
175
|
+
def wait( # type: ignore[override]
|
|
176
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitExtraTypeDef]
|
|
148
177
|
) -> None:
|
|
149
178
|
"""
|
|
150
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
151
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
152
181
|
"""
|
|
153
182
|
|
|
154
|
-
class NotebookInstanceDeletedWaiter(
|
|
183
|
+
class NotebookInstanceDeletedWaiter(Waiter):
|
|
155
184
|
"""
|
|
156
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
185
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
157
186
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
158
187
|
"""
|
|
159
|
-
|
|
160
|
-
|
|
188
|
+
def wait( # type: ignore[override]
|
|
189
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
190
|
+
) -> None:
|
|
161
191
|
"""
|
|
162
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
192
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
163
193
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
164
194
|
"""
|
|
165
195
|
|
|
166
|
-
class NotebookInstanceInServiceWaiter(
|
|
196
|
+
class NotebookInstanceInServiceWaiter(Waiter):
|
|
167
197
|
"""
|
|
168
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
198
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
169
199
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
170
200
|
"""
|
|
171
|
-
|
|
172
|
-
|
|
201
|
+
def wait( # type: ignore[override]
|
|
202
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
|
|
203
|
+
) -> None:
|
|
173
204
|
"""
|
|
174
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
205
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
175
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
176
207
|
"""
|
|
177
208
|
|
|
178
|
-
class NotebookInstanceStoppedWaiter(
|
|
209
|
+
class NotebookInstanceStoppedWaiter(Waiter):
|
|
179
210
|
"""
|
|
180
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
211
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
181
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
182
213
|
"""
|
|
183
|
-
|
|
184
|
-
|
|
214
|
+
def wait( # type: ignore[override]
|
|
215
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
|
|
216
|
+
) -> None:
|
|
185
217
|
"""
|
|
186
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
187
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
188
220
|
"""
|
|
189
221
|
|
|
190
|
-
class ProcessingJobCompletedOrStoppedWaiter(
|
|
222
|
+
class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
191
223
|
"""
|
|
192
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
193
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
194
226
|
"""
|
|
195
|
-
|
|
196
|
-
|
|
227
|
+
def wait( # type: ignore[override]
|
|
228
|
+
self, **kwargs: Unpack[DescribeProcessingJobRequestWaitTypeDef]
|
|
229
|
+
) -> None:
|
|
197
230
|
"""
|
|
198
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
199
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
200
233
|
"""
|
|
201
234
|
|
|
202
|
-
class TrainingJobCompletedOrStoppedWaiter(
|
|
235
|
+
class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
203
236
|
"""
|
|
204
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
205
238
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
206
239
|
"""
|
|
207
|
-
|
|
208
|
-
|
|
240
|
+
def wait( # type: ignore[override]
|
|
241
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestWaitTypeDef]
|
|
242
|
+
) -> None:
|
|
209
243
|
"""
|
|
210
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
211
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
212
246
|
"""
|
|
213
247
|
|
|
214
|
-
class TransformJobCompletedOrStoppedWaiter(
|
|
248
|
+
class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
215
249
|
"""
|
|
216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
250
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
217
251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
218
252
|
"""
|
|
219
|
-
|
|
220
|
-
|
|
253
|
+
def wait( # type: ignore[override]
|
|
254
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestWaitTypeDef]
|
|
255
|
+
) -> None:
|
|
221
256
|
"""
|
|
222
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
223
258
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
224
259
|
"""
|