types-boto3-lambda 1.36.0__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 +43 -0
- types_boto3_lambda/client.py +1176 -0
- types_boto3_lambda/client.pyi +1173 -0
- types_boto3_lambda/literals.py +696 -0
- types_boto3_lambda/literals.pyi +694 -0
- types_boto3_lambda/paginator.py +332 -0
- types_boto3_lambda/paginator.pyi +298 -0
- types_boto3_lambda/py.typed +0 -0
- types_boto3_lambda/type_defs.py +1640 -0
- types_boto3_lambda/type_defs.pyi +1447 -0
- types_boto3_lambda/version.py +7 -0
- types_boto3_lambda/waiter.py +146 -0
- types_boto3_lambda/waiter.pyi +133 -0
- types_boto3_lambda-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_lambda-1.36.0.dist-info/METADATA +551 -0
- types_boto3_lambda-1.36.0.dist-info/RECORD +20 -0
- types_boto3_lambda-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_lambda-1.36.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1640 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for lambda service type definitions.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_lambda/type_defs/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from types_boto3_lambda.type_defs import AccountLimitTypeDef
|
|
10
|
+
|
|
11
|
+
data: AccountLimitTypeDef = ...
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import sys
|
|
20
|
+
from datetime import datetime
|
|
21
|
+
from typing import IO, Any, Union
|
|
22
|
+
|
|
23
|
+
from botocore.eventstream import EventStream
|
|
24
|
+
from botocore.response import StreamingBody
|
|
25
|
+
|
|
26
|
+
from .literals import (
|
|
27
|
+
ApplicationLogLevelType,
|
|
28
|
+
ArchitectureType,
|
|
29
|
+
CodeSigningPolicyType,
|
|
30
|
+
EventSourcePositionType,
|
|
31
|
+
FullDocumentType,
|
|
32
|
+
FunctionUrlAuthTypeType,
|
|
33
|
+
InvocationTypeType,
|
|
34
|
+
InvokeModeType,
|
|
35
|
+
LastUpdateStatusReasonCodeType,
|
|
36
|
+
LastUpdateStatusType,
|
|
37
|
+
LogFormatType,
|
|
38
|
+
LogTypeType,
|
|
39
|
+
PackageTypeType,
|
|
40
|
+
ProvisionedConcurrencyStatusEnumType,
|
|
41
|
+
RecursiveLoopType,
|
|
42
|
+
ResponseStreamingInvocationTypeType,
|
|
43
|
+
RuntimeType,
|
|
44
|
+
SnapStartApplyOnType,
|
|
45
|
+
SnapStartOptimizationStatusType,
|
|
46
|
+
SourceAccessTypeType,
|
|
47
|
+
StateReasonCodeType,
|
|
48
|
+
StateType,
|
|
49
|
+
SystemLogLevelType,
|
|
50
|
+
TracingModeType,
|
|
51
|
+
UpdateRuntimeOnType,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
if sys.version_info >= (3, 9):
|
|
55
|
+
from builtins import dict as Dict
|
|
56
|
+
from builtins import list as List
|
|
57
|
+
from collections.abc import Mapping, Sequence
|
|
58
|
+
else:
|
|
59
|
+
from typing import Dict, List, Mapping, Sequence
|
|
60
|
+
if sys.version_info >= (3, 12):
|
|
61
|
+
from typing import Literal, NotRequired, TypedDict
|
|
62
|
+
else:
|
|
63
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
__all__ = (
|
|
67
|
+
"AccountLimitTypeDef",
|
|
68
|
+
"AccountUsageTypeDef",
|
|
69
|
+
"AddLayerVersionPermissionRequestRequestTypeDef",
|
|
70
|
+
"AddLayerVersionPermissionResponseTypeDef",
|
|
71
|
+
"AddPermissionRequestRequestTypeDef",
|
|
72
|
+
"AddPermissionResponseTypeDef",
|
|
73
|
+
"AliasConfigurationResponseTypeDef",
|
|
74
|
+
"AliasConfigurationTypeDef",
|
|
75
|
+
"AliasRoutingConfigurationOutputTypeDef",
|
|
76
|
+
"AliasRoutingConfigurationTypeDef",
|
|
77
|
+
"AllowedPublishersOutputTypeDef",
|
|
78
|
+
"AllowedPublishersTypeDef",
|
|
79
|
+
"AmazonManagedKafkaEventSourceConfigTypeDef",
|
|
80
|
+
"BlobTypeDef",
|
|
81
|
+
"CodeSigningConfigTypeDef",
|
|
82
|
+
"CodeSigningPoliciesTypeDef",
|
|
83
|
+
"ConcurrencyResponseTypeDef",
|
|
84
|
+
"ConcurrencyTypeDef",
|
|
85
|
+
"CorsOutputTypeDef",
|
|
86
|
+
"CorsTypeDef",
|
|
87
|
+
"CreateAliasRequestRequestTypeDef",
|
|
88
|
+
"CreateCodeSigningConfigRequestRequestTypeDef",
|
|
89
|
+
"CreateCodeSigningConfigResponseTypeDef",
|
|
90
|
+
"CreateEventSourceMappingRequestRequestTypeDef",
|
|
91
|
+
"CreateFunctionRequestRequestTypeDef",
|
|
92
|
+
"CreateFunctionUrlConfigRequestRequestTypeDef",
|
|
93
|
+
"CreateFunctionUrlConfigResponseTypeDef",
|
|
94
|
+
"DeadLetterConfigTypeDef",
|
|
95
|
+
"DeleteAliasRequestRequestTypeDef",
|
|
96
|
+
"DeleteCodeSigningConfigRequestRequestTypeDef",
|
|
97
|
+
"DeleteEventSourceMappingRequestRequestTypeDef",
|
|
98
|
+
"DeleteFunctionCodeSigningConfigRequestRequestTypeDef",
|
|
99
|
+
"DeleteFunctionConcurrencyRequestRequestTypeDef",
|
|
100
|
+
"DeleteFunctionEventInvokeConfigRequestRequestTypeDef",
|
|
101
|
+
"DeleteFunctionRequestRequestTypeDef",
|
|
102
|
+
"DeleteFunctionUrlConfigRequestRequestTypeDef",
|
|
103
|
+
"DeleteLayerVersionRequestRequestTypeDef",
|
|
104
|
+
"DeleteProvisionedConcurrencyConfigRequestRequestTypeDef",
|
|
105
|
+
"DestinationConfigTypeDef",
|
|
106
|
+
"DocumentDBEventSourceConfigTypeDef",
|
|
107
|
+
"EmptyResponseMetadataTypeDef",
|
|
108
|
+
"EnvironmentErrorTypeDef",
|
|
109
|
+
"EnvironmentResponseTypeDef",
|
|
110
|
+
"EnvironmentTypeDef",
|
|
111
|
+
"EphemeralStorageTypeDef",
|
|
112
|
+
"EventSourceMappingConfigurationResponseTypeDef",
|
|
113
|
+
"EventSourceMappingConfigurationTypeDef",
|
|
114
|
+
"EventSourceMappingMetricsConfigOutputTypeDef",
|
|
115
|
+
"EventSourceMappingMetricsConfigTypeDef",
|
|
116
|
+
"FileSystemConfigTypeDef",
|
|
117
|
+
"FilterCriteriaErrorTypeDef",
|
|
118
|
+
"FilterCriteriaOutputTypeDef",
|
|
119
|
+
"FilterCriteriaTypeDef",
|
|
120
|
+
"FilterTypeDef",
|
|
121
|
+
"FunctionCodeLocationTypeDef",
|
|
122
|
+
"FunctionCodeTypeDef",
|
|
123
|
+
"FunctionConfigurationResponseTypeDef",
|
|
124
|
+
"FunctionConfigurationTypeDef",
|
|
125
|
+
"FunctionEventInvokeConfigResponseTypeDef",
|
|
126
|
+
"FunctionEventInvokeConfigTypeDef",
|
|
127
|
+
"FunctionUrlConfigTypeDef",
|
|
128
|
+
"GetAccountSettingsResponseTypeDef",
|
|
129
|
+
"GetAliasRequestRequestTypeDef",
|
|
130
|
+
"GetCodeSigningConfigRequestRequestTypeDef",
|
|
131
|
+
"GetCodeSigningConfigResponseTypeDef",
|
|
132
|
+
"GetEventSourceMappingRequestRequestTypeDef",
|
|
133
|
+
"GetFunctionCodeSigningConfigRequestRequestTypeDef",
|
|
134
|
+
"GetFunctionCodeSigningConfigResponseTypeDef",
|
|
135
|
+
"GetFunctionConcurrencyRequestRequestTypeDef",
|
|
136
|
+
"GetFunctionConcurrencyResponseTypeDef",
|
|
137
|
+
"GetFunctionConfigurationRequestRequestTypeDef",
|
|
138
|
+
"GetFunctionConfigurationRequestWaitTypeDef",
|
|
139
|
+
"GetFunctionEventInvokeConfigRequestRequestTypeDef",
|
|
140
|
+
"GetFunctionRecursionConfigRequestRequestTypeDef",
|
|
141
|
+
"GetFunctionRecursionConfigResponseTypeDef",
|
|
142
|
+
"GetFunctionRequestRequestTypeDef",
|
|
143
|
+
"GetFunctionRequestWaitTypeDef",
|
|
144
|
+
"GetFunctionResponseTypeDef",
|
|
145
|
+
"GetFunctionUrlConfigRequestRequestTypeDef",
|
|
146
|
+
"GetFunctionUrlConfigResponseTypeDef",
|
|
147
|
+
"GetLayerVersionByArnRequestRequestTypeDef",
|
|
148
|
+
"GetLayerVersionPolicyRequestRequestTypeDef",
|
|
149
|
+
"GetLayerVersionPolicyResponseTypeDef",
|
|
150
|
+
"GetLayerVersionRequestRequestTypeDef",
|
|
151
|
+
"GetLayerVersionResponseTypeDef",
|
|
152
|
+
"GetPolicyRequestRequestTypeDef",
|
|
153
|
+
"GetPolicyResponseTypeDef",
|
|
154
|
+
"GetProvisionedConcurrencyConfigRequestRequestTypeDef",
|
|
155
|
+
"GetProvisionedConcurrencyConfigResponseTypeDef",
|
|
156
|
+
"GetRuntimeManagementConfigRequestRequestTypeDef",
|
|
157
|
+
"GetRuntimeManagementConfigResponseTypeDef",
|
|
158
|
+
"ImageConfigErrorTypeDef",
|
|
159
|
+
"ImageConfigOutputTypeDef",
|
|
160
|
+
"ImageConfigResponseTypeDef",
|
|
161
|
+
"ImageConfigTypeDef",
|
|
162
|
+
"InvocationRequestRequestTypeDef",
|
|
163
|
+
"InvocationResponseTypeDef",
|
|
164
|
+
"InvokeAsyncRequestRequestTypeDef",
|
|
165
|
+
"InvokeAsyncResponseTypeDef",
|
|
166
|
+
"InvokeResponseStreamUpdateTypeDef",
|
|
167
|
+
"InvokeWithResponseStreamCompleteEventTypeDef",
|
|
168
|
+
"InvokeWithResponseStreamRequestRequestTypeDef",
|
|
169
|
+
"InvokeWithResponseStreamResponseEventTypeDef",
|
|
170
|
+
"InvokeWithResponseStreamResponseTypeDef",
|
|
171
|
+
"LayerTypeDef",
|
|
172
|
+
"LayerVersionContentInputTypeDef",
|
|
173
|
+
"LayerVersionContentOutputTypeDef",
|
|
174
|
+
"LayerVersionsListItemTypeDef",
|
|
175
|
+
"LayersListItemTypeDef",
|
|
176
|
+
"ListAliasesRequestPaginateTypeDef",
|
|
177
|
+
"ListAliasesRequestRequestTypeDef",
|
|
178
|
+
"ListAliasesResponseTypeDef",
|
|
179
|
+
"ListCodeSigningConfigsRequestPaginateTypeDef",
|
|
180
|
+
"ListCodeSigningConfigsRequestRequestTypeDef",
|
|
181
|
+
"ListCodeSigningConfigsResponseTypeDef",
|
|
182
|
+
"ListEventSourceMappingsRequestPaginateTypeDef",
|
|
183
|
+
"ListEventSourceMappingsRequestRequestTypeDef",
|
|
184
|
+
"ListEventSourceMappingsResponseTypeDef",
|
|
185
|
+
"ListFunctionEventInvokeConfigsRequestPaginateTypeDef",
|
|
186
|
+
"ListFunctionEventInvokeConfigsRequestRequestTypeDef",
|
|
187
|
+
"ListFunctionEventInvokeConfigsResponseTypeDef",
|
|
188
|
+
"ListFunctionUrlConfigsRequestPaginateTypeDef",
|
|
189
|
+
"ListFunctionUrlConfigsRequestRequestTypeDef",
|
|
190
|
+
"ListFunctionUrlConfigsResponseTypeDef",
|
|
191
|
+
"ListFunctionsByCodeSigningConfigRequestPaginateTypeDef",
|
|
192
|
+
"ListFunctionsByCodeSigningConfigRequestRequestTypeDef",
|
|
193
|
+
"ListFunctionsByCodeSigningConfigResponseTypeDef",
|
|
194
|
+
"ListFunctionsRequestPaginateTypeDef",
|
|
195
|
+
"ListFunctionsRequestRequestTypeDef",
|
|
196
|
+
"ListFunctionsResponseTypeDef",
|
|
197
|
+
"ListLayerVersionsRequestPaginateTypeDef",
|
|
198
|
+
"ListLayerVersionsRequestRequestTypeDef",
|
|
199
|
+
"ListLayerVersionsResponseTypeDef",
|
|
200
|
+
"ListLayersRequestPaginateTypeDef",
|
|
201
|
+
"ListLayersRequestRequestTypeDef",
|
|
202
|
+
"ListLayersResponseTypeDef",
|
|
203
|
+
"ListProvisionedConcurrencyConfigsRequestPaginateTypeDef",
|
|
204
|
+
"ListProvisionedConcurrencyConfigsRequestRequestTypeDef",
|
|
205
|
+
"ListProvisionedConcurrencyConfigsResponseTypeDef",
|
|
206
|
+
"ListTagsRequestRequestTypeDef",
|
|
207
|
+
"ListTagsResponseTypeDef",
|
|
208
|
+
"ListVersionsByFunctionRequestPaginateTypeDef",
|
|
209
|
+
"ListVersionsByFunctionRequestRequestTypeDef",
|
|
210
|
+
"ListVersionsByFunctionResponseTypeDef",
|
|
211
|
+
"LoggingConfigTypeDef",
|
|
212
|
+
"OnFailureTypeDef",
|
|
213
|
+
"OnSuccessTypeDef",
|
|
214
|
+
"PaginatorConfigTypeDef",
|
|
215
|
+
"ProvisionedConcurrencyConfigListItemTypeDef",
|
|
216
|
+
"ProvisionedPollerConfigTypeDef",
|
|
217
|
+
"PublishLayerVersionRequestRequestTypeDef",
|
|
218
|
+
"PublishLayerVersionResponseTypeDef",
|
|
219
|
+
"PublishVersionRequestRequestTypeDef",
|
|
220
|
+
"PutFunctionCodeSigningConfigRequestRequestTypeDef",
|
|
221
|
+
"PutFunctionCodeSigningConfigResponseTypeDef",
|
|
222
|
+
"PutFunctionConcurrencyRequestRequestTypeDef",
|
|
223
|
+
"PutFunctionEventInvokeConfigRequestRequestTypeDef",
|
|
224
|
+
"PutFunctionRecursionConfigRequestRequestTypeDef",
|
|
225
|
+
"PutFunctionRecursionConfigResponseTypeDef",
|
|
226
|
+
"PutProvisionedConcurrencyConfigRequestRequestTypeDef",
|
|
227
|
+
"PutProvisionedConcurrencyConfigResponseTypeDef",
|
|
228
|
+
"PutRuntimeManagementConfigRequestRequestTypeDef",
|
|
229
|
+
"PutRuntimeManagementConfigResponseTypeDef",
|
|
230
|
+
"RemoveLayerVersionPermissionRequestRequestTypeDef",
|
|
231
|
+
"RemovePermissionRequestRequestTypeDef",
|
|
232
|
+
"ResponseMetadataTypeDef",
|
|
233
|
+
"RuntimeVersionConfigTypeDef",
|
|
234
|
+
"RuntimeVersionErrorTypeDef",
|
|
235
|
+
"ScalingConfigTypeDef",
|
|
236
|
+
"SelfManagedEventSourceOutputTypeDef",
|
|
237
|
+
"SelfManagedEventSourceTypeDef",
|
|
238
|
+
"SelfManagedKafkaEventSourceConfigTypeDef",
|
|
239
|
+
"SnapStartResponseTypeDef",
|
|
240
|
+
"SnapStartTypeDef",
|
|
241
|
+
"SourceAccessConfigurationTypeDef",
|
|
242
|
+
"TagResourceRequestRequestTypeDef",
|
|
243
|
+
"TagsErrorTypeDef",
|
|
244
|
+
"TimestampTypeDef",
|
|
245
|
+
"TracingConfigResponseTypeDef",
|
|
246
|
+
"TracingConfigTypeDef",
|
|
247
|
+
"UntagResourceRequestRequestTypeDef",
|
|
248
|
+
"UpdateAliasRequestRequestTypeDef",
|
|
249
|
+
"UpdateCodeSigningConfigRequestRequestTypeDef",
|
|
250
|
+
"UpdateCodeSigningConfigResponseTypeDef",
|
|
251
|
+
"UpdateEventSourceMappingRequestRequestTypeDef",
|
|
252
|
+
"UpdateFunctionCodeRequestRequestTypeDef",
|
|
253
|
+
"UpdateFunctionConfigurationRequestRequestTypeDef",
|
|
254
|
+
"UpdateFunctionEventInvokeConfigRequestRequestTypeDef",
|
|
255
|
+
"UpdateFunctionUrlConfigRequestRequestTypeDef",
|
|
256
|
+
"UpdateFunctionUrlConfigResponseTypeDef",
|
|
257
|
+
"VpcConfigResponseTypeDef",
|
|
258
|
+
"VpcConfigTypeDef",
|
|
259
|
+
"WaiterConfigTypeDef",
|
|
260
|
+
)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
class AccountLimitTypeDef(TypedDict):
|
|
264
|
+
TotalCodeSize: NotRequired[int]
|
|
265
|
+
CodeSizeUnzipped: NotRequired[int]
|
|
266
|
+
CodeSizeZipped: NotRequired[int]
|
|
267
|
+
ConcurrentExecutions: NotRequired[int]
|
|
268
|
+
UnreservedConcurrentExecutions: NotRequired[int]
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
class AccountUsageTypeDef(TypedDict):
|
|
272
|
+
TotalCodeSize: NotRequired[int]
|
|
273
|
+
FunctionCount: NotRequired[int]
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
class AddLayerVersionPermissionRequestRequestTypeDef(TypedDict):
|
|
277
|
+
LayerName: str
|
|
278
|
+
VersionNumber: int
|
|
279
|
+
StatementId: str
|
|
280
|
+
Action: str
|
|
281
|
+
Principal: str
|
|
282
|
+
OrganizationId: NotRequired[str]
|
|
283
|
+
RevisionId: NotRequired[str]
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
287
|
+
RequestId: str
|
|
288
|
+
HTTPStatusCode: int
|
|
289
|
+
HTTPHeaders: Dict[str, str]
|
|
290
|
+
RetryAttempts: int
|
|
291
|
+
HostId: NotRequired[str]
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
class AddPermissionRequestRequestTypeDef(TypedDict):
|
|
295
|
+
FunctionName: str
|
|
296
|
+
StatementId: str
|
|
297
|
+
Action: str
|
|
298
|
+
Principal: str
|
|
299
|
+
SourceArn: NotRequired[str]
|
|
300
|
+
SourceAccount: NotRequired[str]
|
|
301
|
+
EventSourceToken: NotRequired[str]
|
|
302
|
+
Qualifier: NotRequired[str]
|
|
303
|
+
RevisionId: NotRequired[str]
|
|
304
|
+
PrincipalOrgID: NotRequired[str]
|
|
305
|
+
FunctionUrlAuthType: NotRequired[FunctionUrlAuthTypeType]
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
class AliasRoutingConfigurationOutputTypeDef(TypedDict):
|
|
309
|
+
AdditionalVersionWeights: NotRequired[Dict[str, float]]
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
class AliasRoutingConfigurationTypeDef(TypedDict):
|
|
313
|
+
AdditionalVersionWeights: NotRequired[Mapping[str, float]]
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
class AllowedPublishersOutputTypeDef(TypedDict):
|
|
317
|
+
SigningProfileVersionArns: List[str]
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
class AllowedPublishersTypeDef(TypedDict):
|
|
321
|
+
SigningProfileVersionArns: Sequence[str]
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
class AmazonManagedKafkaEventSourceConfigTypeDef(TypedDict):
|
|
325
|
+
ConsumerGroupId: NotRequired[str]
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
class CodeSigningPoliciesTypeDef(TypedDict):
|
|
332
|
+
UntrustedArtifactOnDeployment: NotRequired[CodeSigningPolicyType]
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class ConcurrencyTypeDef(TypedDict):
|
|
336
|
+
ReservedConcurrentExecutions: NotRequired[int]
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class CorsOutputTypeDef(TypedDict):
|
|
340
|
+
AllowCredentials: NotRequired[bool]
|
|
341
|
+
AllowHeaders: NotRequired[List[str]]
|
|
342
|
+
AllowMethods: NotRequired[List[str]]
|
|
343
|
+
AllowOrigins: NotRequired[List[str]]
|
|
344
|
+
ExposeHeaders: NotRequired[List[str]]
|
|
345
|
+
MaxAge: NotRequired[int]
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
class CorsTypeDef(TypedDict):
|
|
349
|
+
AllowCredentials: NotRequired[bool]
|
|
350
|
+
AllowHeaders: NotRequired[Sequence[str]]
|
|
351
|
+
AllowMethods: NotRequired[Sequence[str]]
|
|
352
|
+
AllowOrigins: NotRequired[Sequence[str]]
|
|
353
|
+
ExposeHeaders: NotRequired[Sequence[str]]
|
|
354
|
+
MaxAge: NotRequired[int]
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class DocumentDBEventSourceConfigTypeDef(TypedDict):
|
|
358
|
+
DatabaseName: NotRequired[str]
|
|
359
|
+
CollectionName: NotRequired[str]
|
|
360
|
+
FullDocument: NotRequired[FullDocumentType]
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
class EventSourceMappingMetricsConfigTypeDef(TypedDict):
|
|
364
|
+
Metrics: NotRequired[Sequence[Literal["EventCount"]]]
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class ProvisionedPollerConfigTypeDef(TypedDict):
|
|
368
|
+
MinimumPollers: NotRequired[int]
|
|
369
|
+
MaximumPollers: NotRequired[int]
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class ScalingConfigTypeDef(TypedDict):
|
|
373
|
+
MaximumConcurrency: NotRequired[int]
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
class SelfManagedEventSourceTypeDef(TypedDict):
|
|
377
|
+
Endpoints: NotRequired[Mapping[Literal["KAFKA_BOOTSTRAP_SERVERS"], Sequence[str]]]
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
class SelfManagedKafkaEventSourceConfigTypeDef(TypedDict):
|
|
381
|
+
ConsumerGroupId: NotRequired[str]
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
SourceAccessConfigurationTypeDef = TypedDict(
|
|
385
|
+
"SourceAccessConfigurationTypeDef",
|
|
386
|
+
{
|
|
387
|
+
"Type": NotRequired[SourceAccessTypeType],
|
|
388
|
+
"URI": NotRequired[str],
|
|
389
|
+
},
|
|
390
|
+
)
|
|
391
|
+
TimestampTypeDef = Union[datetime, str]
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
class DeadLetterConfigTypeDef(TypedDict):
|
|
395
|
+
TargetArn: NotRequired[str]
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
class EnvironmentTypeDef(TypedDict):
|
|
399
|
+
Variables: NotRequired[Mapping[str, str]]
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
class EphemeralStorageTypeDef(TypedDict):
|
|
403
|
+
Size: int
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
class FileSystemConfigTypeDef(TypedDict):
|
|
407
|
+
Arn: str
|
|
408
|
+
LocalMountPath: str
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
class ImageConfigTypeDef(TypedDict):
|
|
412
|
+
EntryPoint: NotRequired[Sequence[str]]
|
|
413
|
+
Command: NotRequired[Sequence[str]]
|
|
414
|
+
WorkingDirectory: NotRequired[str]
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
class LoggingConfigTypeDef(TypedDict):
|
|
418
|
+
LogFormat: NotRequired[LogFormatType]
|
|
419
|
+
ApplicationLogLevel: NotRequired[ApplicationLogLevelType]
|
|
420
|
+
SystemLogLevel: NotRequired[SystemLogLevelType]
|
|
421
|
+
LogGroup: NotRequired[str]
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
class SnapStartTypeDef(TypedDict):
|
|
425
|
+
ApplyOn: NotRequired[SnapStartApplyOnType]
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
class TracingConfigTypeDef(TypedDict):
|
|
429
|
+
Mode: NotRequired[TracingModeType]
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
class VpcConfigTypeDef(TypedDict):
|
|
433
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
434
|
+
SecurityGroupIds: NotRequired[Sequence[str]]
|
|
435
|
+
Ipv6AllowedForDualStack: NotRequired[bool]
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
class DeleteAliasRequestRequestTypeDef(TypedDict):
|
|
439
|
+
FunctionName: str
|
|
440
|
+
Name: str
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
class DeleteCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
444
|
+
CodeSigningConfigArn: str
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
class DeleteEventSourceMappingRequestRequestTypeDef(TypedDict):
|
|
448
|
+
UUID: str
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
class DeleteFunctionCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
452
|
+
FunctionName: str
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class DeleteFunctionConcurrencyRequestRequestTypeDef(TypedDict):
|
|
456
|
+
FunctionName: str
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class DeleteFunctionEventInvokeConfigRequestRequestTypeDef(TypedDict):
|
|
460
|
+
FunctionName: str
|
|
461
|
+
Qualifier: NotRequired[str]
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
class DeleteFunctionRequestRequestTypeDef(TypedDict):
|
|
465
|
+
FunctionName: str
|
|
466
|
+
Qualifier: NotRequired[str]
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
class DeleteFunctionUrlConfigRequestRequestTypeDef(TypedDict):
|
|
470
|
+
FunctionName: str
|
|
471
|
+
Qualifier: NotRequired[str]
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
class DeleteLayerVersionRequestRequestTypeDef(TypedDict):
|
|
475
|
+
LayerName: str
|
|
476
|
+
VersionNumber: int
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
class DeleteProvisionedConcurrencyConfigRequestRequestTypeDef(TypedDict):
|
|
480
|
+
FunctionName: str
|
|
481
|
+
Qualifier: str
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
class OnFailureTypeDef(TypedDict):
|
|
485
|
+
Destination: NotRequired[str]
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
class OnSuccessTypeDef(TypedDict):
|
|
489
|
+
Destination: NotRequired[str]
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
class EnvironmentErrorTypeDef(TypedDict):
|
|
493
|
+
ErrorCode: NotRequired[str]
|
|
494
|
+
Message: NotRequired[str]
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
class EventSourceMappingMetricsConfigOutputTypeDef(TypedDict):
|
|
498
|
+
Metrics: NotRequired[List[Literal["EventCount"]]]
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
class FilterCriteriaErrorTypeDef(TypedDict):
|
|
502
|
+
ErrorCode: NotRequired[str]
|
|
503
|
+
Message: NotRequired[str]
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class SelfManagedEventSourceOutputTypeDef(TypedDict):
|
|
507
|
+
Endpoints: NotRequired[Dict[Literal["KAFKA_BOOTSTRAP_SERVERS"], List[str]]]
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
FilterTypeDef = TypedDict(
|
|
511
|
+
"FilterTypeDef",
|
|
512
|
+
{
|
|
513
|
+
"Pattern": NotRequired[str],
|
|
514
|
+
},
|
|
515
|
+
)
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
class FunctionCodeLocationTypeDef(TypedDict):
|
|
519
|
+
RepositoryType: NotRequired[str]
|
|
520
|
+
Location: NotRequired[str]
|
|
521
|
+
ImageUri: NotRequired[str]
|
|
522
|
+
ResolvedImageUri: NotRequired[str]
|
|
523
|
+
SourceKMSKeyArn: NotRequired[str]
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class LayerTypeDef(TypedDict):
|
|
527
|
+
Arn: NotRequired[str]
|
|
528
|
+
CodeSize: NotRequired[int]
|
|
529
|
+
SigningProfileVersionArn: NotRequired[str]
|
|
530
|
+
SigningJobArn: NotRequired[str]
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
class SnapStartResponseTypeDef(TypedDict):
|
|
534
|
+
ApplyOn: NotRequired[SnapStartApplyOnType]
|
|
535
|
+
OptimizationStatus: NotRequired[SnapStartOptimizationStatusType]
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
class TracingConfigResponseTypeDef(TypedDict):
|
|
539
|
+
Mode: NotRequired[TracingModeType]
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
class VpcConfigResponseTypeDef(TypedDict):
|
|
543
|
+
SubnetIds: NotRequired[List[str]]
|
|
544
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
545
|
+
VpcId: NotRequired[str]
|
|
546
|
+
Ipv6AllowedForDualStack: NotRequired[bool]
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
class GetAliasRequestRequestTypeDef(TypedDict):
|
|
550
|
+
FunctionName: str
|
|
551
|
+
Name: str
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
class GetCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
555
|
+
CodeSigningConfigArn: str
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
class GetEventSourceMappingRequestRequestTypeDef(TypedDict):
|
|
559
|
+
UUID: str
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
class GetFunctionCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
563
|
+
FunctionName: str
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
class GetFunctionConcurrencyRequestRequestTypeDef(TypedDict):
|
|
567
|
+
FunctionName: str
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
class GetFunctionConfigurationRequestRequestTypeDef(TypedDict):
|
|
571
|
+
FunctionName: str
|
|
572
|
+
Qualifier: NotRequired[str]
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
576
|
+
Delay: NotRequired[int]
|
|
577
|
+
MaxAttempts: NotRequired[int]
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
class GetFunctionEventInvokeConfigRequestRequestTypeDef(TypedDict):
|
|
581
|
+
FunctionName: str
|
|
582
|
+
Qualifier: NotRequired[str]
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
class GetFunctionRecursionConfigRequestRequestTypeDef(TypedDict):
|
|
586
|
+
FunctionName: str
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
class GetFunctionRequestRequestTypeDef(TypedDict):
|
|
590
|
+
FunctionName: str
|
|
591
|
+
Qualifier: NotRequired[str]
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
class TagsErrorTypeDef(TypedDict):
|
|
595
|
+
ErrorCode: str
|
|
596
|
+
Message: str
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
class GetFunctionUrlConfigRequestRequestTypeDef(TypedDict):
|
|
600
|
+
FunctionName: str
|
|
601
|
+
Qualifier: NotRequired[str]
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
class GetLayerVersionByArnRequestRequestTypeDef(TypedDict):
|
|
605
|
+
Arn: str
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
class GetLayerVersionPolicyRequestRequestTypeDef(TypedDict):
|
|
609
|
+
LayerName: str
|
|
610
|
+
VersionNumber: int
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
class GetLayerVersionRequestRequestTypeDef(TypedDict):
|
|
614
|
+
LayerName: str
|
|
615
|
+
VersionNumber: int
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class LayerVersionContentOutputTypeDef(TypedDict):
|
|
619
|
+
Location: NotRequired[str]
|
|
620
|
+
CodeSha256: NotRequired[str]
|
|
621
|
+
CodeSize: NotRequired[int]
|
|
622
|
+
SigningProfileVersionArn: NotRequired[str]
|
|
623
|
+
SigningJobArn: NotRequired[str]
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class GetPolicyRequestRequestTypeDef(TypedDict):
|
|
627
|
+
FunctionName: str
|
|
628
|
+
Qualifier: NotRequired[str]
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class GetProvisionedConcurrencyConfigRequestRequestTypeDef(TypedDict):
|
|
632
|
+
FunctionName: str
|
|
633
|
+
Qualifier: str
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
class GetRuntimeManagementConfigRequestRequestTypeDef(TypedDict):
|
|
637
|
+
FunctionName: str
|
|
638
|
+
Qualifier: NotRequired[str]
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class ImageConfigErrorTypeDef(TypedDict):
|
|
642
|
+
ErrorCode: NotRequired[str]
|
|
643
|
+
Message: NotRequired[str]
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
class ImageConfigOutputTypeDef(TypedDict):
|
|
647
|
+
EntryPoint: NotRequired[List[str]]
|
|
648
|
+
Command: NotRequired[List[str]]
|
|
649
|
+
WorkingDirectory: NotRequired[str]
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
class InvokeResponseStreamUpdateTypeDef(TypedDict):
|
|
653
|
+
Payload: NotRequired[bytes]
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
class InvokeWithResponseStreamCompleteEventTypeDef(TypedDict):
|
|
657
|
+
ErrorCode: NotRequired[str]
|
|
658
|
+
ErrorDetails: NotRequired[str]
|
|
659
|
+
LogResult: NotRequired[str]
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
class LayerVersionsListItemTypeDef(TypedDict):
|
|
663
|
+
LayerVersionArn: NotRequired[str]
|
|
664
|
+
Version: NotRequired[int]
|
|
665
|
+
Description: NotRequired[str]
|
|
666
|
+
CreatedDate: NotRequired[str]
|
|
667
|
+
CompatibleRuntimes: NotRequired[List[RuntimeType]]
|
|
668
|
+
LicenseInfo: NotRequired[str]
|
|
669
|
+
CompatibleArchitectures: NotRequired[List[ArchitectureType]]
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
673
|
+
MaxItems: NotRequired[int]
|
|
674
|
+
PageSize: NotRequired[int]
|
|
675
|
+
StartingToken: NotRequired[str]
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
class ListAliasesRequestRequestTypeDef(TypedDict):
|
|
679
|
+
FunctionName: str
|
|
680
|
+
FunctionVersion: NotRequired[str]
|
|
681
|
+
Marker: NotRequired[str]
|
|
682
|
+
MaxItems: NotRequired[int]
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
class ListCodeSigningConfigsRequestRequestTypeDef(TypedDict):
|
|
686
|
+
Marker: NotRequired[str]
|
|
687
|
+
MaxItems: NotRequired[int]
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
class ListEventSourceMappingsRequestRequestTypeDef(TypedDict):
|
|
691
|
+
EventSourceArn: NotRequired[str]
|
|
692
|
+
FunctionName: NotRequired[str]
|
|
693
|
+
Marker: NotRequired[str]
|
|
694
|
+
MaxItems: NotRequired[int]
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class ListFunctionEventInvokeConfigsRequestRequestTypeDef(TypedDict):
|
|
698
|
+
FunctionName: str
|
|
699
|
+
Marker: NotRequired[str]
|
|
700
|
+
MaxItems: NotRequired[int]
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
class ListFunctionUrlConfigsRequestRequestTypeDef(TypedDict):
|
|
704
|
+
FunctionName: str
|
|
705
|
+
Marker: NotRequired[str]
|
|
706
|
+
MaxItems: NotRequired[int]
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
class ListFunctionsByCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
710
|
+
CodeSigningConfigArn: str
|
|
711
|
+
Marker: NotRequired[str]
|
|
712
|
+
MaxItems: NotRequired[int]
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
class ListFunctionsRequestRequestTypeDef(TypedDict):
|
|
716
|
+
MasterRegion: NotRequired[str]
|
|
717
|
+
FunctionVersion: NotRequired[Literal["ALL"]]
|
|
718
|
+
Marker: NotRequired[str]
|
|
719
|
+
MaxItems: NotRequired[int]
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
class ListLayerVersionsRequestRequestTypeDef(TypedDict):
|
|
723
|
+
LayerName: str
|
|
724
|
+
CompatibleRuntime: NotRequired[RuntimeType]
|
|
725
|
+
Marker: NotRequired[str]
|
|
726
|
+
MaxItems: NotRequired[int]
|
|
727
|
+
CompatibleArchitecture: NotRequired[ArchitectureType]
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
class ListLayersRequestRequestTypeDef(TypedDict):
|
|
731
|
+
CompatibleRuntime: NotRequired[RuntimeType]
|
|
732
|
+
Marker: NotRequired[str]
|
|
733
|
+
MaxItems: NotRequired[int]
|
|
734
|
+
CompatibleArchitecture: NotRequired[ArchitectureType]
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
class ListProvisionedConcurrencyConfigsRequestRequestTypeDef(TypedDict):
|
|
738
|
+
FunctionName: str
|
|
739
|
+
Marker: NotRequired[str]
|
|
740
|
+
MaxItems: NotRequired[int]
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
class ProvisionedConcurrencyConfigListItemTypeDef(TypedDict):
|
|
744
|
+
FunctionArn: NotRequired[str]
|
|
745
|
+
RequestedProvisionedConcurrentExecutions: NotRequired[int]
|
|
746
|
+
AvailableProvisionedConcurrentExecutions: NotRequired[int]
|
|
747
|
+
AllocatedProvisionedConcurrentExecutions: NotRequired[int]
|
|
748
|
+
Status: NotRequired[ProvisionedConcurrencyStatusEnumType]
|
|
749
|
+
StatusReason: NotRequired[str]
|
|
750
|
+
LastModified: NotRequired[str]
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
class ListTagsRequestRequestTypeDef(TypedDict):
|
|
754
|
+
Resource: str
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
class ListVersionsByFunctionRequestRequestTypeDef(TypedDict):
|
|
758
|
+
FunctionName: str
|
|
759
|
+
Marker: NotRequired[str]
|
|
760
|
+
MaxItems: NotRequired[int]
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
class PublishVersionRequestRequestTypeDef(TypedDict):
|
|
764
|
+
FunctionName: str
|
|
765
|
+
CodeSha256: NotRequired[str]
|
|
766
|
+
Description: NotRequired[str]
|
|
767
|
+
RevisionId: NotRequired[str]
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
class PutFunctionCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
771
|
+
CodeSigningConfigArn: str
|
|
772
|
+
FunctionName: str
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
class PutFunctionConcurrencyRequestRequestTypeDef(TypedDict):
|
|
776
|
+
FunctionName: str
|
|
777
|
+
ReservedConcurrentExecutions: int
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
class PutFunctionRecursionConfigRequestRequestTypeDef(TypedDict):
|
|
781
|
+
FunctionName: str
|
|
782
|
+
RecursiveLoop: RecursiveLoopType
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
class PutProvisionedConcurrencyConfigRequestRequestTypeDef(TypedDict):
|
|
786
|
+
FunctionName: str
|
|
787
|
+
Qualifier: str
|
|
788
|
+
ProvisionedConcurrentExecutions: int
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
class PutRuntimeManagementConfigRequestRequestTypeDef(TypedDict):
|
|
792
|
+
FunctionName: str
|
|
793
|
+
UpdateRuntimeOn: UpdateRuntimeOnType
|
|
794
|
+
Qualifier: NotRequired[str]
|
|
795
|
+
RuntimeVersionArn: NotRequired[str]
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
class RemoveLayerVersionPermissionRequestRequestTypeDef(TypedDict):
|
|
799
|
+
LayerName: str
|
|
800
|
+
VersionNumber: int
|
|
801
|
+
StatementId: str
|
|
802
|
+
RevisionId: NotRequired[str]
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
class RemovePermissionRequestRequestTypeDef(TypedDict):
|
|
806
|
+
FunctionName: str
|
|
807
|
+
StatementId: str
|
|
808
|
+
Qualifier: NotRequired[str]
|
|
809
|
+
RevisionId: NotRequired[str]
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
class RuntimeVersionErrorTypeDef(TypedDict):
|
|
813
|
+
ErrorCode: NotRequired[str]
|
|
814
|
+
Message: NotRequired[str]
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
818
|
+
Resource: str
|
|
819
|
+
Tags: Mapping[str, str]
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
823
|
+
Resource: str
|
|
824
|
+
TagKeys: Sequence[str]
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
class AddLayerVersionPermissionResponseTypeDef(TypedDict):
|
|
828
|
+
Statement: str
|
|
829
|
+
RevisionId: str
|
|
830
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
class AddPermissionResponseTypeDef(TypedDict):
|
|
834
|
+
Statement: str
|
|
835
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
class ConcurrencyResponseTypeDef(TypedDict):
|
|
839
|
+
ReservedConcurrentExecutions: int
|
|
840
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
844
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class GetAccountSettingsResponseTypeDef(TypedDict):
|
|
848
|
+
AccountLimit: AccountLimitTypeDef
|
|
849
|
+
AccountUsage: AccountUsageTypeDef
|
|
850
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
class GetFunctionCodeSigningConfigResponseTypeDef(TypedDict):
|
|
854
|
+
CodeSigningConfigArn: str
|
|
855
|
+
FunctionName: str
|
|
856
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
class GetFunctionConcurrencyResponseTypeDef(TypedDict):
|
|
860
|
+
ReservedConcurrentExecutions: int
|
|
861
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
class GetFunctionRecursionConfigResponseTypeDef(TypedDict):
|
|
865
|
+
RecursiveLoop: RecursiveLoopType
|
|
866
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
class GetLayerVersionPolicyResponseTypeDef(TypedDict):
|
|
870
|
+
Policy: str
|
|
871
|
+
RevisionId: str
|
|
872
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
class GetPolicyResponseTypeDef(TypedDict):
|
|
876
|
+
Policy: str
|
|
877
|
+
RevisionId: str
|
|
878
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
class GetProvisionedConcurrencyConfigResponseTypeDef(TypedDict):
|
|
882
|
+
RequestedProvisionedConcurrentExecutions: int
|
|
883
|
+
AvailableProvisionedConcurrentExecutions: int
|
|
884
|
+
AllocatedProvisionedConcurrentExecutions: int
|
|
885
|
+
Status: ProvisionedConcurrencyStatusEnumType
|
|
886
|
+
StatusReason: str
|
|
887
|
+
LastModified: str
|
|
888
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
class GetRuntimeManagementConfigResponseTypeDef(TypedDict):
|
|
892
|
+
UpdateRuntimeOn: UpdateRuntimeOnType
|
|
893
|
+
RuntimeVersionArn: str
|
|
894
|
+
FunctionArn: str
|
|
895
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
class InvocationResponseTypeDef(TypedDict):
|
|
899
|
+
StatusCode: int
|
|
900
|
+
FunctionError: str
|
|
901
|
+
LogResult: str
|
|
902
|
+
Payload: StreamingBody
|
|
903
|
+
ExecutedVersion: str
|
|
904
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
class InvokeAsyncResponseTypeDef(TypedDict):
|
|
908
|
+
Status: int
|
|
909
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
class ListFunctionsByCodeSigningConfigResponseTypeDef(TypedDict):
|
|
913
|
+
NextMarker: str
|
|
914
|
+
FunctionArns: List[str]
|
|
915
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
class ListTagsResponseTypeDef(TypedDict):
|
|
919
|
+
Tags: Dict[str, str]
|
|
920
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
class PutFunctionCodeSigningConfigResponseTypeDef(TypedDict):
|
|
924
|
+
CodeSigningConfigArn: str
|
|
925
|
+
FunctionName: str
|
|
926
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
class PutFunctionRecursionConfigResponseTypeDef(TypedDict):
|
|
930
|
+
RecursiveLoop: RecursiveLoopType
|
|
931
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
class PutProvisionedConcurrencyConfigResponseTypeDef(TypedDict):
|
|
935
|
+
RequestedProvisionedConcurrentExecutions: int
|
|
936
|
+
AvailableProvisionedConcurrentExecutions: int
|
|
937
|
+
AllocatedProvisionedConcurrentExecutions: int
|
|
938
|
+
Status: ProvisionedConcurrencyStatusEnumType
|
|
939
|
+
StatusReason: str
|
|
940
|
+
LastModified: str
|
|
941
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
class PutRuntimeManagementConfigResponseTypeDef(TypedDict):
|
|
945
|
+
UpdateRuntimeOn: UpdateRuntimeOnType
|
|
946
|
+
FunctionArn: str
|
|
947
|
+
RuntimeVersionArn: str
|
|
948
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
class AliasConfigurationResponseTypeDef(TypedDict):
|
|
952
|
+
AliasArn: str
|
|
953
|
+
Name: str
|
|
954
|
+
FunctionVersion: str
|
|
955
|
+
Description: str
|
|
956
|
+
RoutingConfig: AliasRoutingConfigurationOutputTypeDef
|
|
957
|
+
RevisionId: str
|
|
958
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
class AliasConfigurationTypeDef(TypedDict):
|
|
962
|
+
AliasArn: NotRequired[str]
|
|
963
|
+
Name: NotRequired[str]
|
|
964
|
+
FunctionVersion: NotRequired[str]
|
|
965
|
+
Description: NotRequired[str]
|
|
966
|
+
RoutingConfig: NotRequired[AliasRoutingConfigurationOutputTypeDef]
|
|
967
|
+
RevisionId: NotRequired[str]
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
class CreateAliasRequestRequestTypeDef(TypedDict):
|
|
971
|
+
FunctionName: str
|
|
972
|
+
Name: str
|
|
973
|
+
FunctionVersion: str
|
|
974
|
+
Description: NotRequired[str]
|
|
975
|
+
RoutingConfig: NotRequired[AliasRoutingConfigurationTypeDef]
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
class UpdateAliasRequestRequestTypeDef(TypedDict):
|
|
979
|
+
FunctionName: str
|
|
980
|
+
Name: str
|
|
981
|
+
FunctionVersion: NotRequired[str]
|
|
982
|
+
Description: NotRequired[str]
|
|
983
|
+
RoutingConfig: NotRequired[AliasRoutingConfigurationTypeDef]
|
|
984
|
+
RevisionId: NotRequired[str]
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
class FunctionCodeTypeDef(TypedDict):
|
|
988
|
+
ZipFile: NotRequired[BlobTypeDef]
|
|
989
|
+
S3Bucket: NotRequired[str]
|
|
990
|
+
S3Key: NotRequired[str]
|
|
991
|
+
S3ObjectVersion: NotRequired[str]
|
|
992
|
+
ImageUri: NotRequired[str]
|
|
993
|
+
SourceKMSKeyArn: NotRequired[str]
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
class InvocationRequestRequestTypeDef(TypedDict):
|
|
997
|
+
FunctionName: str
|
|
998
|
+
InvocationType: NotRequired[InvocationTypeType]
|
|
999
|
+
LogType: NotRequired[LogTypeType]
|
|
1000
|
+
ClientContext: NotRequired[str]
|
|
1001
|
+
Payload: NotRequired[BlobTypeDef]
|
|
1002
|
+
Qualifier: NotRequired[str]
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class InvokeAsyncRequestRequestTypeDef(TypedDict):
|
|
1006
|
+
FunctionName: str
|
|
1007
|
+
InvokeArgs: BlobTypeDef
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
class InvokeWithResponseStreamRequestRequestTypeDef(TypedDict):
|
|
1011
|
+
FunctionName: str
|
|
1012
|
+
InvocationType: NotRequired[ResponseStreamingInvocationTypeType]
|
|
1013
|
+
LogType: NotRequired[LogTypeType]
|
|
1014
|
+
ClientContext: NotRequired[str]
|
|
1015
|
+
Qualifier: NotRequired[str]
|
|
1016
|
+
Payload: NotRequired[BlobTypeDef]
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
class LayerVersionContentInputTypeDef(TypedDict):
|
|
1020
|
+
S3Bucket: NotRequired[str]
|
|
1021
|
+
S3Key: NotRequired[str]
|
|
1022
|
+
S3ObjectVersion: NotRequired[str]
|
|
1023
|
+
ZipFile: NotRequired[BlobTypeDef]
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
class UpdateFunctionCodeRequestRequestTypeDef(TypedDict):
|
|
1027
|
+
FunctionName: str
|
|
1028
|
+
ZipFile: NotRequired[BlobTypeDef]
|
|
1029
|
+
S3Bucket: NotRequired[str]
|
|
1030
|
+
S3Key: NotRequired[str]
|
|
1031
|
+
S3ObjectVersion: NotRequired[str]
|
|
1032
|
+
ImageUri: NotRequired[str]
|
|
1033
|
+
Publish: NotRequired[bool]
|
|
1034
|
+
DryRun: NotRequired[bool]
|
|
1035
|
+
RevisionId: NotRequired[str]
|
|
1036
|
+
Architectures: NotRequired[Sequence[ArchitectureType]]
|
|
1037
|
+
SourceKMSKeyArn: NotRequired[str]
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
class CodeSigningConfigTypeDef(TypedDict):
|
|
1041
|
+
CodeSigningConfigId: str
|
|
1042
|
+
CodeSigningConfigArn: str
|
|
1043
|
+
AllowedPublishers: AllowedPublishersOutputTypeDef
|
|
1044
|
+
CodeSigningPolicies: CodeSigningPoliciesTypeDef
|
|
1045
|
+
LastModified: str
|
|
1046
|
+
Description: NotRequired[str]
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
class CreateCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
1050
|
+
AllowedPublishers: AllowedPublishersTypeDef
|
|
1051
|
+
Description: NotRequired[str]
|
|
1052
|
+
CodeSigningPolicies: NotRequired[CodeSigningPoliciesTypeDef]
|
|
1053
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
class UpdateCodeSigningConfigRequestRequestTypeDef(TypedDict):
|
|
1057
|
+
CodeSigningConfigArn: str
|
|
1058
|
+
Description: NotRequired[str]
|
|
1059
|
+
AllowedPublishers: NotRequired[AllowedPublishersTypeDef]
|
|
1060
|
+
CodeSigningPolicies: NotRequired[CodeSigningPoliciesTypeDef]
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
class CreateFunctionUrlConfigResponseTypeDef(TypedDict):
|
|
1064
|
+
FunctionUrl: str
|
|
1065
|
+
FunctionArn: str
|
|
1066
|
+
AuthType: FunctionUrlAuthTypeType
|
|
1067
|
+
Cors: CorsOutputTypeDef
|
|
1068
|
+
CreationTime: str
|
|
1069
|
+
InvokeMode: InvokeModeType
|
|
1070
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
class FunctionUrlConfigTypeDef(TypedDict):
|
|
1074
|
+
FunctionUrl: str
|
|
1075
|
+
FunctionArn: str
|
|
1076
|
+
CreationTime: str
|
|
1077
|
+
LastModifiedTime: str
|
|
1078
|
+
AuthType: FunctionUrlAuthTypeType
|
|
1079
|
+
Cors: NotRequired[CorsOutputTypeDef]
|
|
1080
|
+
InvokeMode: NotRequired[InvokeModeType]
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
class GetFunctionUrlConfigResponseTypeDef(TypedDict):
|
|
1084
|
+
FunctionUrl: str
|
|
1085
|
+
FunctionArn: str
|
|
1086
|
+
AuthType: FunctionUrlAuthTypeType
|
|
1087
|
+
Cors: CorsOutputTypeDef
|
|
1088
|
+
CreationTime: str
|
|
1089
|
+
LastModifiedTime: str
|
|
1090
|
+
InvokeMode: InvokeModeType
|
|
1091
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
class UpdateFunctionUrlConfigResponseTypeDef(TypedDict):
|
|
1095
|
+
FunctionUrl: str
|
|
1096
|
+
FunctionArn: str
|
|
1097
|
+
AuthType: FunctionUrlAuthTypeType
|
|
1098
|
+
Cors: CorsOutputTypeDef
|
|
1099
|
+
CreationTime: str
|
|
1100
|
+
LastModifiedTime: str
|
|
1101
|
+
InvokeMode: InvokeModeType
|
|
1102
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
class CreateFunctionUrlConfigRequestRequestTypeDef(TypedDict):
|
|
1106
|
+
FunctionName: str
|
|
1107
|
+
AuthType: FunctionUrlAuthTypeType
|
|
1108
|
+
Qualifier: NotRequired[str]
|
|
1109
|
+
Cors: NotRequired[CorsTypeDef]
|
|
1110
|
+
InvokeMode: NotRequired[InvokeModeType]
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
class UpdateFunctionUrlConfigRequestRequestTypeDef(TypedDict):
|
|
1114
|
+
FunctionName: str
|
|
1115
|
+
Qualifier: NotRequired[str]
|
|
1116
|
+
AuthType: NotRequired[FunctionUrlAuthTypeType]
|
|
1117
|
+
Cors: NotRequired[CorsTypeDef]
|
|
1118
|
+
InvokeMode: NotRequired[InvokeModeType]
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
class UpdateFunctionConfigurationRequestRequestTypeDef(TypedDict):
|
|
1122
|
+
FunctionName: str
|
|
1123
|
+
Role: NotRequired[str]
|
|
1124
|
+
Handler: NotRequired[str]
|
|
1125
|
+
Description: NotRequired[str]
|
|
1126
|
+
Timeout: NotRequired[int]
|
|
1127
|
+
MemorySize: NotRequired[int]
|
|
1128
|
+
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
1129
|
+
Environment: NotRequired[EnvironmentTypeDef]
|
|
1130
|
+
Runtime: NotRequired[RuntimeType]
|
|
1131
|
+
DeadLetterConfig: NotRequired[DeadLetterConfigTypeDef]
|
|
1132
|
+
KMSKeyArn: NotRequired[str]
|
|
1133
|
+
TracingConfig: NotRequired[TracingConfigTypeDef]
|
|
1134
|
+
RevisionId: NotRequired[str]
|
|
1135
|
+
Layers: NotRequired[Sequence[str]]
|
|
1136
|
+
FileSystemConfigs: NotRequired[Sequence[FileSystemConfigTypeDef]]
|
|
1137
|
+
ImageConfig: NotRequired[ImageConfigTypeDef]
|
|
1138
|
+
EphemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1139
|
+
SnapStart: NotRequired[SnapStartTypeDef]
|
|
1140
|
+
LoggingConfig: NotRequired[LoggingConfigTypeDef]
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
class DestinationConfigTypeDef(TypedDict):
|
|
1144
|
+
OnSuccess: NotRequired[OnSuccessTypeDef]
|
|
1145
|
+
OnFailure: NotRequired[OnFailureTypeDef]
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
class EnvironmentResponseTypeDef(TypedDict):
|
|
1149
|
+
Variables: NotRequired[Dict[str, str]]
|
|
1150
|
+
Error: NotRequired[EnvironmentErrorTypeDef]
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
class FilterCriteriaOutputTypeDef(TypedDict):
|
|
1154
|
+
Filters: NotRequired[List[FilterTypeDef]]
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
class FilterCriteriaTypeDef(TypedDict):
|
|
1158
|
+
Filters: NotRequired[Sequence[FilterTypeDef]]
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
class GetFunctionConfigurationRequestWaitTypeDef(TypedDict):
|
|
1162
|
+
FunctionName: str
|
|
1163
|
+
Qualifier: NotRequired[str]
|
|
1164
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
class GetFunctionRequestWaitTypeDef(TypedDict):
|
|
1168
|
+
FunctionName: str
|
|
1169
|
+
Qualifier: NotRequired[str]
|
|
1170
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
class GetLayerVersionResponseTypeDef(TypedDict):
|
|
1174
|
+
Content: LayerVersionContentOutputTypeDef
|
|
1175
|
+
LayerArn: str
|
|
1176
|
+
LayerVersionArn: str
|
|
1177
|
+
Description: str
|
|
1178
|
+
CreatedDate: str
|
|
1179
|
+
Version: int
|
|
1180
|
+
CompatibleRuntimes: List[RuntimeType]
|
|
1181
|
+
LicenseInfo: str
|
|
1182
|
+
CompatibleArchitectures: List[ArchitectureType]
|
|
1183
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1184
|
+
|
|
1185
|
+
|
|
1186
|
+
class PublishLayerVersionResponseTypeDef(TypedDict):
|
|
1187
|
+
Content: LayerVersionContentOutputTypeDef
|
|
1188
|
+
LayerArn: str
|
|
1189
|
+
LayerVersionArn: str
|
|
1190
|
+
Description: str
|
|
1191
|
+
CreatedDate: str
|
|
1192
|
+
Version: int
|
|
1193
|
+
CompatibleRuntimes: List[RuntimeType]
|
|
1194
|
+
LicenseInfo: str
|
|
1195
|
+
CompatibleArchitectures: List[ArchitectureType]
|
|
1196
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
class ImageConfigResponseTypeDef(TypedDict):
|
|
1200
|
+
ImageConfig: NotRequired[ImageConfigOutputTypeDef]
|
|
1201
|
+
Error: NotRequired[ImageConfigErrorTypeDef]
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
class InvokeWithResponseStreamResponseEventTypeDef(TypedDict):
|
|
1205
|
+
PayloadChunk: NotRequired[InvokeResponseStreamUpdateTypeDef]
|
|
1206
|
+
InvokeComplete: NotRequired[InvokeWithResponseStreamCompleteEventTypeDef]
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
class LayersListItemTypeDef(TypedDict):
|
|
1210
|
+
LayerName: NotRequired[str]
|
|
1211
|
+
LayerArn: NotRequired[str]
|
|
1212
|
+
LatestMatchingVersion: NotRequired[LayerVersionsListItemTypeDef]
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
class ListLayerVersionsResponseTypeDef(TypedDict):
|
|
1216
|
+
NextMarker: str
|
|
1217
|
+
LayerVersions: List[LayerVersionsListItemTypeDef]
|
|
1218
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
class ListAliasesRequestPaginateTypeDef(TypedDict):
|
|
1222
|
+
FunctionName: str
|
|
1223
|
+
FunctionVersion: NotRequired[str]
|
|
1224
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
class ListCodeSigningConfigsRequestPaginateTypeDef(TypedDict):
|
|
1228
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
class ListEventSourceMappingsRequestPaginateTypeDef(TypedDict):
|
|
1232
|
+
EventSourceArn: NotRequired[str]
|
|
1233
|
+
FunctionName: NotRequired[str]
|
|
1234
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
class ListFunctionEventInvokeConfigsRequestPaginateTypeDef(TypedDict):
|
|
1238
|
+
FunctionName: str
|
|
1239
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
class ListFunctionUrlConfigsRequestPaginateTypeDef(TypedDict):
|
|
1243
|
+
FunctionName: str
|
|
1244
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
class ListFunctionsByCodeSigningConfigRequestPaginateTypeDef(TypedDict):
|
|
1248
|
+
CodeSigningConfigArn: str
|
|
1249
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1250
|
+
|
|
1251
|
+
|
|
1252
|
+
class ListFunctionsRequestPaginateTypeDef(TypedDict):
|
|
1253
|
+
MasterRegion: NotRequired[str]
|
|
1254
|
+
FunctionVersion: NotRequired[Literal["ALL"]]
|
|
1255
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
class ListLayerVersionsRequestPaginateTypeDef(TypedDict):
|
|
1259
|
+
LayerName: str
|
|
1260
|
+
CompatibleRuntime: NotRequired[RuntimeType]
|
|
1261
|
+
CompatibleArchitecture: NotRequired[ArchitectureType]
|
|
1262
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
class ListLayersRequestPaginateTypeDef(TypedDict):
|
|
1266
|
+
CompatibleRuntime: NotRequired[RuntimeType]
|
|
1267
|
+
CompatibleArchitecture: NotRequired[ArchitectureType]
|
|
1268
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
class ListProvisionedConcurrencyConfigsRequestPaginateTypeDef(TypedDict):
|
|
1272
|
+
FunctionName: str
|
|
1273
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
class ListVersionsByFunctionRequestPaginateTypeDef(TypedDict):
|
|
1277
|
+
FunctionName: str
|
|
1278
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
class ListProvisionedConcurrencyConfigsResponseTypeDef(TypedDict):
|
|
1282
|
+
ProvisionedConcurrencyConfigs: List[ProvisionedConcurrencyConfigListItemTypeDef]
|
|
1283
|
+
NextMarker: str
|
|
1284
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class RuntimeVersionConfigTypeDef(TypedDict):
|
|
1288
|
+
RuntimeVersionArn: NotRequired[str]
|
|
1289
|
+
Error: NotRequired[RuntimeVersionErrorTypeDef]
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
class ListAliasesResponseTypeDef(TypedDict):
|
|
1293
|
+
NextMarker: str
|
|
1294
|
+
Aliases: List[AliasConfigurationTypeDef]
|
|
1295
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
class CreateFunctionRequestRequestTypeDef(TypedDict):
|
|
1299
|
+
FunctionName: str
|
|
1300
|
+
Role: str
|
|
1301
|
+
Code: FunctionCodeTypeDef
|
|
1302
|
+
Runtime: NotRequired[RuntimeType]
|
|
1303
|
+
Handler: NotRequired[str]
|
|
1304
|
+
Description: NotRequired[str]
|
|
1305
|
+
Timeout: NotRequired[int]
|
|
1306
|
+
MemorySize: NotRequired[int]
|
|
1307
|
+
Publish: NotRequired[bool]
|
|
1308
|
+
VpcConfig: NotRequired[VpcConfigTypeDef]
|
|
1309
|
+
PackageType: NotRequired[PackageTypeType]
|
|
1310
|
+
DeadLetterConfig: NotRequired[DeadLetterConfigTypeDef]
|
|
1311
|
+
Environment: NotRequired[EnvironmentTypeDef]
|
|
1312
|
+
KMSKeyArn: NotRequired[str]
|
|
1313
|
+
TracingConfig: NotRequired[TracingConfigTypeDef]
|
|
1314
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
1315
|
+
Layers: NotRequired[Sequence[str]]
|
|
1316
|
+
FileSystemConfigs: NotRequired[Sequence[FileSystemConfigTypeDef]]
|
|
1317
|
+
ImageConfig: NotRequired[ImageConfigTypeDef]
|
|
1318
|
+
CodeSigningConfigArn: NotRequired[str]
|
|
1319
|
+
Architectures: NotRequired[Sequence[ArchitectureType]]
|
|
1320
|
+
EphemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1321
|
+
SnapStart: NotRequired[SnapStartTypeDef]
|
|
1322
|
+
LoggingConfig: NotRequired[LoggingConfigTypeDef]
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
class PublishLayerVersionRequestRequestTypeDef(TypedDict):
|
|
1326
|
+
LayerName: str
|
|
1327
|
+
Content: LayerVersionContentInputTypeDef
|
|
1328
|
+
Description: NotRequired[str]
|
|
1329
|
+
CompatibleRuntimes: NotRequired[Sequence[RuntimeType]]
|
|
1330
|
+
LicenseInfo: NotRequired[str]
|
|
1331
|
+
CompatibleArchitectures: NotRequired[Sequence[ArchitectureType]]
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
class CreateCodeSigningConfigResponseTypeDef(TypedDict):
|
|
1335
|
+
CodeSigningConfig: CodeSigningConfigTypeDef
|
|
1336
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
class GetCodeSigningConfigResponseTypeDef(TypedDict):
|
|
1340
|
+
CodeSigningConfig: CodeSigningConfigTypeDef
|
|
1341
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
class ListCodeSigningConfigsResponseTypeDef(TypedDict):
|
|
1345
|
+
NextMarker: str
|
|
1346
|
+
CodeSigningConfigs: List[CodeSigningConfigTypeDef]
|
|
1347
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
class UpdateCodeSigningConfigResponseTypeDef(TypedDict):
|
|
1351
|
+
CodeSigningConfig: CodeSigningConfigTypeDef
|
|
1352
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
class ListFunctionUrlConfigsResponseTypeDef(TypedDict):
|
|
1356
|
+
FunctionUrlConfigs: List[FunctionUrlConfigTypeDef]
|
|
1357
|
+
NextMarker: str
|
|
1358
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
class FunctionEventInvokeConfigResponseTypeDef(TypedDict):
|
|
1362
|
+
LastModified: datetime
|
|
1363
|
+
FunctionArn: str
|
|
1364
|
+
MaximumRetryAttempts: int
|
|
1365
|
+
MaximumEventAgeInSeconds: int
|
|
1366
|
+
DestinationConfig: DestinationConfigTypeDef
|
|
1367
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
class FunctionEventInvokeConfigTypeDef(TypedDict):
|
|
1371
|
+
LastModified: NotRequired[datetime]
|
|
1372
|
+
FunctionArn: NotRequired[str]
|
|
1373
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1374
|
+
MaximumEventAgeInSeconds: NotRequired[int]
|
|
1375
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
class PutFunctionEventInvokeConfigRequestRequestTypeDef(TypedDict):
|
|
1379
|
+
FunctionName: str
|
|
1380
|
+
Qualifier: NotRequired[str]
|
|
1381
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1382
|
+
MaximumEventAgeInSeconds: NotRequired[int]
|
|
1383
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
class UpdateFunctionEventInvokeConfigRequestRequestTypeDef(TypedDict):
|
|
1387
|
+
FunctionName: str
|
|
1388
|
+
Qualifier: NotRequired[str]
|
|
1389
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1390
|
+
MaximumEventAgeInSeconds: NotRequired[int]
|
|
1391
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
class EventSourceMappingConfigurationResponseTypeDef(TypedDict):
|
|
1395
|
+
UUID: str
|
|
1396
|
+
StartingPosition: EventSourcePositionType
|
|
1397
|
+
StartingPositionTimestamp: datetime
|
|
1398
|
+
BatchSize: int
|
|
1399
|
+
MaximumBatchingWindowInSeconds: int
|
|
1400
|
+
ParallelizationFactor: int
|
|
1401
|
+
EventSourceArn: str
|
|
1402
|
+
FilterCriteria: FilterCriteriaOutputTypeDef
|
|
1403
|
+
FunctionArn: str
|
|
1404
|
+
LastModified: datetime
|
|
1405
|
+
LastProcessingResult: str
|
|
1406
|
+
State: str
|
|
1407
|
+
StateTransitionReason: str
|
|
1408
|
+
DestinationConfig: DestinationConfigTypeDef
|
|
1409
|
+
Topics: List[str]
|
|
1410
|
+
Queues: List[str]
|
|
1411
|
+
SourceAccessConfigurations: List[SourceAccessConfigurationTypeDef]
|
|
1412
|
+
SelfManagedEventSource: SelfManagedEventSourceOutputTypeDef
|
|
1413
|
+
MaximumRecordAgeInSeconds: int
|
|
1414
|
+
BisectBatchOnFunctionError: bool
|
|
1415
|
+
MaximumRetryAttempts: int
|
|
1416
|
+
TumblingWindowInSeconds: int
|
|
1417
|
+
FunctionResponseTypes: List[Literal["ReportBatchItemFailures"]]
|
|
1418
|
+
AmazonManagedKafkaEventSourceConfig: AmazonManagedKafkaEventSourceConfigTypeDef
|
|
1419
|
+
SelfManagedKafkaEventSourceConfig: SelfManagedKafkaEventSourceConfigTypeDef
|
|
1420
|
+
ScalingConfig: ScalingConfigTypeDef
|
|
1421
|
+
DocumentDBEventSourceConfig: DocumentDBEventSourceConfigTypeDef
|
|
1422
|
+
KMSKeyArn: str
|
|
1423
|
+
FilterCriteriaError: FilterCriteriaErrorTypeDef
|
|
1424
|
+
EventSourceMappingArn: str
|
|
1425
|
+
MetricsConfig: EventSourceMappingMetricsConfigOutputTypeDef
|
|
1426
|
+
ProvisionedPollerConfig: ProvisionedPollerConfigTypeDef
|
|
1427
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
class EventSourceMappingConfigurationTypeDef(TypedDict):
|
|
1431
|
+
UUID: NotRequired[str]
|
|
1432
|
+
StartingPosition: NotRequired[EventSourcePositionType]
|
|
1433
|
+
StartingPositionTimestamp: NotRequired[datetime]
|
|
1434
|
+
BatchSize: NotRequired[int]
|
|
1435
|
+
MaximumBatchingWindowInSeconds: NotRequired[int]
|
|
1436
|
+
ParallelizationFactor: NotRequired[int]
|
|
1437
|
+
EventSourceArn: NotRequired[str]
|
|
1438
|
+
FilterCriteria: NotRequired[FilterCriteriaOutputTypeDef]
|
|
1439
|
+
FunctionArn: NotRequired[str]
|
|
1440
|
+
LastModified: NotRequired[datetime]
|
|
1441
|
+
LastProcessingResult: NotRequired[str]
|
|
1442
|
+
State: NotRequired[str]
|
|
1443
|
+
StateTransitionReason: NotRequired[str]
|
|
1444
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1445
|
+
Topics: NotRequired[List[str]]
|
|
1446
|
+
Queues: NotRequired[List[str]]
|
|
1447
|
+
SourceAccessConfigurations: NotRequired[List[SourceAccessConfigurationTypeDef]]
|
|
1448
|
+
SelfManagedEventSource: NotRequired[SelfManagedEventSourceOutputTypeDef]
|
|
1449
|
+
MaximumRecordAgeInSeconds: NotRequired[int]
|
|
1450
|
+
BisectBatchOnFunctionError: NotRequired[bool]
|
|
1451
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1452
|
+
TumblingWindowInSeconds: NotRequired[int]
|
|
1453
|
+
FunctionResponseTypes: NotRequired[List[Literal["ReportBatchItemFailures"]]]
|
|
1454
|
+
AmazonManagedKafkaEventSourceConfig: NotRequired[AmazonManagedKafkaEventSourceConfigTypeDef]
|
|
1455
|
+
SelfManagedKafkaEventSourceConfig: NotRequired[SelfManagedKafkaEventSourceConfigTypeDef]
|
|
1456
|
+
ScalingConfig: NotRequired[ScalingConfigTypeDef]
|
|
1457
|
+
DocumentDBEventSourceConfig: NotRequired[DocumentDBEventSourceConfigTypeDef]
|
|
1458
|
+
KMSKeyArn: NotRequired[str]
|
|
1459
|
+
FilterCriteriaError: NotRequired[FilterCriteriaErrorTypeDef]
|
|
1460
|
+
EventSourceMappingArn: NotRequired[str]
|
|
1461
|
+
MetricsConfig: NotRequired[EventSourceMappingMetricsConfigOutputTypeDef]
|
|
1462
|
+
ProvisionedPollerConfig: NotRequired[ProvisionedPollerConfigTypeDef]
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
class CreateEventSourceMappingRequestRequestTypeDef(TypedDict):
|
|
1466
|
+
FunctionName: str
|
|
1467
|
+
EventSourceArn: NotRequired[str]
|
|
1468
|
+
Enabled: NotRequired[bool]
|
|
1469
|
+
BatchSize: NotRequired[int]
|
|
1470
|
+
FilterCriteria: NotRequired[FilterCriteriaTypeDef]
|
|
1471
|
+
MaximumBatchingWindowInSeconds: NotRequired[int]
|
|
1472
|
+
ParallelizationFactor: NotRequired[int]
|
|
1473
|
+
StartingPosition: NotRequired[EventSourcePositionType]
|
|
1474
|
+
StartingPositionTimestamp: NotRequired[TimestampTypeDef]
|
|
1475
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1476
|
+
MaximumRecordAgeInSeconds: NotRequired[int]
|
|
1477
|
+
BisectBatchOnFunctionError: NotRequired[bool]
|
|
1478
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1479
|
+
Tags: NotRequired[Mapping[str, str]]
|
|
1480
|
+
TumblingWindowInSeconds: NotRequired[int]
|
|
1481
|
+
Topics: NotRequired[Sequence[str]]
|
|
1482
|
+
Queues: NotRequired[Sequence[str]]
|
|
1483
|
+
SourceAccessConfigurations: NotRequired[Sequence[SourceAccessConfigurationTypeDef]]
|
|
1484
|
+
SelfManagedEventSource: NotRequired[SelfManagedEventSourceTypeDef]
|
|
1485
|
+
FunctionResponseTypes: NotRequired[Sequence[Literal["ReportBatchItemFailures"]]]
|
|
1486
|
+
AmazonManagedKafkaEventSourceConfig: NotRequired[AmazonManagedKafkaEventSourceConfigTypeDef]
|
|
1487
|
+
SelfManagedKafkaEventSourceConfig: NotRequired[SelfManagedKafkaEventSourceConfigTypeDef]
|
|
1488
|
+
ScalingConfig: NotRequired[ScalingConfigTypeDef]
|
|
1489
|
+
DocumentDBEventSourceConfig: NotRequired[DocumentDBEventSourceConfigTypeDef]
|
|
1490
|
+
KMSKeyArn: NotRequired[str]
|
|
1491
|
+
MetricsConfig: NotRequired[EventSourceMappingMetricsConfigTypeDef]
|
|
1492
|
+
ProvisionedPollerConfig: NotRequired[ProvisionedPollerConfigTypeDef]
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
class UpdateEventSourceMappingRequestRequestTypeDef(TypedDict):
|
|
1496
|
+
UUID: str
|
|
1497
|
+
FunctionName: NotRequired[str]
|
|
1498
|
+
Enabled: NotRequired[bool]
|
|
1499
|
+
BatchSize: NotRequired[int]
|
|
1500
|
+
FilterCriteria: NotRequired[FilterCriteriaTypeDef]
|
|
1501
|
+
MaximumBatchingWindowInSeconds: NotRequired[int]
|
|
1502
|
+
DestinationConfig: NotRequired[DestinationConfigTypeDef]
|
|
1503
|
+
MaximumRecordAgeInSeconds: NotRequired[int]
|
|
1504
|
+
BisectBatchOnFunctionError: NotRequired[bool]
|
|
1505
|
+
MaximumRetryAttempts: NotRequired[int]
|
|
1506
|
+
ParallelizationFactor: NotRequired[int]
|
|
1507
|
+
SourceAccessConfigurations: NotRequired[Sequence[SourceAccessConfigurationTypeDef]]
|
|
1508
|
+
TumblingWindowInSeconds: NotRequired[int]
|
|
1509
|
+
FunctionResponseTypes: NotRequired[Sequence[Literal["ReportBatchItemFailures"]]]
|
|
1510
|
+
ScalingConfig: NotRequired[ScalingConfigTypeDef]
|
|
1511
|
+
DocumentDBEventSourceConfig: NotRequired[DocumentDBEventSourceConfigTypeDef]
|
|
1512
|
+
KMSKeyArn: NotRequired[str]
|
|
1513
|
+
MetricsConfig: NotRequired[EventSourceMappingMetricsConfigTypeDef]
|
|
1514
|
+
ProvisionedPollerConfig: NotRequired[ProvisionedPollerConfigTypeDef]
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
class InvokeWithResponseStreamResponseTypeDef(TypedDict):
|
|
1518
|
+
StatusCode: int
|
|
1519
|
+
ExecutedVersion: str
|
|
1520
|
+
EventStream: EventStream[InvokeWithResponseStreamResponseEventTypeDef]
|
|
1521
|
+
ResponseStreamContentType: str
|
|
1522
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
class ListLayersResponseTypeDef(TypedDict):
|
|
1526
|
+
NextMarker: str
|
|
1527
|
+
Layers: List[LayersListItemTypeDef]
|
|
1528
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
class FunctionConfigurationResponseTypeDef(TypedDict):
|
|
1532
|
+
FunctionName: str
|
|
1533
|
+
FunctionArn: str
|
|
1534
|
+
Runtime: RuntimeType
|
|
1535
|
+
Role: str
|
|
1536
|
+
Handler: str
|
|
1537
|
+
CodeSize: int
|
|
1538
|
+
Description: str
|
|
1539
|
+
Timeout: int
|
|
1540
|
+
MemorySize: int
|
|
1541
|
+
LastModified: str
|
|
1542
|
+
CodeSha256: str
|
|
1543
|
+
Version: str
|
|
1544
|
+
VpcConfig: VpcConfigResponseTypeDef
|
|
1545
|
+
DeadLetterConfig: DeadLetterConfigTypeDef
|
|
1546
|
+
Environment: EnvironmentResponseTypeDef
|
|
1547
|
+
KMSKeyArn: str
|
|
1548
|
+
TracingConfig: TracingConfigResponseTypeDef
|
|
1549
|
+
MasterArn: str
|
|
1550
|
+
RevisionId: str
|
|
1551
|
+
Layers: List[LayerTypeDef]
|
|
1552
|
+
State: StateType
|
|
1553
|
+
StateReason: str
|
|
1554
|
+
StateReasonCode: StateReasonCodeType
|
|
1555
|
+
LastUpdateStatus: LastUpdateStatusType
|
|
1556
|
+
LastUpdateStatusReason: str
|
|
1557
|
+
LastUpdateStatusReasonCode: LastUpdateStatusReasonCodeType
|
|
1558
|
+
FileSystemConfigs: List[FileSystemConfigTypeDef]
|
|
1559
|
+
PackageType: PackageTypeType
|
|
1560
|
+
ImageConfigResponse: ImageConfigResponseTypeDef
|
|
1561
|
+
SigningProfileVersionArn: str
|
|
1562
|
+
SigningJobArn: str
|
|
1563
|
+
Architectures: List[ArchitectureType]
|
|
1564
|
+
EphemeralStorage: EphemeralStorageTypeDef
|
|
1565
|
+
SnapStart: SnapStartResponseTypeDef
|
|
1566
|
+
RuntimeVersionConfig: RuntimeVersionConfigTypeDef
|
|
1567
|
+
LoggingConfig: LoggingConfigTypeDef
|
|
1568
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1569
|
+
|
|
1570
|
+
|
|
1571
|
+
class FunctionConfigurationTypeDef(TypedDict):
|
|
1572
|
+
FunctionName: NotRequired[str]
|
|
1573
|
+
FunctionArn: NotRequired[str]
|
|
1574
|
+
Runtime: NotRequired[RuntimeType]
|
|
1575
|
+
Role: NotRequired[str]
|
|
1576
|
+
Handler: NotRequired[str]
|
|
1577
|
+
CodeSize: NotRequired[int]
|
|
1578
|
+
Description: NotRequired[str]
|
|
1579
|
+
Timeout: NotRequired[int]
|
|
1580
|
+
MemorySize: NotRequired[int]
|
|
1581
|
+
LastModified: NotRequired[str]
|
|
1582
|
+
CodeSha256: NotRequired[str]
|
|
1583
|
+
Version: NotRequired[str]
|
|
1584
|
+
VpcConfig: NotRequired[VpcConfigResponseTypeDef]
|
|
1585
|
+
DeadLetterConfig: NotRequired[DeadLetterConfigTypeDef]
|
|
1586
|
+
Environment: NotRequired[EnvironmentResponseTypeDef]
|
|
1587
|
+
KMSKeyArn: NotRequired[str]
|
|
1588
|
+
TracingConfig: NotRequired[TracingConfigResponseTypeDef]
|
|
1589
|
+
MasterArn: NotRequired[str]
|
|
1590
|
+
RevisionId: NotRequired[str]
|
|
1591
|
+
Layers: NotRequired[List[LayerTypeDef]]
|
|
1592
|
+
State: NotRequired[StateType]
|
|
1593
|
+
StateReason: NotRequired[str]
|
|
1594
|
+
StateReasonCode: NotRequired[StateReasonCodeType]
|
|
1595
|
+
LastUpdateStatus: NotRequired[LastUpdateStatusType]
|
|
1596
|
+
LastUpdateStatusReason: NotRequired[str]
|
|
1597
|
+
LastUpdateStatusReasonCode: NotRequired[LastUpdateStatusReasonCodeType]
|
|
1598
|
+
FileSystemConfigs: NotRequired[List[FileSystemConfigTypeDef]]
|
|
1599
|
+
PackageType: NotRequired[PackageTypeType]
|
|
1600
|
+
ImageConfigResponse: NotRequired[ImageConfigResponseTypeDef]
|
|
1601
|
+
SigningProfileVersionArn: NotRequired[str]
|
|
1602
|
+
SigningJobArn: NotRequired[str]
|
|
1603
|
+
Architectures: NotRequired[List[ArchitectureType]]
|
|
1604
|
+
EphemeralStorage: NotRequired[EphemeralStorageTypeDef]
|
|
1605
|
+
SnapStart: NotRequired[SnapStartResponseTypeDef]
|
|
1606
|
+
RuntimeVersionConfig: NotRequired[RuntimeVersionConfigTypeDef]
|
|
1607
|
+
LoggingConfig: NotRequired[LoggingConfigTypeDef]
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
class ListFunctionEventInvokeConfigsResponseTypeDef(TypedDict):
|
|
1611
|
+
FunctionEventInvokeConfigs: List[FunctionEventInvokeConfigTypeDef]
|
|
1612
|
+
NextMarker: str
|
|
1613
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1614
|
+
|
|
1615
|
+
|
|
1616
|
+
class ListEventSourceMappingsResponseTypeDef(TypedDict):
|
|
1617
|
+
NextMarker: str
|
|
1618
|
+
EventSourceMappings: List[EventSourceMappingConfigurationTypeDef]
|
|
1619
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
class GetFunctionResponseTypeDef(TypedDict):
|
|
1623
|
+
Configuration: FunctionConfigurationTypeDef
|
|
1624
|
+
Code: FunctionCodeLocationTypeDef
|
|
1625
|
+
Tags: Dict[str, str]
|
|
1626
|
+
TagsError: TagsErrorTypeDef
|
|
1627
|
+
Concurrency: ConcurrencyTypeDef
|
|
1628
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
class ListFunctionsResponseTypeDef(TypedDict):
|
|
1632
|
+
NextMarker: str
|
|
1633
|
+
Functions: List[FunctionConfigurationTypeDef]
|
|
1634
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1635
|
+
|
|
1636
|
+
|
|
1637
|
+
class ListVersionsByFunctionResponseTypeDef(TypedDict):
|
|
1638
|
+
NextMarker: str
|
|
1639
|
+
Versions: List[FunctionConfigurationTypeDef]
|
|
1640
|
+
ResponseMetadata: ResponseMetadataTypeDef
|