|
43 | 43 | use AsyncAws\Lambda\Exception\ResourceConflictException; |
44 | 44 | use AsyncAws\Lambda\Exception\ResourceNotFoundException; |
45 | 45 | use AsyncAws\Lambda\Exception\ResourceNotReadyException; |
| 46 | +use AsyncAws\Lambda\Exception\S3FilesMountConnectivityException; |
| 47 | +use AsyncAws\Lambda\Exception\S3FilesMountFailureException; |
| 48 | +use AsyncAws\Lambda\Exception\S3FilesMountTimeoutException; |
46 | 49 | use AsyncAws\Lambda\Exception\SerializedRequestEntityTooLargeException; |
47 | 50 | use AsyncAws\Lambda\Exception\ServiceException; |
48 | 51 | use AsyncAws\Lambda\Exception\SnapStartException; |
@@ -288,6 +291,9 @@ public function getFunctionConfiguration($input): FunctionConfiguration |
288 | 291 | * @throws ResourceConflictException |
289 | 292 | * @throws ResourceNotFoundException |
290 | 293 | * @throws ResourceNotReadyException |
| 294 | + * @throws S3FilesMountConnectivityException |
| 295 | + * @throws S3FilesMountFailureException |
| 296 | + * @throws S3FilesMountTimeoutException |
291 | 297 | * @throws SerializedRequestEntityTooLargeException |
292 | 298 | * @throws ServiceException |
293 | 299 | * @throws SnapStartException |
@@ -326,6 +332,9 @@ public function invoke($input): InvocationResponse |
326 | 332 | 'ResourceConflictException' => ResourceConflictException::class, |
327 | 333 | 'ResourceNotFoundException' => ResourceNotFoundException::class, |
328 | 334 | 'ResourceNotReadyException' => ResourceNotReadyException::class, |
| 335 | + 'S3FilesMountConnectivityException' => S3FilesMountConnectivityException::class, |
| 336 | + 'S3FilesMountFailureException' => S3FilesMountFailureException::class, |
| 337 | + 'S3FilesMountTimeoutException' => S3FilesMountTimeoutException::class, |
329 | 338 | 'SerializedRequestEntityTooLargeException' => SerializedRequestEntityTooLargeException::class, |
330 | 339 | 'ServiceException' => ServiceException::class, |
331 | 340 | 'SnapStartException' => SnapStartException::class, |
|
0 commit comments