types-boto3-lambda 1.35.71__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 types-boto3-lambda might be problematic. Click here for more details.
- types_boto3_lambda/__init__.py +102 -0
- types_boto3_lambda/__init__.pyi +101 -0
- types_boto3_lambda/__main__.py +42 -0
- types_boto3_lambda/client.py +1164 -0
- types_boto3_lambda/client.pyi +1160 -0
- types_boto3_lambda/literals.py +688 -0
- types_boto3_lambda/literals.pyi +686 -0
- types_boto3_lambda/paginator.py +277 -0
- types_boto3_lambda/paginator.pyi +252 -0
- types_boto3_lambda/py.typed +0 -0
- types_boto3_lambda/type_defs.py +1660 -0
- types_boto3_lambda/type_defs.pyi +1463 -0
- types_boto3_lambda/version.py +7 -0
- types_boto3_lambda/waiter.py +145 -0
- types_boto3_lambda/waiter.pyi +132 -0
- types_boto3_lambda-1.35.71.dist-info/LICENSE +21 -0
- types_boto3_lambda-1.35.71.dist-info/METADATA +499 -0
- types_boto3_lambda-1.35.71.dist-info/RECORD +20 -0
- types_boto3_lambda-1.35.71.dist-info/WHEEL +5 -0
- types_boto3_lambda-1.35.71.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1160 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for lambda service client.
|
|
3
|
+
|
|
4
|
+
[Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
from types_boto3_lambda.client import LambdaClient
|
|
11
|
+
|
|
12
|
+
session = Session()
|
|
13
|
+
client: LambdaClient = session.client("lambda")
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Copyright 2024 Vlad Emelianov
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
import sys
|
|
20
|
+
from typing import Any, Dict, Mapping, Type, overload
|
|
21
|
+
|
|
22
|
+
from botocore.client import BaseClient, ClientMeta
|
|
23
|
+
|
|
24
|
+
from .paginator import (
|
|
25
|
+
ListAliasesPaginator,
|
|
26
|
+
ListCodeSigningConfigsPaginator,
|
|
27
|
+
ListEventSourceMappingsPaginator,
|
|
28
|
+
ListFunctionEventInvokeConfigsPaginator,
|
|
29
|
+
ListFunctionsByCodeSigningConfigPaginator,
|
|
30
|
+
ListFunctionsPaginator,
|
|
31
|
+
ListFunctionUrlConfigsPaginator,
|
|
32
|
+
ListLayersPaginator,
|
|
33
|
+
ListLayerVersionsPaginator,
|
|
34
|
+
ListProvisionedConcurrencyConfigsPaginator,
|
|
35
|
+
ListVersionsByFunctionPaginator,
|
|
36
|
+
)
|
|
37
|
+
from .type_defs import (
|
|
38
|
+
AddLayerVersionPermissionRequestRequestTypeDef,
|
|
39
|
+
AddLayerVersionPermissionResponseTypeDef,
|
|
40
|
+
AddPermissionRequestRequestTypeDef,
|
|
41
|
+
AddPermissionResponseTypeDef,
|
|
42
|
+
AliasConfigurationResponseTypeDef,
|
|
43
|
+
ConcurrencyResponseTypeDef,
|
|
44
|
+
CreateAliasRequestRequestTypeDef,
|
|
45
|
+
CreateCodeSigningConfigRequestRequestTypeDef,
|
|
46
|
+
CreateCodeSigningConfigResponseTypeDef,
|
|
47
|
+
CreateEventSourceMappingRequestRequestTypeDef,
|
|
48
|
+
CreateFunctionRequestRequestTypeDef,
|
|
49
|
+
CreateFunctionUrlConfigRequestRequestTypeDef,
|
|
50
|
+
CreateFunctionUrlConfigResponseTypeDef,
|
|
51
|
+
DeleteAliasRequestRequestTypeDef,
|
|
52
|
+
DeleteCodeSigningConfigRequestRequestTypeDef,
|
|
53
|
+
DeleteEventSourceMappingRequestRequestTypeDef,
|
|
54
|
+
DeleteFunctionCodeSigningConfigRequestRequestTypeDef,
|
|
55
|
+
DeleteFunctionConcurrencyRequestRequestTypeDef,
|
|
56
|
+
DeleteFunctionEventInvokeConfigRequestRequestTypeDef,
|
|
57
|
+
DeleteFunctionRequestRequestTypeDef,
|
|
58
|
+
DeleteFunctionUrlConfigRequestRequestTypeDef,
|
|
59
|
+
DeleteLayerVersionRequestRequestTypeDef,
|
|
60
|
+
DeleteProvisionedConcurrencyConfigRequestRequestTypeDef,
|
|
61
|
+
EmptyResponseMetadataTypeDef,
|
|
62
|
+
EventSourceMappingConfigurationResponseTypeDef,
|
|
63
|
+
FunctionConfigurationResponseTypeDef,
|
|
64
|
+
FunctionEventInvokeConfigResponseTypeDef,
|
|
65
|
+
GetAccountSettingsResponseTypeDef,
|
|
66
|
+
GetAliasRequestRequestTypeDef,
|
|
67
|
+
GetCodeSigningConfigRequestRequestTypeDef,
|
|
68
|
+
GetCodeSigningConfigResponseTypeDef,
|
|
69
|
+
GetEventSourceMappingRequestRequestTypeDef,
|
|
70
|
+
GetFunctionCodeSigningConfigRequestRequestTypeDef,
|
|
71
|
+
GetFunctionCodeSigningConfigResponseTypeDef,
|
|
72
|
+
GetFunctionConcurrencyRequestRequestTypeDef,
|
|
73
|
+
GetFunctionConcurrencyResponseTypeDef,
|
|
74
|
+
GetFunctionConfigurationRequestRequestTypeDef,
|
|
75
|
+
GetFunctionEventInvokeConfigRequestRequestTypeDef,
|
|
76
|
+
GetFunctionRecursionConfigRequestRequestTypeDef,
|
|
77
|
+
GetFunctionRecursionConfigResponseTypeDef,
|
|
78
|
+
GetFunctionRequestRequestTypeDef,
|
|
79
|
+
GetFunctionResponseTypeDef,
|
|
80
|
+
GetFunctionUrlConfigRequestRequestTypeDef,
|
|
81
|
+
GetFunctionUrlConfigResponseTypeDef,
|
|
82
|
+
GetLayerVersionByArnRequestRequestTypeDef,
|
|
83
|
+
GetLayerVersionPolicyRequestRequestTypeDef,
|
|
84
|
+
GetLayerVersionPolicyResponseTypeDef,
|
|
85
|
+
GetLayerVersionRequestRequestTypeDef,
|
|
86
|
+
GetLayerVersionResponseTypeDef,
|
|
87
|
+
GetPolicyRequestRequestTypeDef,
|
|
88
|
+
GetPolicyResponseTypeDef,
|
|
89
|
+
GetProvisionedConcurrencyConfigRequestRequestTypeDef,
|
|
90
|
+
GetProvisionedConcurrencyConfigResponseTypeDef,
|
|
91
|
+
GetRuntimeManagementConfigRequestRequestTypeDef,
|
|
92
|
+
GetRuntimeManagementConfigResponseTypeDef,
|
|
93
|
+
InvocationRequestRequestTypeDef,
|
|
94
|
+
InvocationResponseTypeDef,
|
|
95
|
+
InvokeAsyncRequestRequestTypeDef,
|
|
96
|
+
InvokeAsyncResponseTypeDef,
|
|
97
|
+
InvokeWithResponseStreamRequestRequestTypeDef,
|
|
98
|
+
InvokeWithResponseStreamResponseTypeDef,
|
|
99
|
+
ListAliasesRequestRequestTypeDef,
|
|
100
|
+
ListAliasesResponseTypeDef,
|
|
101
|
+
ListCodeSigningConfigsRequestRequestTypeDef,
|
|
102
|
+
ListCodeSigningConfigsResponseTypeDef,
|
|
103
|
+
ListEventSourceMappingsRequestRequestTypeDef,
|
|
104
|
+
ListEventSourceMappingsResponseTypeDef,
|
|
105
|
+
ListFunctionEventInvokeConfigsRequestRequestTypeDef,
|
|
106
|
+
ListFunctionEventInvokeConfigsResponseTypeDef,
|
|
107
|
+
ListFunctionsByCodeSigningConfigRequestRequestTypeDef,
|
|
108
|
+
ListFunctionsByCodeSigningConfigResponseTypeDef,
|
|
109
|
+
ListFunctionsRequestRequestTypeDef,
|
|
110
|
+
ListFunctionsResponseTypeDef,
|
|
111
|
+
ListFunctionUrlConfigsRequestRequestTypeDef,
|
|
112
|
+
ListFunctionUrlConfigsResponseTypeDef,
|
|
113
|
+
ListLayersRequestRequestTypeDef,
|
|
114
|
+
ListLayersResponseTypeDef,
|
|
115
|
+
ListLayerVersionsRequestRequestTypeDef,
|
|
116
|
+
ListLayerVersionsResponseTypeDef,
|
|
117
|
+
ListProvisionedConcurrencyConfigsRequestRequestTypeDef,
|
|
118
|
+
ListProvisionedConcurrencyConfigsResponseTypeDef,
|
|
119
|
+
ListTagsRequestRequestTypeDef,
|
|
120
|
+
ListTagsResponseTypeDef,
|
|
121
|
+
ListVersionsByFunctionRequestRequestTypeDef,
|
|
122
|
+
ListVersionsByFunctionResponseTypeDef,
|
|
123
|
+
PublishLayerVersionRequestRequestTypeDef,
|
|
124
|
+
PublishLayerVersionResponseTypeDef,
|
|
125
|
+
PublishVersionRequestRequestTypeDef,
|
|
126
|
+
PutFunctionCodeSigningConfigRequestRequestTypeDef,
|
|
127
|
+
PutFunctionCodeSigningConfigResponseTypeDef,
|
|
128
|
+
PutFunctionConcurrencyRequestRequestTypeDef,
|
|
129
|
+
PutFunctionEventInvokeConfigRequestRequestTypeDef,
|
|
130
|
+
PutFunctionRecursionConfigRequestRequestTypeDef,
|
|
131
|
+
PutFunctionRecursionConfigResponseTypeDef,
|
|
132
|
+
PutProvisionedConcurrencyConfigRequestRequestTypeDef,
|
|
133
|
+
PutProvisionedConcurrencyConfigResponseTypeDef,
|
|
134
|
+
PutRuntimeManagementConfigRequestRequestTypeDef,
|
|
135
|
+
PutRuntimeManagementConfigResponseTypeDef,
|
|
136
|
+
RemoveLayerVersionPermissionRequestRequestTypeDef,
|
|
137
|
+
RemovePermissionRequestRequestTypeDef,
|
|
138
|
+
TagResourceRequestRequestTypeDef,
|
|
139
|
+
UntagResourceRequestRequestTypeDef,
|
|
140
|
+
UpdateAliasRequestRequestTypeDef,
|
|
141
|
+
UpdateCodeSigningConfigRequestRequestTypeDef,
|
|
142
|
+
UpdateCodeSigningConfigResponseTypeDef,
|
|
143
|
+
UpdateEventSourceMappingRequestRequestTypeDef,
|
|
144
|
+
UpdateFunctionCodeRequestRequestTypeDef,
|
|
145
|
+
UpdateFunctionConfigurationRequestRequestTypeDef,
|
|
146
|
+
UpdateFunctionEventInvokeConfigRequestRequestTypeDef,
|
|
147
|
+
UpdateFunctionUrlConfigRequestRequestTypeDef,
|
|
148
|
+
UpdateFunctionUrlConfigResponseTypeDef,
|
|
149
|
+
)
|
|
150
|
+
from .waiter import (
|
|
151
|
+
FunctionActiveV2Waiter,
|
|
152
|
+
FunctionActiveWaiter,
|
|
153
|
+
FunctionExistsWaiter,
|
|
154
|
+
FunctionUpdatedV2Waiter,
|
|
155
|
+
FunctionUpdatedWaiter,
|
|
156
|
+
PublishedVersionActiveWaiter,
|
|
157
|
+
)
|
|
158
|
+
|
|
159
|
+
if sys.version_info >= (3, 12):
|
|
160
|
+
from typing import Literal, Unpack
|
|
161
|
+
else:
|
|
162
|
+
from typing_extensions import Literal, Unpack
|
|
163
|
+
|
|
164
|
+
__all__ = ("LambdaClient",)
|
|
165
|
+
|
|
166
|
+
class BotocoreClientError(Exception):
|
|
167
|
+
MSG_TEMPLATE: str
|
|
168
|
+
|
|
169
|
+
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
170
|
+
self.response: Dict[str, Any]
|
|
171
|
+
self.operation_name: str
|
|
172
|
+
|
|
173
|
+
class Exceptions:
|
|
174
|
+
ClientError: Type[BotocoreClientError]
|
|
175
|
+
CodeSigningConfigNotFoundException: Type[BotocoreClientError]
|
|
176
|
+
CodeStorageExceededException: Type[BotocoreClientError]
|
|
177
|
+
CodeVerificationFailedException: Type[BotocoreClientError]
|
|
178
|
+
EC2AccessDeniedException: Type[BotocoreClientError]
|
|
179
|
+
EC2ThrottledException: Type[BotocoreClientError]
|
|
180
|
+
EC2UnexpectedException: Type[BotocoreClientError]
|
|
181
|
+
EFSIOException: Type[BotocoreClientError]
|
|
182
|
+
EFSMountConnectivityException: Type[BotocoreClientError]
|
|
183
|
+
EFSMountFailureException: Type[BotocoreClientError]
|
|
184
|
+
EFSMountTimeoutException: Type[BotocoreClientError]
|
|
185
|
+
ENILimitReachedException: Type[BotocoreClientError]
|
|
186
|
+
InvalidCodeSignatureException: Type[BotocoreClientError]
|
|
187
|
+
InvalidParameterValueException: Type[BotocoreClientError]
|
|
188
|
+
InvalidRequestContentException: Type[BotocoreClientError]
|
|
189
|
+
InvalidRuntimeException: Type[BotocoreClientError]
|
|
190
|
+
InvalidSecurityGroupIDException: Type[BotocoreClientError]
|
|
191
|
+
InvalidSubnetIDException: Type[BotocoreClientError]
|
|
192
|
+
InvalidZipFileException: Type[BotocoreClientError]
|
|
193
|
+
KMSAccessDeniedException: Type[BotocoreClientError]
|
|
194
|
+
KMSDisabledException: Type[BotocoreClientError]
|
|
195
|
+
KMSInvalidStateException: Type[BotocoreClientError]
|
|
196
|
+
KMSNotFoundException: Type[BotocoreClientError]
|
|
197
|
+
PolicyLengthExceededException: Type[BotocoreClientError]
|
|
198
|
+
PreconditionFailedException: Type[BotocoreClientError]
|
|
199
|
+
ProvisionedConcurrencyConfigNotFoundException: Type[BotocoreClientError]
|
|
200
|
+
RecursiveInvocationException: Type[BotocoreClientError]
|
|
201
|
+
RequestTooLargeException: Type[BotocoreClientError]
|
|
202
|
+
ResourceConflictException: Type[BotocoreClientError]
|
|
203
|
+
ResourceInUseException: Type[BotocoreClientError]
|
|
204
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
205
|
+
ResourceNotReadyException: Type[BotocoreClientError]
|
|
206
|
+
ServiceException: Type[BotocoreClientError]
|
|
207
|
+
SnapStartException: Type[BotocoreClientError]
|
|
208
|
+
SnapStartNotReadyException: Type[BotocoreClientError]
|
|
209
|
+
SnapStartTimeoutException: Type[BotocoreClientError]
|
|
210
|
+
SubnetIPAddressLimitReachedException: Type[BotocoreClientError]
|
|
211
|
+
TooManyRequestsException: Type[BotocoreClientError]
|
|
212
|
+
UnsupportedMediaTypeException: Type[BotocoreClientError]
|
|
213
|
+
|
|
214
|
+
class LambdaClient(BaseClient):
|
|
215
|
+
"""
|
|
216
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda.html#Lambda.Client)
|
|
217
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/)
|
|
218
|
+
"""
|
|
219
|
+
|
|
220
|
+
meta: ClientMeta
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
def exceptions(self) -> Exceptions:
|
|
224
|
+
"""
|
|
225
|
+
LambdaClient exceptions.
|
|
226
|
+
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda.html#Lambda.Client)
|
|
228
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#exceptions)
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
232
|
+
"""
|
|
233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/can_paginate.html)
|
|
234
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#can_paginate)
|
|
235
|
+
"""
|
|
236
|
+
|
|
237
|
+
def generate_presigned_url(
|
|
238
|
+
self,
|
|
239
|
+
ClientMethod: str,
|
|
240
|
+
Params: Mapping[str, Any] = ...,
|
|
241
|
+
ExpiresIn: int = 3600,
|
|
242
|
+
HttpMethod: str = ...,
|
|
243
|
+
) -> str:
|
|
244
|
+
"""
|
|
245
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/generate_presigned_url.html)
|
|
246
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#generate_presigned_url)
|
|
247
|
+
"""
|
|
248
|
+
|
|
249
|
+
def close(self) -> None:
|
|
250
|
+
"""
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/close.html)
|
|
252
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#close)
|
|
253
|
+
"""
|
|
254
|
+
|
|
255
|
+
def add_layer_version_permission(
|
|
256
|
+
self, **kwargs: Unpack[AddLayerVersionPermissionRequestRequestTypeDef]
|
|
257
|
+
) -> AddLayerVersionPermissionResponseTypeDef:
|
|
258
|
+
"""
|
|
259
|
+
Adds permissions to the resource-based policy of a version of an <a
|
|
260
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
261
|
+
layer</a>.
|
|
262
|
+
|
|
263
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/add_layer_version_permission.html)
|
|
264
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#add_layer_version_permission)
|
|
265
|
+
"""
|
|
266
|
+
|
|
267
|
+
def add_permission(
|
|
268
|
+
self, **kwargs: Unpack[AddPermissionRequestRequestTypeDef]
|
|
269
|
+
) -> AddPermissionResponseTypeDef:
|
|
270
|
+
"""
|
|
271
|
+
Grants a <a
|
|
272
|
+
href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_principal.html#Principal_specifying">principal</a>
|
|
273
|
+
permission to use a function.
|
|
274
|
+
|
|
275
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/add_permission.html)
|
|
276
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#add_permission)
|
|
277
|
+
"""
|
|
278
|
+
|
|
279
|
+
def create_alias(
|
|
280
|
+
self, **kwargs: Unpack[CreateAliasRequestRequestTypeDef]
|
|
281
|
+
) -> AliasConfigurationResponseTypeDef:
|
|
282
|
+
"""
|
|
283
|
+
Creates an <a
|
|
284
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">alias</a>
|
|
285
|
+
for a Lambda function version.
|
|
286
|
+
|
|
287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/create_alias.html)
|
|
288
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#create_alias)
|
|
289
|
+
"""
|
|
290
|
+
|
|
291
|
+
def create_code_signing_config(
|
|
292
|
+
self, **kwargs: Unpack[CreateCodeSigningConfigRequestRequestTypeDef]
|
|
293
|
+
) -> CreateCodeSigningConfigResponseTypeDef:
|
|
294
|
+
"""
|
|
295
|
+
Creates a code signing configuration.
|
|
296
|
+
|
|
297
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/create_code_signing_config.html)
|
|
298
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#create_code_signing_config)
|
|
299
|
+
"""
|
|
300
|
+
|
|
301
|
+
def create_event_source_mapping(
|
|
302
|
+
self, **kwargs: Unpack[CreateEventSourceMappingRequestRequestTypeDef]
|
|
303
|
+
) -> EventSourceMappingConfigurationResponseTypeDef:
|
|
304
|
+
"""
|
|
305
|
+
Creates a mapping between an event source and an Lambda function.
|
|
306
|
+
|
|
307
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/create_event_source_mapping.html)
|
|
308
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#create_event_source_mapping)
|
|
309
|
+
"""
|
|
310
|
+
|
|
311
|
+
def create_function(
|
|
312
|
+
self, **kwargs: Unpack[CreateFunctionRequestRequestTypeDef]
|
|
313
|
+
) -> FunctionConfigurationResponseTypeDef:
|
|
314
|
+
"""
|
|
315
|
+
Creates a Lambda function.
|
|
316
|
+
|
|
317
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/create_function.html)
|
|
318
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#create_function)
|
|
319
|
+
"""
|
|
320
|
+
|
|
321
|
+
def create_function_url_config(
|
|
322
|
+
self, **kwargs: Unpack[CreateFunctionUrlConfigRequestRequestTypeDef]
|
|
323
|
+
) -> CreateFunctionUrlConfigResponseTypeDef:
|
|
324
|
+
"""
|
|
325
|
+
Creates a Lambda function URL with the specified configuration parameters.
|
|
326
|
+
|
|
327
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/create_function_url_config.html)
|
|
328
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#create_function_url_config)
|
|
329
|
+
"""
|
|
330
|
+
|
|
331
|
+
def delete_alias(
|
|
332
|
+
self, **kwargs: Unpack[DeleteAliasRequestRequestTypeDef]
|
|
333
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
334
|
+
"""
|
|
335
|
+
Deletes a Lambda function <a
|
|
336
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">alias</a>.
|
|
337
|
+
|
|
338
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_alias.html)
|
|
339
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_alias)
|
|
340
|
+
"""
|
|
341
|
+
|
|
342
|
+
def delete_code_signing_config(
|
|
343
|
+
self, **kwargs: Unpack[DeleteCodeSigningConfigRequestRequestTypeDef]
|
|
344
|
+
) -> Dict[str, Any]:
|
|
345
|
+
"""
|
|
346
|
+
Deletes the code signing configuration.
|
|
347
|
+
|
|
348
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_code_signing_config.html)
|
|
349
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_code_signing_config)
|
|
350
|
+
"""
|
|
351
|
+
|
|
352
|
+
def delete_event_source_mapping(
|
|
353
|
+
self, **kwargs: Unpack[DeleteEventSourceMappingRequestRequestTypeDef]
|
|
354
|
+
) -> EventSourceMappingConfigurationResponseTypeDef:
|
|
355
|
+
"""
|
|
356
|
+
Deletes an <a
|
|
357
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/intro-invocation-modes.html">event
|
|
358
|
+
source mapping</a>.
|
|
359
|
+
|
|
360
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_event_source_mapping.html)
|
|
361
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_event_source_mapping)
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
def delete_function(
|
|
365
|
+
self, **kwargs: Unpack[DeleteFunctionRequestRequestTypeDef]
|
|
366
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
367
|
+
"""
|
|
368
|
+
Deletes a Lambda function.
|
|
369
|
+
|
|
370
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_function.html)
|
|
371
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_function)
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
def delete_function_code_signing_config(
|
|
375
|
+
self, **kwargs: Unpack[DeleteFunctionCodeSigningConfigRequestRequestTypeDef]
|
|
376
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
377
|
+
"""
|
|
378
|
+
Removes the code signing configuration from the function.
|
|
379
|
+
|
|
380
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_function_code_signing_config.html)
|
|
381
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_function_code_signing_config)
|
|
382
|
+
"""
|
|
383
|
+
|
|
384
|
+
def delete_function_concurrency(
|
|
385
|
+
self, **kwargs: Unpack[DeleteFunctionConcurrencyRequestRequestTypeDef]
|
|
386
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
387
|
+
"""
|
|
388
|
+
Removes a concurrent execution limit from a function.
|
|
389
|
+
|
|
390
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_function_concurrency.html)
|
|
391
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_function_concurrency)
|
|
392
|
+
"""
|
|
393
|
+
|
|
394
|
+
def delete_function_event_invoke_config(
|
|
395
|
+
self, **kwargs: Unpack[DeleteFunctionEventInvokeConfigRequestRequestTypeDef]
|
|
396
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
397
|
+
"""
|
|
398
|
+
Deletes the configuration for asynchronous invocation for a function, version,
|
|
399
|
+
or alias.
|
|
400
|
+
|
|
401
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_function_event_invoke_config.html)
|
|
402
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_function_event_invoke_config)
|
|
403
|
+
"""
|
|
404
|
+
|
|
405
|
+
def delete_function_url_config(
|
|
406
|
+
self, **kwargs: Unpack[DeleteFunctionUrlConfigRequestRequestTypeDef]
|
|
407
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
408
|
+
"""
|
|
409
|
+
Deletes a Lambda function URL.
|
|
410
|
+
|
|
411
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_function_url_config.html)
|
|
412
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_function_url_config)
|
|
413
|
+
"""
|
|
414
|
+
|
|
415
|
+
def delete_layer_version(
|
|
416
|
+
self, **kwargs: Unpack[DeleteLayerVersionRequestRequestTypeDef]
|
|
417
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
418
|
+
"""
|
|
419
|
+
Deletes a version of an <a
|
|
420
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
421
|
+
layer</a>.
|
|
422
|
+
|
|
423
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_layer_version.html)
|
|
424
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_layer_version)
|
|
425
|
+
"""
|
|
426
|
+
|
|
427
|
+
def delete_provisioned_concurrency_config(
|
|
428
|
+
self, **kwargs: Unpack[DeleteProvisionedConcurrencyConfigRequestRequestTypeDef]
|
|
429
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
430
|
+
"""
|
|
431
|
+
Deletes the provisioned concurrency configuration for a function.
|
|
432
|
+
|
|
433
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/delete_provisioned_concurrency_config.html)
|
|
434
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#delete_provisioned_concurrency_config)
|
|
435
|
+
"""
|
|
436
|
+
|
|
437
|
+
def get_account_settings(self) -> GetAccountSettingsResponseTypeDef:
|
|
438
|
+
"""
|
|
439
|
+
Retrieves details about your account's <a
|
|
440
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">limits</a> and
|
|
441
|
+
usage in an Amazon Web Services Region.
|
|
442
|
+
|
|
443
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_account_settings.html)
|
|
444
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_account_settings)
|
|
445
|
+
"""
|
|
446
|
+
|
|
447
|
+
def get_alias(
|
|
448
|
+
self, **kwargs: Unpack[GetAliasRequestRequestTypeDef]
|
|
449
|
+
) -> AliasConfigurationResponseTypeDef:
|
|
450
|
+
"""
|
|
451
|
+
Returns details about a Lambda function <a
|
|
452
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">alias</a>.
|
|
453
|
+
|
|
454
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_alias.html)
|
|
455
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_alias)
|
|
456
|
+
"""
|
|
457
|
+
|
|
458
|
+
def get_code_signing_config(
|
|
459
|
+
self, **kwargs: Unpack[GetCodeSigningConfigRequestRequestTypeDef]
|
|
460
|
+
) -> GetCodeSigningConfigResponseTypeDef:
|
|
461
|
+
"""
|
|
462
|
+
Returns information about the specified code signing configuration.
|
|
463
|
+
|
|
464
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_code_signing_config.html)
|
|
465
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_code_signing_config)
|
|
466
|
+
"""
|
|
467
|
+
|
|
468
|
+
def get_event_source_mapping(
|
|
469
|
+
self, **kwargs: Unpack[GetEventSourceMappingRequestRequestTypeDef]
|
|
470
|
+
) -> EventSourceMappingConfigurationResponseTypeDef:
|
|
471
|
+
"""
|
|
472
|
+
Returns details about an event source mapping.
|
|
473
|
+
|
|
474
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_event_source_mapping.html)
|
|
475
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_event_source_mapping)
|
|
476
|
+
"""
|
|
477
|
+
|
|
478
|
+
def get_function(
|
|
479
|
+
self, **kwargs: Unpack[GetFunctionRequestRequestTypeDef]
|
|
480
|
+
) -> GetFunctionResponseTypeDef:
|
|
481
|
+
"""
|
|
482
|
+
Returns information about the function or function version, with a link to
|
|
483
|
+
download the deployment package that's valid for 10 minutes.
|
|
484
|
+
|
|
485
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function.html)
|
|
486
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function)
|
|
487
|
+
"""
|
|
488
|
+
|
|
489
|
+
def get_function_code_signing_config(
|
|
490
|
+
self, **kwargs: Unpack[GetFunctionCodeSigningConfigRequestRequestTypeDef]
|
|
491
|
+
) -> GetFunctionCodeSigningConfigResponseTypeDef:
|
|
492
|
+
"""
|
|
493
|
+
Returns the code signing configuration for the specified function.
|
|
494
|
+
|
|
495
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_code_signing_config.html)
|
|
496
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_code_signing_config)
|
|
497
|
+
"""
|
|
498
|
+
|
|
499
|
+
def get_function_concurrency(
|
|
500
|
+
self, **kwargs: Unpack[GetFunctionConcurrencyRequestRequestTypeDef]
|
|
501
|
+
) -> GetFunctionConcurrencyResponseTypeDef:
|
|
502
|
+
"""
|
|
503
|
+
Returns details about the reserved concurrency configuration for a function.
|
|
504
|
+
|
|
505
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_concurrency.html)
|
|
506
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_concurrency)
|
|
507
|
+
"""
|
|
508
|
+
|
|
509
|
+
def get_function_configuration(
|
|
510
|
+
self, **kwargs: Unpack[GetFunctionConfigurationRequestRequestTypeDef]
|
|
511
|
+
) -> FunctionConfigurationResponseTypeDef:
|
|
512
|
+
"""
|
|
513
|
+
Returns the version-specific settings of a Lambda function or version.
|
|
514
|
+
|
|
515
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_configuration.html)
|
|
516
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_configuration)
|
|
517
|
+
"""
|
|
518
|
+
|
|
519
|
+
def get_function_event_invoke_config(
|
|
520
|
+
self, **kwargs: Unpack[GetFunctionEventInvokeConfigRequestRequestTypeDef]
|
|
521
|
+
) -> FunctionEventInvokeConfigResponseTypeDef:
|
|
522
|
+
"""
|
|
523
|
+
Retrieves the configuration for asynchronous invocation for a function,
|
|
524
|
+
version, or alias.
|
|
525
|
+
|
|
526
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_event_invoke_config.html)
|
|
527
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_event_invoke_config)
|
|
528
|
+
"""
|
|
529
|
+
|
|
530
|
+
def get_function_recursion_config(
|
|
531
|
+
self, **kwargs: Unpack[GetFunctionRecursionConfigRequestRequestTypeDef]
|
|
532
|
+
) -> GetFunctionRecursionConfigResponseTypeDef:
|
|
533
|
+
"""
|
|
534
|
+
Returns your function's <a
|
|
535
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-recursion.html">recursive
|
|
536
|
+
loop detection</a> configuration.
|
|
537
|
+
|
|
538
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_recursion_config.html)
|
|
539
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_recursion_config)
|
|
540
|
+
"""
|
|
541
|
+
|
|
542
|
+
def get_function_url_config(
|
|
543
|
+
self, **kwargs: Unpack[GetFunctionUrlConfigRequestRequestTypeDef]
|
|
544
|
+
) -> GetFunctionUrlConfigResponseTypeDef:
|
|
545
|
+
"""
|
|
546
|
+
Returns details about a Lambda function URL.
|
|
547
|
+
|
|
548
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_function_url_config.html)
|
|
549
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_function_url_config)
|
|
550
|
+
"""
|
|
551
|
+
|
|
552
|
+
def get_layer_version(
|
|
553
|
+
self, **kwargs: Unpack[GetLayerVersionRequestRequestTypeDef]
|
|
554
|
+
) -> GetLayerVersionResponseTypeDef:
|
|
555
|
+
"""
|
|
556
|
+
Returns information about a version of an <a
|
|
557
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
558
|
+
layer</a>, with a link to download the layer archive that's valid for 10
|
|
559
|
+
minutes.
|
|
560
|
+
|
|
561
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_layer_version.html)
|
|
562
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_layer_version)
|
|
563
|
+
"""
|
|
564
|
+
|
|
565
|
+
def get_layer_version_by_arn(
|
|
566
|
+
self, **kwargs: Unpack[GetLayerVersionByArnRequestRequestTypeDef]
|
|
567
|
+
) -> GetLayerVersionResponseTypeDef:
|
|
568
|
+
"""
|
|
569
|
+
Returns information about a version of an <a
|
|
570
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
571
|
+
layer</a>, with a link to download the layer archive that's valid for 10
|
|
572
|
+
minutes.
|
|
573
|
+
|
|
574
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_layer_version_by_arn.html)
|
|
575
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_layer_version_by_arn)
|
|
576
|
+
"""
|
|
577
|
+
|
|
578
|
+
def get_layer_version_policy(
|
|
579
|
+
self, **kwargs: Unpack[GetLayerVersionPolicyRequestRequestTypeDef]
|
|
580
|
+
) -> GetLayerVersionPolicyResponseTypeDef:
|
|
581
|
+
"""
|
|
582
|
+
Returns the permission policy for a version of an <a
|
|
583
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
584
|
+
layer</a>.
|
|
585
|
+
|
|
586
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_layer_version_policy.html)
|
|
587
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_layer_version_policy)
|
|
588
|
+
"""
|
|
589
|
+
|
|
590
|
+
def get_policy(
|
|
591
|
+
self, **kwargs: Unpack[GetPolicyRequestRequestTypeDef]
|
|
592
|
+
) -> GetPolicyResponseTypeDef:
|
|
593
|
+
"""
|
|
594
|
+
Returns the <a
|
|
595
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">resource-based
|
|
596
|
+
IAM policy</a> for a function, version, or alias.
|
|
597
|
+
|
|
598
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_policy.html)
|
|
599
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_policy)
|
|
600
|
+
"""
|
|
601
|
+
|
|
602
|
+
def get_provisioned_concurrency_config(
|
|
603
|
+
self, **kwargs: Unpack[GetProvisionedConcurrencyConfigRequestRequestTypeDef]
|
|
604
|
+
) -> GetProvisionedConcurrencyConfigResponseTypeDef:
|
|
605
|
+
"""
|
|
606
|
+
Retrieves the provisioned concurrency configuration for a function's alias or
|
|
607
|
+
version.
|
|
608
|
+
|
|
609
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_provisioned_concurrency_config.html)
|
|
610
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_provisioned_concurrency_config)
|
|
611
|
+
"""
|
|
612
|
+
|
|
613
|
+
def get_runtime_management_config(
|
|
614
|
+
self, **kwargs: Unpack[GetRuntimeManagementConfigRequestRequestTypeDef]
|
|
615
|
+
) -> GetRuntimeManagementConfigResponseTypeDef:
|
|
616
|
+
"""
|
|
617
|
+
Retrieves the runtime management configuration for a function's version.
|
|
618
|
+
|
|
619
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_runtime_management_config.html)
|
|
620
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_runtime_management_config)
|
|
621
|
+
"""
|
|
622
|
+
|
|
623
|
+
def invoke(
|
|
624
|
+
self, **kwargs: Unpack[InvocationRequestRequestTypeDef]
|
|
625
|
+
) -> InvocationResponseTypeDef:
|
|
626
|
+
"""
|
|
627
|
+
Invokes a Lambda function.
|
|
628
|
+
|
|
629
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/invoke.html)
|
|
630
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#invoke)
|
|
631
|
+
"""
|
|
632
|
+
|
|
633
|
+
def invoke_async(
|
|
634
|
+
self, **kwargs: Unpack[InvokeAsyncRequestRequestTypeDef]
|
|
635
|
+
) -> InvokeAsyncResponseTypeDef:
|
|
636
|
+
"""
|
|
637
|
+
For asynchronous function invocation, use <a>Invoke</a>.
|
|
638
|
+
|
|
639
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/invoke_async.html)
|
|
640
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#invoke_async)
|
|
641
|
+
"""
|
|
642
|
+
|
|
643
|
+
def invoke_with_response_stream(
|
|
644
|
+
self, **kwargs: Unpack[InvokeWithResponseStreamRequestRequestTypeDef]
|
|
645
|
+
) -> InvokeWithResponseStreamResponseTypeDef:
|
|
646
|
+
"""
|
|
647
|
+
Configure your Lambda functions to stream response payloads back to clients.
|
|
648
|
+
|
|
649
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/invoke_with_response_stream.html)
|
|
650
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#invoke_with_response_stream)
|
|
651
|
+
"""
|
|
652
|
+
|
|
653
|
+
def list_aliases(
|
|
654
|
+
self, **kwargs: Unpack[ListAliasesRequestRequestTypeDef]
|
|
655
|
+
) -> ListAliasesResponseTypeDef:
|
|
656
|
+
"""
|
|
657
|
+
Returns a list of <a
|
|
658
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">aliases</a>
|
|
659
|
+
for a Lambda function.
|
|
660
|
+
|
|
661
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_aliases.html)
|
|
662
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_aliases)
|
|
663
|
+
"""
|
|
664
|
+
|
|
665
|
+
def list_code_signing_configs(
|
|
666
|
+
self, **kwargs: Unpack[ListCodeSigningConfigsRequestRequestTypeDef]
|
|
667
|
+
) -> ListCodeSigningConfigsResponseTypeDef:
|
|
668
|
+
"""
|
|
669
|
+
Returns a list of <a
|
|
670
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuring-codesigning.html">code
|
|
671
|
+
signing configurations</a>.
|
|
672
|
+
|
|
673
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_code_signing_configs.html)
|
|
674
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_code_signing_configs)
|
|
675
|
+
"""
|
|
676
|
+
|
|
677
|
+
def list_event_source_mappings(
|
|
678
|
+
self, **kwargs: Unpack[ListEventSourceMappingsRequestRequestTypeDef]
|
|
679
|
+
) -> ListEventSourceMappingsResponseTypeDef:
|
|
680
|
+
"""
|
|
681
|
+
Lists event source mappings.
|
|
682
|
+
|
|
683
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_event_source_mappings.html)
|
|
684
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_event_source_mappings)
|
|
685
|
+
"""
|
|
686
|
+
|
|
687
|
+
def list_function_event_invoke_configs(
|
|
688
|
+
self, **kwargs: Unpack[ListFunctionEventInvokeConfigsRequestRequestTypeDef]
|
|
689
|
+
) -> ListFunctionEventInvokeConfigsResponseTypeDef:
|
|
690
|
+
"""
|
|
691
|
+
Retrieves a list of configurations for asynchronous invocation for a function.
|
|
692
|
+
|
|
693
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_function_event_invoke_configs.html)
|
|
694
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_function_event_invoke_configs)
|
|
695
|
+
"""
|
|
696
|
+
|
|
697
|
+
def list_function_url_configs(
|
|
698
|
+
self, **kwargs: Unpack[ListFunctionUrlConfigsRequestRequestTypeDef]
|
|
699
|
+
) -> ListFunctionUrlConfigsResponseTypeDef:
|
|
700
|
+
"""
|
|
701
|
+
Returns a list of Lambda function URLs for the specified function.
|
|
702
|
+
|
|
703
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_function_url_configs.html)
|
|
704
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_function_url_configs)
|
|
705
|
+
"""
|
|
706
|
+
|
|
707
|
+
def list_functions(
|
|
708
|
+
self, **kwargs: Unpack[ListFunctionsRequestRequestTypeDef]
|
|
709
|
+
) -> ListFunctionsResponseTypeDef:
|
|
710
|
+
"""
|
|
711
|
+
Returns a list of Lambda functions, with the version-specific configuration of
|
|
712
|
+
each.
|
|
713
|
+
|
|
714
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_functions.html)
|
|
715
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_functions)
|
|
716
|
+
"""
|
|
717
|
+
|
|
718
|
+
def list_functions_by_code_signing_config(
|
|
719
|
+
self, **kwargs: Unpack[ListFunctionsByCodeSigningConfigRequestRequestTypeDef]
|
|
720
|
+
) -> ListFunctionsByCodeSigningConfigResponseTypeDef:
|
|
721
|
+
"""
|
|
722
|
+
List the functions that use the specified code signing configuration.
|
|
723
|
+
|
|
724
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_functions_by_code_signing_config.html)
|
|
725
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_functions_by_code_signing_config)
|
|
726
|
+
"""
|
|
727
|
+
|
|
728
|
+
def list_layer_versions(
|
|
729
|
+
self, **kwargs: Unpack[ListLayerVersionsRequestRequestTypeDef]
|
|
730
|
+
) -> ListLayerVersionsResponseTypeDef:
|
|
731
|
+
"""
|
|
732
|
+
Lists the versions of an <a
|
|
733
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
734
|
+
layer</a>.
|
|
735
|
+
|
|
736
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_layer_versions.html)
|
|
737
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_layer_versions)
|
|
738
|
+
"""
|
|
739
|
+
|
|
740
|
+
def list_layers(
|
|
741
|
+
self, **kwargs: Unpack[ListLayersRequestRequestTypeDef]
|
|
742
|
+
) -> ListLayersResponseTypeDef:
|
|
743
|
+
"""
|
|
744
|
+
Lists <a
|
|
745
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-layers.html">Lambda
|
|
746
|
+
layers</a> and shows information about the latest version of each.
|
|
747
|
+
|
|
748
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_layers.html)
|
|
749
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_layers)
|
|
750
|
+
"""
|
|
751
|
+
|
|
752
|
+
def list_provisioned_concurrency_configs(
|
|
753
|
+
self, **kwargs: Unpack[ListProvisionedConcurrencyConfigsRequestRequestTypeDef]
|
|
754
|
+
) -> ListProvisionedConcurrencyConfigsResponseTypeDef:
|
|
755
|
+
"""
|
|
756
|
+
Retrieves a list of provisioned concurrency configurations for a function.
|
|
757
|
+
|
|
758
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_provisioned_concurrency_configs.html)
|
|
759
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_provisioned_concurrency_configs)
|
|
760
|
+
"""
|
|
761
|
+
|
|
762
|
+
def list_tags(self, **kwargs: Unpack[ListTagsRequestRequestTypeDef]) -> ListTagsResponseTypeDef:
|
|
763
|
+
"""
|
|
764
|
+
Returns a function, event source mapping, or code signing configuration's <a
|
|
765
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>.
|
|
766
|
+
|
|
767
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_tags.html)
|
|
768
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_tags)
|
|
769
|
+
"""
|
|
770
|
+
|
|
771
|
+
def list_versions_by_function(
|
|
772
|
+
self, **kwargs: Unpack[ListVersionsByFunctionRequestRequestTypeDef]
|
|
773
|
+
) -> ListVersionsByFunctionResponseTypeDef:
|
|
774
|
+
"""
|
|
775
|
+
Returns a list of <a
|
|
776
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">versions</a>,
|
|
777
|
+
with the version-specific configuration of each.
|
|
778
|
+
|
|
779
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/list_versions_by_function.html)
|
|
780
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#list_versions_by_function)
|
|
781
|
+
"""
|
|
782
|
+
|
|
783
|
+
def publish_layer_version(
|
|
784
|
+
self, **kwargs: Unpack[PublishLayerVersionRequestRequestTypeDef]
|
|
785
|
+
) -> PublishLayerVersionResponseTypeDef:
|
|
786
|
+
"""
|
|
787
|
+
Creates an <a
|
|
788
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
789
|
+
layer</a> from a ZIP archive.
|
|
790
|
+
|
|
791
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/publish_layer_version.html)
|
|
792
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#publish_layer_version)
|
|
793
|
+
"""
|
|
794
|
+
|
|
795
|
+
def publish_version(
|
|
796
|
+
self, **kwargs: Unpack[PublishVersionRequestRequestTypeDef]
|
|
797
|
+
) -> FunctionConfigurationResponseTypeDef:
|
|
798
|
+
"""
|
|
799
|
+
Creates a <a
|
|
800
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">version</a>
|
|
801
|
+
from the current code and configuration of a function.
|
|
802
|
+
|
|
803
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/publish_version.html)
|
|
804
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#publish_version)
|
|
805
|
+
"""
|
|
806
|
+
|
|
807
|
+
def put_function_code_signing_config(
|
|
808
|
+
self, **kwargs: Unpack[PutFunctionCodeSigningConfigRequestRequestTypeDef]
|
|
809
|
+
) -> PutFunctionCodeSigningConfigResponseTypeDef:
|
|
810
|
+
"""
|
|
811
|
+
Update the code signing configuration for the function.
|
|
812
|
+
|
|
813
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_function_code_signing_config.html)
|
|
814
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_function_code_signing_config)
|
|
815
|
+
"""
|
|
816
|
+
|
|
817
|
+
def put_function_concurrency(
|
|
818
|
+
self, **kwargs: Unpack[PutFunctionConcurrencyRequestRequestTypeDef]
|
|
819
|
+
) -> ConcurrencyResponseTypeDef:
|
|
820
|
+
"""
|
|
821
|
+
Sets the maximum number of simultaneous executions for a function, and reserves
|
|
822
|
+
capacity for that concurrency level.
|
|
823
|
+
|
|
824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_function_concurrency.html)
|
|
825
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_function_concurrency)
|
|
826
|
+
"""
|
|
827
|
+
|
|
828
|
+
def put_function_event_invoke_config(
|
|
829
|
+
self, **kwargs: Unpack[PutFunctionEventInvokeConfigRequestRequestTypeDef]
|
|
830
|
+
) -> FunctionEventInvokeConfigResponseTypeDef:
|
|
831
|
+
"""
|
|
832
|
+
Configures options for <a
|
|
833
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html">asynchronous
|
|
834
|
+
invocation</a> on a function, version, or alias.
|
|
835
|
+
|
|
836
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_function_event_invoke_config.html)
|
|
837
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_function_event_invoke_config)
|
|
838
|
+
"""
|
|
839
|
+
|
|
840
|
+
def put_function_recursion_config(
|
|
841
|
+
self, **kwargs: Unpack[PutFunctionRecursionConfigRequestRequestTypeDef]
|
|
842
|
+
) -> PutFunctionRecursionConfigResponseTypeDef:
|
|
843
|
+
"""
|
|
844
|
+
Sets your function's <a
|
|
845
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-recursion.html">recursive
|
|
846
|
+
loop detection</a> configuration.
|
|
847
|
+
|
|
848
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_function_recursion_config.html)
|
|
849
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_function_recursion_config)
|
|
850
|
+
"""
|
|
851
|
+
|
|
852
|
+
def put_provisioned_concurrency_config(
|
|
853
|
+
self, **kwargs: Unpack[PutProvisionedConcurrencyConfigRequestRequestTypeDef]
|
|
854
|
+
) -> PutProvisionedConcurrencyConfigResponseTypeDef:
|
|
855
|
+
"""
|
|
856
|
+
Adds a provisioned concurrency configuration to a function's alias or version.
|
|
857
|
+
|
|
858
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_provisioned_concurrency_config.html)
|
|
859
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_provisioned_concurrency_config)
|
|
860
|
+
"""
|
|
861
|
+
|
|
862
|
+
def put_runtime_management_config(
|
|
863
|
+
self, **kwargs: Unpack[PutRuntimeManagementConfigRequestRequestTypeDef]
|
|
864
|
+
) -> PutRuntimeManagementConfigResponseTypeDef:
|
|
865
|
+
"""
|
|
866
|
+
Sets the runtime management configuration for a function's version.
|
|
867
|
+
|
|
868
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/put_runtime_management_config.html)
|
|
869
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#put_runtime_management_config)
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
def remove_layer_version_permission(
|
|
873
|
+
self, **kwargs: Unpack[RemoveLayerVersionPermissionRequestRequestTypeDef]
|
|
874
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
875
|
+
"""
|
|
876
|
+
Removes a statement from the permissions policy for a version of an <a
|
|
877
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
878
|
+
layer</a>.
|
|
879
|
+
|
|
880
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/remove_layer_version_permission.html)
|
|
881
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#remove_layer_version_permission)
|
|
882
|
+
"""
|
|
883
|
+
|
|
884
|
+
def remove_permission(
|
|
885
|
+
self, **kwargs: Unpack[RemovePermissionRequestRequestTypeDef]
|
|
886
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
887
|
+
"""
|
|
888
|
+
Revokes function-use permission from an Amazon Web Services service or another
|
|
889
|
+
Amazon Web Services account.
|
|
890
|
+
|
|
891
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/remove_permission.html)
|
|
892
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#remove_permission)
|
|
893
|
+
"""
|
|
894
|
+
|
|
895
|
+
def tag_resource(
|
|
896
|
+
self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]
|
|
897
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
898
|
+
"""
|
|
899
|
+
Adds <a
|
|
900
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to a
|
|
901
|
+
function, event source mapping, or code signing configuration.
|
|
902
|
+
|
|
903
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/tag_resource.html)
|
|
904
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#tag_resource)
|
|
905
|
+
"""
|
|
906
|
+
|
|
907
|
+
def untag_resource(
|
|
908
|
+
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
909
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
910
|
+
"""
|
|
911
|
+
Removes <a
|
|
912
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> from
|
|
913
|
+
a function, event source mapping, or code signing configuration.
|
|
914
|
+
|
|
915
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/untag_resource.html)
|
|
916
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#untag_resource)
|
|
917
|
+
"""
|
|
918
|
+
|
|
919
|
+
def update_alias(
|
|
920
|
+
self, **kwargs: Unpack[UpdateAliasRequestRequestTypeDef]
|
|
921
|
+
) -> AliasConfigurationResponseTypeDef:
|
|
922
|
+
"""
|
|
923
|
+
Updates the configuration of a Lambda function <a
|
|
924
|
+
href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">alias</a>.
|
|
925
|
+
|
|
926
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_alias.html)
|
|
927
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_alias)
|
|
928
|
+
"""
|
|
929
|
+
|
|
930
|
+
def update_code_signing_config(
|
|
931
|
+
self, **kwargs: Unpack[UpdateCodeSigningConfigRequestRequestTypeDef]
|
|
932
|
+
) -> UpdateCodeSigningConfigResponseTypeDef:
|
|
933
|
+
"""
|
|
934
|
+
Update the code signing configuration.
|
|
935
|
+
|
|
936
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_code_signing_config.html)
|
|
937
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_code_signing_config)
|
|
938
|
+
"""
|
|
939
|
+
|
|
940
|
+
def update_event_source_mapping(
|
|
941
|
+
self, **kwargs: Unpack[UpdateEventSourceMappingRequestRequestTypeDef]
|
|
942
|
+
) -> EventSourceMappingConfigurationResponseTypeDef:
|
|
943
|
+
"""
|
|
944
|
+
Updates an event source mapping.
|
|
945
|
+
|
|
946
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_event_source_mapping.html)
|
|
947
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_event_source_mapping)
|
|
948
|
+
"""
|
|
949
|
+
|
|
950
|
+
def update_function_code(
|
|
951
|
+
self, **kwargs: Unpack[UpdateFunctionCodeRequestRequestTypeDef]
|
|
952
|
+
) -> FunctionConfigurationResponseTypeDef:
|
|
953
|
+
"""
|
|
954
|
+
Updates a Lambda function's code.
|
|
955
|
+
|
|
956
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_function_code.html)
|
|
957
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_function_code)
|
|
958
|
+
"""
|
|
959
|
+
|
|
960
|
+
def update_function_configuration(
|
|
961
|
+
self, **kwargs: Unpack[UpdateFunctionConfigurationRequestRequestTypeDef]
|
|
962
|
+
) -> FunctionConfigurationResponseTypeDef:
|
|
963
|
+
"""
|
|
964
|
+
Modify the version-specific settings of a Lambda function.
|
|
965
|
+
|
|
966
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_function_configuration.html)
|
|
967
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_function_configuration)
|
|
968
|
+
"""
|
|
969
|
+
|
|
970
|
+
def update_function_event_invoke_config(
|
|
971
|
+
self, **kwargs: Unpack[UpdateFunctionEventInvokeConfigRequestRequestTypeDef]
|
|
972
|
+
) -> FunctionEventInvokeConfigResponseTypeDef:
|
|
973
|
+
"""
|
|
974
|
+
Updates the configuration for asynchronous invocation for a function, version,
|
|
975
|
+
or alias.
|
|
976
|
+
|
|
977
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_function_event_invoke_config.html)
|
|
978
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_function_event_invoke_config)
|
|
979
|
+
"""
|
|
980
|
+
|
|
981
|
+
def update_function_url_config(
|
|
982
|
+
self, **kwargs: Unpack[UpdateFunctionUrlConfigRequestRequestTypeDef]
|
|
983
|
+
) -> UpdateFunctionUrlConfigResponseTypeDef:
|
|
984
|
+
"""
|
|
985
|
+
Updates the configuration for a Lambda function URL.
|
|
986
|
+
|
|
987
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/update_function_url_config.html)
|
|
988
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#update_function_url_config)
|
|
989
|
+
"""
|
|
990
|
+
|
|
991
|
+
@overload
|
|
992
|
+
def get_paginator(self, operation_name: Literal["list_aliases"]) -> ListAliasesPaginator:
|
|
993
|
+
"""
|
|
994
|
+
Create a paginator for an operation.
|
|
995
|
+
|
|
996
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
997
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
998
|
+
"""
|
|
999
|
+
|
|
1000
|
+
@overload
|
|
1001
|
+
def get_paginator(
|
|
1002
|
+
self, operation_name: Literal["list_code_signing_configs"]
|
|
1003
|
+
) -> ListCodeSigningConfigsPaginator:
|
|
1004
|
+
"""
|
|
1005
|
+
Create a paginator for an operation.
|
|
1006
|
+
|
|
1007
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1008
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1009
|
+
"""
|
|
1010
|
+
|
|
1011
|
+
@overload
|
|
1012
|
+
def get_paginator(
|
|
1013
|
+
self, operation_name: Literal["list_event_source_mappings"]
|
|
1014
|
+
) -> ListEventSourceMappingsPaginator:
|
|
1015
|
+
"""
|
|
1016
|
+
Create a paginator for an operation.
|
|
1017
|
+
|
|
1018
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1019
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1020
|
+
"""
|
|
1021
|
+
|
|
1022
|
+
@overload
|
|
1023
|
+
def get_paginator(
|
|
1024
|
+
self, operation_name: Literal["list_function_event_invoke_configs"]
|
|
1025
|
+
) -> ListFunctionEventInvokeConfigsPaginator:
|
|
1026
|
+
"""
|
|
1027
|
+
Create a paginator for an operation.
|
|
1028
|
+
|
|
1029
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1030
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1031
|
+
"""
|
|
1032
|
+
|
|
1033
|
+
@overload
|
|
1034
|
+
def get_paginator(
|
|
1035
|
+
self, operation_name: Literal["list_function_url_configs"]
|
|
1036
|
+
) -> ListFunctionUrlConfigsPaginator:
|
|
1037
|
+
"""
|
|
1038
|
+
Create a paginator for an operation.
|
|
1039
|
+
|
|
1040
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1041
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1042
|
+
"""
|
|
1043
|
+
|
|
1044
|
+
@overload
|
|
1045
|
+
def get_paginator(
|
|
1046
|
+
self, operation_name: Literal["list_functions_by_code_signing_config"]
|
|
1047
|
+
) -> ListFunctionsByCodeSigningConfigPaginator:
|
|
1048
|
+
"""
|
|
1049
|
+
Create a paginator for an operation.
|
|
1050
|
+
|
|
1051
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1052
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1053
|
+
"""
|
|
1054
|
+
|
|
1055
|
+
@overload
|
|
1056
|
+
def get_paginator(self, operation_name: Literal["list_functions"]) -> ListFunctionsPaginator:
|
|
1057
|
+
"""
|
|
1058
|
+
Create a paginator for an operation.
|
|
1059
|
+
|
|
1060
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1061
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1062
|
+
"""
|
|
1063
|
+
|
|
1064
|
+
@overload
|
|
1065
|
+
def get_paginator(
|
|
1066
|
+
self, operation_name: Literal["list_layer_versions"]
|
|
1067
|
+
) -> ListLayerVersionsPaginator:
|
|
1068
|
+
"""
|
|
1069
|
+
Create a paginator for an operation.
|
|
1070
|
+
|
|
1071
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1072
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1073
|
+
"""
|
|
1074
|
+
|
|
1075
|
+
@overload
|
|
1076
|
+
def get_paginator(self, operation_name: Literal["list_layers"]) -> ListLayersPaginator:
|
|
1077
|
+
"""
|
|
1078
|
+
Create a paginator for an operation.
|
|
1079
|
+
|
|
1080
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1081
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1082
|
+
"""
|
|
1083
|
+
|
|
1084
|
+
@overload
|
|
1085
|
+
def get_paginator(
|
|
1086
|
+
self, operation_name: Literal["list_provisioned_concurrency_configs"]
|
|
1087
|
+
) -> ListProvisionedConcurrencyConfigsPaginator:
|
|
1088
|
+
"""
|
|
1089
|
+
Create a paginator for an operation.
|
|
1090
|
+
|
|
1091
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1092
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1093
|
+
"""
|
|
1094
|
+
|
|
1095
|
+
@overload
|
|
1096
|
+
def get_paginator(
|
|
1097
|
+
self, operation_name: Literal["list_versions_by_function"]
|
|
1098
|
+
) -> ListVersionsByFunctionPaginator:
|
|
1099
|
+
"""
|
|
1100
|
+
Create a paginator for an operation.
|
|
1101
|
+
|
|
1102
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_paginator.html)
|
|
1103
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_paginator)
|
|
1104
|
+
"""
|
|
1105
|
+
|
|
1106
|
+
@overload
|
|
1107
|
+
def get_waiter(self, waiter_name: Literal["function_active_v2"]) -> FunctionActiveV2Waiter:
|
|
1108
|
+
"""
|
|
1109
|
+
Returns an object that can wait for some condition.
|
|
1110
|
+
|
|
1111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1112
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1113
|
+
"""
|
|
1114
|
+
|
|
1115
|
+
@overload
|
|
1116
|
+
def get_waiter(self, waiter_name: Literal["function_active"]) -> FunctionActiveWaiter:
|
|
1117
|
+
"""
|
|
1118
|
+
Returns an object that can wait for some condition.
|
|
1119
|
+
|
|
1120
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1121
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1122
|
+
"""
|
|
1123
|
+
|
|
1124
|
+
@overload
|
|
1125
|
+
def get_waiter(self, waiter_name: Literal["function_exists"]) -> FunctionExistsWaiter:
|
|
1126
|
+
"""
|
|
1127
|
+
Returns an object that can wait for some condition.
|
|
1128
|
+
|
|
1129
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1130
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1131
|
+
"""
|
|
1132
|
+
|
|
1133
|
+
@overload
|
|
1134
|
+
def get_waiter(self, waiter_name: Literal["function_updated_v2"]) -> FunctionUpdatedV2Waiter:
|
|
1135
|
+
"""
|
|
1136
|
+
Returns an object that can wait for some condition.
|
|
1137
|
+
|
|
1138
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1139
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1140
|
+
"""
|
|
1141
|
+
|
|
1142
|
+
@overload
|
|
1143
|
+
def get_waiter(self, waiter_name: Literal["function_updated"]) -> FunctionUpdatedWaiter:
|
|
1144
|
+
"""
|
|
1145
|
+
Returns an object that can wait for some condition.
|
|
1146
|
+
|
|
1147
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1148
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1149
|
+
"""
|
|
1150
|
+
|
|
1151
|
+
@overload
|
|
1152
|
+
def get_waiter(
|
|
1153
|
+
self, waiter_name: Literal["published_version_active"]
|
|
1154
|
+
) -> PublishedVersionActiveWaiter:
|
|
1155
|
+
"""
|
|
1156
|
+
Returns an object that can wait for some condition.
|
|
1157
|
+
|
|
1158
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/get_waiter.html)
|
|
1159
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/client/#get_waiter)
|
|
1160
|
+
"""
|