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