mypy-boto3-transfer 1.35.40__py3-none-any.whl → 1.35.84__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_transfer/__init__.py +6 -0
- mypy_boto3_transfer/__init__.pyi +6 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +281 -170
- mypy_boto3_transfer/client.pyi +281 -170
- mypy_boto3_transfer/literals.py +36 -7
- mypy_boto3_transfer/literals.pyi +36 -7
- mypy_boto3_transfer/paginator.py +47 -25
- mypy_boto3_transfer/paginator.pyi +45 -25
- mypy_boto3_transfer/type_defs.py +1473 -1626
- mypy_boto3_transfer/type_defs.pyi +1277 -1640
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +6 -4
- mypy_boto3_transfer/waiter.pyi +6 -4
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/METADATA +78 -21
- mypy_boto3_transfer-1.35.84.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.40.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.40.dist-info → mypy_boto3_transfer-1.35.84.dist-info}/top_level.txt +0 -0
|
@@ -21,6 +21,7 @@ Usage::
|
|
|
21
21
|
ListServersPaginator,
|
|
22
22
|
ListTagsForResourcePaginator,
|
|
23
23
|
ListUsersPaginator,
|
|
24
|
+
ListWebAppsPaginator,
|
|
24
25
|
ListWorkflowsPaginator,
|
|
25
26
|
)
|
|
26
27
|
|
|
@@ -38,8 +39,11 @@ Usage::
|
|
|
38
39
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
39
40
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
40
41
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
42
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
41
43
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
42
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
43
47
|
"""
|
|
44
48
|
|
|
45
49
|
import sys
|
|
@@ -70,6 +74,8 @@ from .type_defs import (
|
|
|
70
74
|
ListTagsForResourceResponseTypeDef,
|
|
71
75
|
ListUsersRequestListUsersPaginateTypeDef,
|
|
72
76
|
ListUsersResponseTypeDef,
|
|
77
|
+
ListWebAppsRequestListWebAppsPaginateTypeDef,
|
|
78
|
+
ListWebAppsResponseTypeDef,
|
|
73
79
|
ListWorkflowsRequestListWorkflowsPaginateTypeDef,
|
|
74
80
|
ListWorkflowsResponseTypeDef,
|
|
75
81
|
)
|
|
@@ -91,12 +97,13 @@ __all__ = (
|
|
|
91
97
|
"ListServersPaginator",
|
|
92
98
|
"ListTagsForResourcePaginator",
|
|
93
99
|
"ListUsersPaginator",
|
|
100
|
+
"ListWebAppsPaginator",
|
|
94
101
|
"ListWorkflowsPaginator",
|
|
95
102
|
)
|
|
96
103
|
|
|
97
104
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
98
105
|
|
|
99
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
106
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
100
107
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
101
108
|
"""
|
|
102
109
|
Proxy method to specify iterator item type.
|
|
@@ -104,156 +111,169 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
104
111
|
|
|
105
112
|
class ListAccessesPaginator(Paginator):
|
|
106
113
|
"""
|
|
107
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses)
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses)
|
|
108
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
109
116
|
"""
|
|
110
117
|
def paginate(
|
|
111
118
|
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
112
119
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
113
120
|
"""
|
|
114
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses.paginate)
|
|
115
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
116
123
|
"""
|
|
117
124
|
|
|
118
125
|
class ListAgreementsPaginator(Paginator):
|
|
119
126
|
"""
|
|
120
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements)
|
|
127
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements)
|
|
121
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
122
129
|
"""
|
|
123
130
|
def paginate(
|
|
124
131
|
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
125
132
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
126
133
|
"""
|
|
127
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements.paginate)
|
|
128
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
129
136
|
"""
|
|
130
137
|
|
|
131
138
|
class ListCertificatesPaginator(Paginator):
|
|
132
139
|
"""
|
|
133
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates)
|
|
140
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates)
|
|
134
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
135
142
|
"""
|
|
136
143
|
def paginate(
|
|
137
144
|
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
138
145
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
139
146
|
"""
|
|
140
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
147
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates.paginate)
|
|
141
148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
142
149
|
"""
|
|
143
150
|
|
|
144
151
|
class ListConnectorsPaginator(Paginator):
|
|
145
152
|
"""
|
|
146
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors)
|
|
153
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors)
|
|
147
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
148
155
|
"""
|
|
149
156
|
def paginate(
|
|
150
157
|
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
151
158
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
152
159
|
"""
|
|
153
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
160
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors.paginate)
|
|
154
161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
155
162
|
"""
|
|
156
163
|
|
|
157
164
|
class ListExecutionsPaginator(Paginator):
|
|
158
165
|
"""
|
|
159
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions)
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions)
|
|
160
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
161
168
|
"""
|
|
162
169
|
def paginate(
|
|
163
170
|
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
164
171
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
165
172
|
"""
|
|
166
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
173
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions.paginate)
|
|
167
174
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
168
175
|
"""
|
|
169
176
|
|
|
170
177
|
class ListFileTransferResultsPaginator(Paginator):
|
|
171
178
|
"""
|
|
172
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults)
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults)
|
|
173
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
174
181
|
"""
|
|
175
182
|
def paginate(
|
|
176
183
|
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
177
184
|
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
178
185
|
"""
|
|
179
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
180
187
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
181
188
|
"""
|
|
182
189
|
|
|
183
190
|
class ListProfilesPaginator(Paginator):
|
|
184
191
|
"""
|
|
185
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
192
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles)
|
|
186
193
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
187
194
|
"""
|
|
188
195
|
def paginate(
|
|
189
196
|
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
190
197
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
191
198
|
"""
|
|
192
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles.paginate)
|
|
193
200
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
194
201
|
"""
|
|
195
202
|
|
|
196
203
|
class ListSecurityPoliciesPaginator(Paginator):
|
|
197
204
|
"""
|
|
198
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies)
|
|
205
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies)
|
|
199
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
200
207
|
"""
|
|
201
208
|
def paginate(
|
|
202
209
|
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
203
210
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
204
211
|
"""
|
|
205
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
206
213
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
207
214
|
"""
|
|
208
215
|
|
|
209
216
|
class ListServersPaginator(Paginator):
|
|
210
217
|
"""
|
|
211
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers)
|
|
218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers)
|
|
212
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
213
220
|
"""
|
|
214
221
|
def paginate(
|
|
215
222
|
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
216
223
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
217
224
|
"""
|
|
218
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
225
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers.paginate)
|
|
219
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
220
227
|
"""
|
|
221
228
|
|
|
222
229
|
class ListTagsForResourcePaginator(Paginator):
|
|
223
230
|
"""
|
|
224
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource)
|
|
225
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
226
233
|
"""
|
|
227
234
|
def paginate(
|
|
228
235
|
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
229
236
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
230
237
|
"""
|
|
231
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
238
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
232
239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
233
240
|
"""
|
|
234
241
|
|
|
235
242
|
class ListUsersPaginator(Paginator):
|
|
236
243
|
"""
|
|
237
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers)
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers)
|
|
238
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
239
246
|
"""
|
|
240
247
|
def paginate(
|
|
241
248
|
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
242
249
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
243
250
|
"""
|
|
244
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers.paginate)
|
|
245
252
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
246
253
|
"""
|
|
247
254
|
|
|
255
|
+
class ListWebAppsPaginator(Paginator):
|
|
256
|
+
"""
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps)
|
|
258
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
259
|
+
"""
|
|
260
|
+
def paginate(
|
|
261
|
+
self, **kwargs: Unpack[ListWebAppsRequestListWebAppsPaginateTypeDef]
|
|
262
|
+
) -> _PageIterator[ListWebAppsResponseTypeDef]:
|
|
263
|
+
"""
|
|
264
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps.paginate)
|
|
265
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
266
|
+
"""
|
|
267
|
+
|
|
248
268
|
class ListWorkflowsPaginator(Paginator):
|
|
249
269
|
"""
|
|
250
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows)
|
|
270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows)
|
|
251
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
252
272
|
"""
|
|
253
273
|
def paginate(
|
|
254
274
|
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
255
275
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
256
276
|
"""
|
|
257
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
258
278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
259
279
|
"""
|