localstack-core 4.10.1.dev7__py3-none-any.whl → 4.10.1.dev42__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.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +560 -559
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1040 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +8901 -8818
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +639 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +340 -336
- localstack/aws/api/lambda_/__init__.py +574 -573
- localstack/aws/api/logs/__init__.py +676 -675
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1188 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +254 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1350 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +193 -193
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +323 -323
- localstack/aws/api/sts/__init__.py +90 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/service.py +11 -1
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +32 -9
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +93 -16
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +1 -1
- localstack/services/lambda_/runtimes.py +8 -3
- localstack/services/logs/provider.py +36 -19
- localstack/services/s3/provider.py +1 -1
- localstack/services/sns/v2/models.py +24 -1
- localstack/services/sns/v2/provider.py +144 -12
- localstack/services/sns/v2/utils.py +8 -0
- localstack/services/sqs/models.py +37 -10
- localstack/testing/snapshots/transformer_utility.py +2 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +6 -5
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +76 -76
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
from collections.abc import Iterable, Iterator
|
|
1
2
|
from datetime import datetime
|
|
2
3
|
from enum import StrEnum
|
|
3
|
-
from typing import IO,
|
|
4
|
+
from typing import IO, TypedDict
|
|
4
5
|
|
|
5
6
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
7
|
|
|
@@ -384,292 +385,292 @@ class CodeSigningConfigNotFoundException(ServiceException):
|
|
|
384
385
|
code: str = "CodeSigningConfigNotFoundException"
|
|
385
386
|
sender_fault: bool = True
|
|
386
387
|
status_code: int = 404
|
|
387
|
-
Type:
|
|
388
|
+
Type: String | None
|
|
388
389
|
|
|
389
390
|
|
|
390
391
|
class CodeStorageExceededException(ServiceException):
|
|
391
392
|
code: str = "CodeStorageExceededException"
|
|
392
393
|
sender_fault: bool = True
|
|
393
394
|
status_code: int = 400
|
|
394
|
-
Type:
|
|
395
|
+
Type: String | None
|
|
395
396
|
|
|
396
397
|
|
|
397
398
|
class CodeVerificationFailedException(ServiceException):
|
|
398
399
|
code: str = "CodeVerificationFailedException"
|
|
399
400
|
sender_fault: bool = True
|
|
400
401
|
status_code: int = 400
|
|
401
|
-
Type:
|
|
402
|
+
Type: String | None
|
|
402
403
|
|
|
403
404
|
|
|
404
405
|
class EC2AccessDeniedException(ServiceException):
|
|
405
406
|
code: str = "EC2AccessDeniedException"
|
|
406
407
|
sender_fault: bool = False
|
|
407
408
|
status_code: int = 502
|
|
408
|
-
Type:
|
|
409
|
+
Type: String | None
|
|
409
410
|
|
|
410
411
|
|
|
411
412
|
class EC2ThrottledException(ServiceException):
|
|
412
413
|
code: str = "EC2ThrottledException"
|
|
413
414
|
sender_fault: bool = False
|
|
414
415
|
status_code: int = 502
|
|
415
|
-
Type:
|
|
416
|
+
Type: String | None
|
|
416
417
|
|
|
417
418
|
|
|
418
419
|
class EC2UnexpectedException(ServiceException):
|
|
419
420
|
code: str = "EC2UnexpectedException"
|
|
420
421
|
sender_fault: bool = False
|
|
421
422
|
status_code: int = 502
|
|
422
|
-
Type:
|
|
423
|
-
EC2ErrorCode:
|
|
423
|
+
Type: String | None
|
|
424
|
+
EC2ErrorCode: String | None
|
|
424
425
|
|
|
425
426
|
|
|
426
427
|
class EFSIOException(ServiceException):
|
|
427
428
|
code: str = "EFSIOException"
|
|
428
429
|
sender_fault: bool = True
|
|
429
430
|
status_code: int = 410
|
|
430
|
-
Type:
|
|
431
|
+
Type: String | None
|
|
431
432
|
|
|
432
433
|
|
|
433
434
|
class EFSMountConnectivityException(ServiceException):
|
|
434
435
|
code: str = "EFSMountConnectivityException"
|
|
435
436
|
sender_fault: bool = True
|
|
436
437
|
status_code: int = 408
|
|
437
|
-
Type:
|
|
438
|
+
Type: String | None
|
|
438
439
|
|
|
439
440
|
|
|
440
441
|
class EFSMountFailureException(ServiceException):
|
|
441
442
|
code: str = "EFSMountFailureException"
|
|
442
443
|
sender_fault: bool = True
|
|
443
444
|
status_code: int = 403
|
|
444
|
-
Type:
|
|
445
|
+
Type: String | None
|
|
445
446
|
|
|
446
447
|
|
|
447
448
|
class EFSMountTimeoutException(ServiceException):
|
|
448
449
|
code: str = "EFSMountTimeoutException"
|
|
449
450
|
sender_fault: bool = True
|
|
450
451
|
status_code: int = 408
|
|
451
|
-
Type:
|
|
452
|
+
Type: String | None
|
|
452
453
|
|
|
453
454
|
|
|
454
455
|
class ENILimitReachedException(ServiceException):
|
|
455
456
|
code: str = "ENILimitReachedException"
|
|
456
457
|
sender_fault: bool = False
|
|
457
458
|
status_code: int = 502
|
|
458
|
-
Type:
|
|
459
|
+
Type: String | None
|
|
459
460
|
|
|
460
461
|
|
|
461
462
|
class InvalidCodeSignatureException(ServiceException):
|
|
462
463
|
code: str = "InvalidCodeSignatureException"
|
|
463
464
|
sender_fault: bool = True
|
|
464
465
|
status_code: int = 400
|
|
465
|
-
Type:
|
|
466
|
+
Type: String | None
|
|
466
467
|
|
|
467
468
|
|
|
468
469
|
class InvalidParameterValueException(ServiceException):
|
|
469
470
|
code: str = "InvalidParameterValueException"
|
|
470
471
|
sender_fault: bool = True
|
|
471
472
|
status_code: int = 400
|
|
472
|
-
Type:
|
|
473
|
+
Type: String | None
|
|
473
474
|
|
|
474
475
|
|
|
475
476
|
class InvalidRequestContentException(ServiceException):
|
|
476
477
|
code: str = "InvalidRequestContentException"
|
|
477
478
|
sender_fault: bool = True
|
|
478
479
|
status_code: int = 400
|
|
479
|
-
Type:
|
|
480
|
+
Type: String | None
|
|
480
481
|
|
|
481
482
|
|
|
482
483
|
class InvalidRuntimeException(ServiceException):
|
|
483
484
|
code: str = "InvalidRuntimeException"
|
|
484
485
|
sender_fault: bool = False
|
|
485
486
|
status_code: int = 502
|
|
486
|
-
Type:
|
|
487
|
+
Type: String | None
|
|
487
488
|
|
|
488
489
|
|
|
489
490
|
class InvalidSecurityGroupIDException(ServiceException):
|
|
490
491
|
code: str = "InvalidSecurityGroupIDException"
|
|
491
492
|
sender_fault: bool = False
|
|
492
493
|
status_code: int = 502
|
|
493
|
-
Type:
|
|
494
|
+
Type: String | None
|
|
494
495
|
|
|
495
496
|
|
|
496
497
|
class InvalidSubnetIDException(ServiceException):
|
|
497
498
|
code: str = "InvalidSubnetIDException"
|
|
498
499
|
sender_fault: bool = False
|
|
499
500
|
status_code: int = 502
|
|
500
|
-
Type:
|
|
501
|
+
Type: String | None
|
|
501
502
|
|
|
502
503
|
|
|
503
504
|
class InvalidZipFileException(ServiceException):
|
|
504
505
|
code: str = "InvalidZipFileException"
|
|
505
506
|
sender_fault: bool = False
|
|
506
507
|
status_code: int = 502
|
|
507
|
-
Type:
|
|
508
|
+
Type: String | None
|
|
508
509
|
|
|
509
510
|
|
|
510
511
|
class KMSAccessDeniedException(ServiceException):
|
|
511
512
|
code: str = "KMSAccessDeniedException"
|
|
512
513
|
sender_fault: bool = False
|
|
513
514
|
status_code: int = 502
|
|
514
|
-
Type:
|
|
515
|
+
Type: String | None
|
|
515
516
|
|
|
516
517
|
|
|
517
518
|
class KMSDisabledException(ServiceException):
|
|
518
519
|
code: str = "KMSDisabledException"
|
|
519
520
|
sender_fault: bool = False
|
|
520
521
|
status_code: int = 502
|
|
521
|
-
Type:
|
|
522
|
+
Type: String | None
|
|
522
523
|
|
|
523
524
|
|
|
524
525
|
class KMSInvalidStateException(ServiceException):
|
|
525
526
|
code: str = "KMSInvalidStateException"
|
|
526
527
|
sender_fault: bool = False
|
|
527
528
|
status_code: int = 502
|
|
528
|
-
Type:
|
|
529
|
+
Type: String | None
|
|
529
530
|
|
|
530
531
|
|
|
531
532
|
class KMSNotFoundException(ServiceException):
|
|
532
533
|
code: str = "KMSNotFoundException"
|
|
533
534
|
sender_fault: bool = False
|
|
534
535
|
status_code: int = 502
|
|
535
|
-
Type:
|
|
536
|
+
Type: String | None
|
|
536
537
|
|
|
537
538
|
|
|
538
539
|
class PolicyLengthExceededException(ServiceException):
|
|
539
540
|
code: str = "PolicyLengthExceededException"
|
|
540
541
|
sender_fault: bool = True
|
|
541
542
|
status_code: int = 400
|
|
542
|
-
Type:
|
|
543
|
+
Type: String | None
|
|
543
544
|
|
|
544
545
|
|
|
545
546
|
class PreconditionFailedException(ServiceException):
|
|
546
547
|
code: str = "PreconditionFailedException"
|
|
547
548
|
sender_fault: bool = True
|
|
548
549
|
status_code: int = 412
|
|
549
|
-
Type:
|
|
550
|
+
Type: String | None
|
|
550
551
|
|
|
551
552
|
|
|
552
553
|
class ProvisionedConcurrencyConfigNotFoundException(ServiceException):
|
|
553
554
|
code: str = "ProvisionedConcurrencyConfigNotFoundException"
|
|
554
555
|
sender_fault: bool = True
|
|
555
556
|
status_code: int = 404
|
|
556
|
-
Type:
|
|
557
|
+
Type: String | None
|
|
557
558
|
|
|
558
559
|
|
|
559
560
|
class RecursiveInvocationException(ServiceException):
|
|
560
561
|
code: str = "RecursiveInvocationException"
|
|
561
562
|
sender_fault: bool = True
|
|
562
563
|
status_code: int = 400
|
|
563
|
-
Type:
|
|
564
|
+
Type: String | None
|
|
564
565
|
|
|
565
566
|
|
|
566
567
|
class RequestTooLargeException(ServiceException):
|
|
567
568
|
code: str = "RequestTooLargeException"
|
|
568
569
|
sender_fault: bool = True
|
|
569
570
|
status_code: int = 413
|
|
570
|
-
Type:
|
|
571
|
+
Type: String | None
|
|
571
572
|
|
|
572
573
|
|
|
573
574
|
class ResourceConflictException(ServiceException):
|
|
574
575
|
code: str = "ResourceConflictException"
|
|
575
576
|
sender_fault: bool = True
|
|
576
577
|
status_code: int = 409
|
|
577
|
-
Type:
|
|
578
|
+
Type: String | None
|
|
578
579
|
|
|
579
580
|
|
|
580
581
|
class ResourceInUseException(ServiceException):
|
|
581
582
|
code: str = "ResourceInUseException"
|
|
582
583
|
sender_fault: bool = True
|
|
583
584
|
status_code: int = 400
|
|
584
|
-
Type:
|
|
585
|
+
Type: String | None
|
|
585
586
|
|
|
586
587
|
|
|
587
588
|
class ResourceNotFoundException(ServiceException):
|
|
588
589
|
code: str = "ResourceNotFoundException"
|
|
589
590
|
sender_fault: bool = True
|
|
590
591
|
status_code: int = 404
|
|
591
|
-
Type:
|
|
592
|
+
Type: String | None
|
|
592
593
|
|
|
593
594
|
|
|
594
595
|
class ResourceNotReadyException(ServiceException):
|
|
595
596
|
code: str = "ResourceNotReadyException"
|
|
596
597
|
sender_fault: bool = False
|
|
597
598
|
status_code: int = 502
|
|
598
|
-
Type:
|
|
599
|
+
Type: String | None
|
|
599
600
|
|
|
600
601
|
|
|
601
602
|
class SerializedRequestEntityTooLargeException(ServiceException):
|
|
602
603
|
code: str = "SerializedRequestEntityTooLargeException"
|
|
603
604
|
sender_fault: bool = True
|
|
604
605
|
status_code: int = 413
|
|
605
|
-
Type:
|
|
606
|
+
Type: String | None
|
|
606
607
|
|
|
607
608
|
|
|
608
609
|
class ServiceException(ServiceException):
|
|
609
610
|
code: str = "ServiceException"
|
|
610
611
|
sender_fault: bool = False
|
|
611
612
|
status_code: int = 500
|
|
612
|
-
Type:
|
|
613
|
+
Type: String | None
|
|
613
614
|
|
|
614
615
|
|
|
615
616
|
class SnapStartException(ServiceException):
|
|
616
617
|
code: str = "SnapStartException"
|
|
617
618
|
sender_fault: bool = True
|
|
618
619
|
status_code: int = 400
|
|
619
|
-
Type:
|
|
620
|
+
Type: String | None
|
|
620
621
|
|
|
621
622
|
|
|
622
623
|
class SnapStartNotReadyException(ServiceException):
|
|
623
624
|
code: str = "SnapStartNotReadyException"
|
|
624
625
|
sender_fault: bool = True
|
|
625
626
|
status_code: int = 409
|
|
626
|
-
Type:
|
|
627
|
+
Type: String | None
|
|
627
628
|
|
|
628
629
|
|
|
629
630
|
class SnapStartTimeoutException(ServiceException):
|
|
630
631
|
code: str = "SnapStartTimeoutException"
|
|
631
632
|
sender_fault: bool = True
|
|
632
633
|
status_code: int = 408
|
|
633
|
-
Type:
|
|
634
|
+
Type: String | None
|
|
634
635
|
|
|
635
636
|
|
|
636
637
|
class SubnetIPAddressLimitReachedException(ServiceException):
|
|
637
638
|
code: str = "SubnetIPAddressLimitReachedException"
|
|
638
639
|
sender_fault: bool = False
|
|
639
640
|
status_code: int = 502
|
|
640
|
-
Type:
|
|
641
|
+
Type: String | None
|
|
641
642
|
|
|
642
643
|
|
|
643
644
|
class TooManyRequestsException(ServiceException):
|
|
644
645
|
code: str = "TooManyRequestsException"
|
|
645
646
|
sender_fault: bool = True
|
|
646
647
|
status_code: int = 429
|
|
647
|
-
retryAfterSeconds:
|
|
648
|
-
Type:
|
|
649
|
-
Reason:
|
|
648
|
+
retryAfterSeconds: String | None
|
|
649
|
+
Type: String | None
|
|
650
|
+
Reason: ThrottleReason | None
|
|
650
651
|
|
|
651
652
|
|
|
652
653
|
class UnsupportedMediaTypeException(ServiceException):
|
|
653
654
|
code: str = "UnsupportedMediaTypeException"
|
|
654
655
|
sender_fault: bool = True
|
|
655
656
|
status_code: int = 415
|
|
656
|
-
Type:
|
|
657
|
+
Type: String | None
|
|
657
658
|
|
|
658
659
|
|
|
659
660
|
Long = int
|
|
660
661
|
|
|
661
662
|
|
|
662
663
|
class AccountLimit(TypedDict, total=False):
|
|
663
|
-
TotalCodeSize:
|
|
664
|
-
CodeSizeUnzipped:
|
|
665
|
-
CodeSizeZipped:
|
|
666
|
-
ConcurrentExecutions:
|
|
667
|
-
UnreservedConcurrentExecutions:
|
|
664
|
+
TotalCodeSize: Long | None
|
|
665
|
+
CodeSizeUnzipped: Long | None
|
|
666
|
+
CodeSizeZipped: Long | None
|
|
667
|
+
ConcurrentExecutions: Integer | None
|
|
668
|
+
UnreservedConcurrentExecutions: UnreservedConcurrentExecutions | None
|
|
668
669
|
|
|
669
670
|
|
|
670
671
|
class AccountUsage(TypedDict, total=False):
|
|
671
|
-
TotalCodeSize:
|
|
672
|
-
FunctionCount:
|
|
672
|
+
TotalCodeSize: Long | None
|
|
673
|
+
FunctionCount: Long | None
|
|
673
674
|
|
|
674
675
|
|
|
675
676
|
LayerVersionNumber = int
|
|
@@ -681,13 +682,13 @@ class AddLayerVersionPermissionRequest(ServiceRequest):
|
|
|
681
682
|
StatementId: StatementId
|
|
682
683
|
Action: LayerPermissionAllowedAction
|
|
683
684
|
Principal: LayerPermissionAllowedPrincipal
|
|
684
|
-
OrganizationId:
|
|
685
|
-
RevisionId:
|
|
685
|
+
OrganizationId: OrganizationId | None
|
|
686
|
+
RevisionId: String | None
|
|
686
687
|
|
|
687
688
|
|
|
688
689
|
class AddLayerVersionPermissionResponse(TypedDict, total=False):
|
|
689
|
-
Statement:
|
|
690
|
-
RevisionId:
|
|
690
|
+
Statement: String | None
|
|
691
|
+
RevisionId: String | None
|
|
691
692
|
|
|
692
693
|
|
|
693
694
|
class AddPermissionRequest(ServiceRequest):
|
|
@@ -695,40 +696,40 @@ class AddPermissionRequest(ServiceRequest):
|
|
|
695
696
|
StatementId: StatementId
|
|
696
697
|
Action: Action
|
|
697
698
|
Principal: Principal
|
|
698
|
-
SourceArn:
|
|
699
|
-
SourceAccount:
|
|
700
|
-
EventSourceToken:
|
|
701
|
-
Qualifier:
|
|
702
|
-
RevisionId:
|
|
703
|
-
PrincipalOrgID:
|
|
704
|
-
FunctionUrlAuthType:
|
|
705
|
-
InvokedViaFunctionUrl:
|
|
699
|
+
SourceArn: Arn | None
|
|
700
|
+
SourceAccount: SourceOwner | None
|
|
701
|
+
EventSourceToken: EventSourceToken | None
|
|
702
|
+
Qualifier: Qualifier | None
|
|
703
|
+
RevisionId: String | None
|
|
704
|
+
PrincipalOrgID: PrincipalOrgID | None
|
|
705
|
+
FunctionUrlAuthType: FunctionUrlAuthType | None
|
|
706
|
+
InvokedViaFunctionUrl: InvokedViaFunctionUrl | None
|
|
706
707
|
|
|
707
708
|
|
|
708
709
|
class AddPermissionResponse(TypedDict, total=False):
|
|
709
|
-
Statement:
|
|
710
|
+
Statement: String | None
|
|
710
711
|
|
|
711
712
|
|
|
712
|
-
AdditionalVersionWeights =
|
|
713
|
+
AdditionalVersionWeights = dict[AdditionalVersion, Weight]
|
|
713
714
|
|
|
714
715
|
|
|
715
716
|
class AliasRoutingConfiguration(TypedDict, total=False):
|
|
716
|
-
AdditionalVersionWeights:
|
|
717
|
+
AdditionalVersionWeights: AdditionalVersionWeights | None
|
|
717
718
|
|
|
718
719
|
|
|
719
720
|
class AliasConfiguration(TypedDict, total=False):
|
|
720
|
-
AliasArn:
|
|
721
|
-
Name:
|
|
722
|
-
FunctionVersion:
|
|
723
|
-
Description:
|
|
724
|
-
RoutingConfig:
|
|
725
|
-
RevisionId:
|
|
721
|
+
AliasArn: FunctionArn | None
|
|
722
|
+
Name: Alias | None
|
|
723
|
+
FunctionVersion: Version | None
|
|
724
|
+
Description: Description | None
|
|
725
|
+
RoutingConfig: AliasRoutingConfiguration | None
|
|
726
|
+
RevisionId: String | None
|
|
726
727
|
|
|
727
728
|
|
|
728
|
-
AliasList =
|
|
729
|
-
AllowMethodsList =
|
|
730
|
-
AllowOriginsList =
|
|
731
|
-
SigningProfileVersionArns =
|
|
729
|
+
AliasList = list[AliasConfiguration]
|
|
730
|
+
AllowMethodsList = list[Method]
|
|
731
|
+
AllowOriginsList = list[Origin]
|
|
732
|
+
SigningProfileVersionArns = list[Arn]
|
|
732
733
|
|
|
733
734
|
|
|
734
735
|
class AllowedPublishers(TypedDict, total=False):
|
|
@@ -736,87 +737,87 @@ class AllowedPublishers(TypedDict, total=False):
|
|
|
736
737
|
|
|
737
738
|
|
|
738
739
|
class KafkaSchemaValidationConfig(TypedDict, total=False):
|
|
739
|
-
Attribute:
|
|
740
|
+
Attribute: KafkaSchemaValidationAttribute | None
|
|
740
741
|
|
|
741
742
|
|
|
742
|
-
KafkaSchemaValidationConfigList =
|
|
743
|
+
KafkaSchemaValidationConfigList = list[KafkaSchemaValidationConfig]
|
|
743
744
|
|
|
744
745
|
|
|
745
746
|
class KafkaSchemaRegistryAccessConfig(TypedDict, total=False):
|
|
746
|
-
Type:
|
|
747
|
-
URI:
|
|
747
|
+
Type: KafkaSchemaRegistryAuthType | None
|
|
748
|
+
URI: Arn | None
|
|
748
749
|
|
|
749
750
|
|
|
750
|
-
KafkaSchemaRegistryAccessConfigList =
|
|
751
|
+
KafkaSchemaRegistryAccessConfigList = list[KafkaSchemaRegistryAccessConfig]
|
|
751
752
|
|
|
752
753
|
|
|
753
754
|
class KafkaSchemaRegistryConfig(TypedDict, total=False):
|
|
754
|
-
SchemaRegistryURI:
|
|
755
|
-
EventRecordFormat:
|
|
756
|
-
AccessConfigs:
|
|
757
|
-
SchemaValidationConfigs:
|
|
755
|
+
SchemaRegistryURI: SchemaRegistryUri | None
|
|
756
|
+
EventRecordFormat: SchemaRegistryEventRecordFormat | None
|
|
757
|
+
AccessConfigs: KafkaSchemaRegistryAccessConfigList | None
|
|
758
|
+
SchemaValidationConfigs: KafkaSchemaValidationConfigList | None
|
|
758
759
|
|
|
759
760
|
|
|
760
761
|
class AmazonManagedKafkaEventSourceConfig(TypedDict, total=False):
|
|
761
|
-
ConsumerGroupId:
|
|
762
|
-
SchemaRegistryConfig:
|
|
762
|
+
ConsumerGroupId: URI | None
|
|
763
|
+
SchemaRegistryConfig: KafkaSchemaRegistryConfig | None
|
|
763
764
|
|
|
764
765
|
|
|
765
|
-
ArchitecturesList =
|
|
766
|
+
ArchitecturesList = list[Architecture]
|
|
766
767
|
Blob = bytes
|
|
767
768
|
BlobStream = bytes
|
|
768
769
|
|
|
769
770
|
|
|
770
771
|
class CodeSigningPolicies(TypedDict, total=False):
|
|
771
|
-
UntrustedArtifactOnDeployment:
|
|
772
|
+
UntrustedArtifactOnDeployment: CodeSigningPolicy | None
|
|
772
773
|
|
|
773
774
|
|
|
774
775
|
class CodeSigningConfig(TypedDict, total=False):
|
|
775
776
|
CodeSigningConfigId: CodeSigningConfigId
|
|
776
777
|
CodeSigningConfigArn: CodeSigningConfigArn
|
|
777
|
-
Description:
|
|
778
|
+
Description: Description | None
|
|
778
779
|
AllowedPublishers: AllowedPublishers
|
|
779
780
|
CodeSigningPolicies: CodeSigningPolicies
|
|
780
781
|
LastModified: Timestamp
|
|
781
782
|
|
|
782
783
|
|
|
783
|
-
CodeSigningConfigList =
|
|
784
|
-
CompatibleArchitectures =
|
|
785
|
-
CompatibleRuntimes =
|
|
784
|
+
CodeSigningConfigList = list[CodeSigningConfig]
|
|
785
|
+
CompatibleArchitectures = list[Architecture]
|
|
786
|
+
CompatibleRuntimes = list[Runtime]
|
|
786
787
|
|
|
787
788
|
|
|
788
789
|
class Concurrency(TypedDict, total=False):
|
|
789
|
-
ReservedConcurrentExecutions:
|
|
790
|
+
ReservedConcurrentExecutions: ReservedConcurrentExecutions | None
|
|
790
791
|
|
|
791
792
|
|
|
792
|
-
HeadersList =
|
|
793
|
+
HeadersList = list[Header]
|
|
793
794
|
|
|
794
795
|
|
|
795
796
|
class Cors(TypedDict, total=False):
|
|
796
|
-
AllowCredentials:
|
|
797
|
-
AllowHeaders:
|
|
798
|
-
AllowMethods:
|
|
799
|
-
AllowOrigins:
|
|
800
|
-
ExposeHeaders:
|
|
801
|
-
MaxAge:
|
|
797
|
+
AllowCredentials: AllowCredentials | None
|
|
798
|
+
AllowHeaders: HeadersList | None
|
|
799
|
+
AllowMethods: AllowMethodsList | None
|
|
800
|
+
AllowOrigins: AllowOriginsList | None
|
|
801
|
+
ExposeHeaders: HeadersList | None
|
|
802
|
+
MaxAge: MaxAge | None
|
|
802
803
|
|
|
803
804
|
|
|
804
805
|
class CreateAliasRequest(ServiceRequest):
|
|
805
806
|
FunctionName: FunctionName
|
|
806
807
|
Name: Alias
|
|
807
808
|
FunctionVersion: Version
|
|
808
|
-
Description:
|
|
809
|
-
RoutingConfig:
|
|
809
|
+
Description: Description | None
|
|
810
|
+
RoutingConfig: AliasRoutingConfiguration | None
|
|
810
811
|
|
|
811
812
|
|
|
812
|
-
Tags =
|
|
813
|
+
Tags = dict[TagKey, TagValue]
|
|
813
814
|
|
|
814
815
|
|
|
815
816
|
class CreateCodeSigningConfigRequest(ServiceRequest):
|
|
816
|
-
Description:
|
|
817
|
+
Description: Description | None
|
|
817
818
|
AllowedPublishers: AllowedPublishers
|
|
818
|
-
CodeSigningPolicies:
|
|
819
|
-
Tags:
|
|
819
|
+
CodeSigningPolicies: CodeSigningPolicies | None
|
|
820
|
+
Tags: Tags | None
|
|
820
821
|
|
|
821
822
|
|
|
822
823
|
class CreateCodeSigningConfigResponse(TypedDict, total=False):
|
|
@@ -824,130 +825,130 @@ class CreateCodeSigningConfigResponse(TypedDict, total=False):
|
|
|
824
825
|
|
|
825
826
|
|
|
826
827
|
class ProvisionedPollerConfig(TypedDict, total=False):
|
|
827
|
-
MinimumPollers:
|
|
828
|
-
MaximumPollers:
|
|
828
|
+
MinimumPollers: MinimumNumberOfPollers | None
|
|
829
|
+
MaximumPollers: MaximumNumberOfPollers | None
|
|
829
830
|
|
|
830
831
|
|
|
831
|
-
EventSourceMappingMetricList =
|
|
832
|
+
EventSourceMappingMetricList = list[EventSourceMappingMetric]
|
|
832
833
|
|
|
833
834
|
|
|
834
835
|
class EventSourceMappingMetricsConfig(TypedDict, total=False):
|
|
835
|
-
Metrics:
|
|
836
|
+
Metrics: EventSourceMappingMetricList | None
|
|
836
837
|
|
|
837
838
|
|
|
838
839
|
class DocumentDBEventSourceConfig(TypedDict, total=False):
|
|
839
|
-
DatabaseName:
|
|
840
|
-
CollectionName:
|
|
841
|
-
FullDocument:
|
|
840
|
+
DatabaseName: DatabaseName | None
|
|
841
|
+
CollectionName: CollectionName | None
|
|
842
|
+
FullDocument: FullDocument | None
|
|
842
843
|
|
|
843
844
|
|
|
844
845
|
class ScalingConfig(TypedDict, total=False):
|
|
845
|
-
MaximumConcurrency:
|
|
846
|
+
MaximumConcurrency: MaximumConcurrency | None
|
|
846
847
|
|
|
847
848
|
|
|
848
849
|
class SelfManagedKafkaEventSourceConfig(TypedDict, total=False):
|
|
849
|
-
ConsumerGroupId:
|
|
850
|
-
SchemaRegistryConfig:
|
|
850
|
+
ConsumerGroupId: URI | None
|
|
851
|
+
SchemaRegistryConfig: KafkaSchemaRegistryConfig | None
|
|
851
852
|
|
|
852
853
|
|
|
853
|
-
FunctionResponseTypeList =
|
|
854
|
-
EndpointLists =
|
|
855
|
-
Endpoints =
|
|
854
|
+
FunctionResponseTypeList = list[FunctionResponseType]
|
|
855
|
+
EndpointLists = list[Endpoint]
|
|
856
|
+
Endpoints = dict[EndPointType, EndpointLists]
|
|
856
857
|
|
|
857
858
|
|
|
858
859
|
class SelfManagedEventSource(TypedDict, total=False):
|
|
859
|
-
Endpoints:
|
|
860
|
+
Endpoints: Endpoints | None
|
|
860
861
|
|
|
861
862
|
|
|
862
863
|
class SourceAccessConfiguration(TypedDict, total=False):
|
|
863
|
-
Type:
|
|
864
|
-
URI:
|
|
864
|
+
Type: SourceAccessType | None
|
|
865
|
+
URI: URI | None
|
|
865
866
|
|
|
866
867
|
|
|
867
|
-
SourceAccessConfigurations =
|
|
868
|
-
Queues =
|
|
869
|
-
Topics =
|
|
868
|
+
SourceAccessConfigurations = list[SourceAccessConfiguration]
|
|
869
|
+
Queues = list[Queue]
|
|
870
|
+
Topics = list[Topic]
|
|
870
871
|
|
|
871
872
|
|
|
872
873
|
class OnFailure(TypedDict, total=False):
|
|
873
|
-
Destination:
|
|
874
|
+
Destination: DestinationArn | None
|
|
874
875
|
|
|
875
876
|
|
|
876
877
|
class OnSuccess(TypedDict, total=False):
|
|
877
|
-
Destination:
|
|
878
|
+
Destination: DestinationArn | None
|
|
878
879
|
|
|
879
880
|
|
|
880
881
|
class DestinationConfig(TypedDict, total=False):
|
|
881
|
-
OnSuccess:
|
|
882
|
-
OnFailure:
|
|
882
|
+
OnSuccess: OnSuccess | None
|
|
883
|
+
OnFailure: OnFailure | None
|
|
883
884
|
|
|
884
885
|
|
|
885
886
|
Date = datetime
|
|
886
887
|
|
|
887
888
|
|
|
888
889
|
class Filter(TypedDict, total=False):
|
|
889
|
-
Pattern:
|
|
890
|
+
Pattern: Pattern | None
|
|
890
891
|
|
|
891
892
|
|
|
892
|
-
FilterList =
|
|
893
|
+
FilterList = list[Filter]
|
|
893
894
|
|
|
894
895
|
|
|
895
896
|
class FilterCriteria(TypedDict, total=False):
|
|
896
|
-
Filters:
|
|
897
|
+
Filters: FilterList | None
|
|
897
898
|
|
|
898
899
|
|
|
899
900
|
class CreateEventSourceMappingRequest(ServiceRequest):
|
|
900
|
-
EventSourceArn:
|
|
901
|
+
EventSourceArn: Arn | None
|
|
901
902
|
FunctionName: FunctionName
|
|
902
|
-
Enabled:
|
|
903
|
-
BatchSize:
|
|
904
|
-
FilterCriteria:
|
|
905
|
-
MaximumBatchingWindowInSeconds:
|
|
906
|
-
ParallelizationFactor:
|
|
907
|
-
StartingPosition:
|
|
908
|
-
StartingPositionTimestamp:
|
|
909
|
-
DestinationConfig:
|
|
910
|
-
MaximumRecordAgeInSeconds:
|
|
911
|
-
BisectBatchOnFunctionError:
|
|
912
|
-
MaximumRetryAttempts:
|
|
913
|
-
Tags:
|
|
914
|
-
TumblingWindowInSeconds:
|
|
915
|
-
Topics:
|
|
916
|
-
Queues:
|
|
917
|
-
SourceAccessConfigurations:
|
|
918
|
-
SelfManagedEventSource:
|
|
919
|
-
FunctionResponseTypes:
|
|
920
|
-
AmazonManagedKafkaEventSourceConfig:
|
|
921
|
-
SelfManagedKafkaEventSourceConfig:
|
|
922
|
-
ScalingConfig:
|
|
923
|
-
DocumentDBEventSourceConfig:
|
|
924
|
-
KMSKeyArn:
|
|
925
|
-
MetricsConfig:
|
|
926
|
-
ProvisionedPollerConfig:
|
|
903
|
+
Enabled: Enabled | None
|
|
904
|
+
BatchSize: BatchSize | None
|
|
905
|
+
FilterCriteria: FilterCriteria | None
|
|
906
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
907
|
+
ParallelizationFactor: ParallelizationFactor | None
|
|
908
|
+
StartingPosition: EventSourcePosition | None
|
|
909
|
+
StartingPositionTimestamp: Date | None
|
|
910
|
+
DestinationConfig: DestinationConfig | None
|
|
911
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
912
|
+
BisectBatchOnFunctionError: BisectBatchOnFunctionError | None
|
|
913
|
+
MaximumRetryAttempts: MaximumRetryAttemptsEventSourceMapping | None
|
|
914
|
+
Tags: Tags | None
|
|
915
|
+
TumblingWindowInSeconds: TumblingWindowInSeconds | None
|
|
916
|
+
Topics: Topics | None
|
|
917
|
+
Queues: Queues | None
|
|
918
|
+
SourceAccessConfigurations: SourceAccessConfigurations | None
|
|
919
|
+
SelfManagedEventSource: SelfManagedEventSource | None
|
|
920
|
+
FunctionResponseTypes: FunctionResponseTypeList | None
|
|
921
|
+
AmazonManagedKafkaEventSourceConfig: AmazonManagedKafkaEventSourceConfig | None
|
|
922
|
+
SelfManagedKafkaEventSourceConfig: SelfManagedKafkaEventSourceConfig | None
|
|
923
|
+
ScalingConfig: ScalingConfig | None
|
|
924
|
+
DocumentDBEventSourceConfig: DocumentDBEventSourceConfig | None
|
|
925
|
+
KMSKeyArn: KMSKeyArn | None
|
|
926
|
+
MetricsConfig: EventSourceMappingMetricsConfig | None
|
|
927
|
+
ProvisionedPollerConfig: ProvisionedPollerConfig | None
|
|
927
928
|
|
|
928
929
|
|
|
929
930
|
class LoggingConfig(TypedDict, total=False):
|
|
930
|
-
LogFormat:
|
|
931
|
-
ApplicationLogLevel:
|
|
932
|
-
SystemLogLevel:
|
|
933
|
-
LogGroup:
|
|
931
|
+
LogFormat: LogFormat | None
|
|
932
|
+
ApplicationLogLevel: ApplicationLogLevel | None
|
|
933
|
+
SystemLogLevel: SystemLogLevel | None
|
|
934
|
+
LogGroup: LogGroup | None
|
|
934
935
|
|
|
935
936
|
|
|
936
937
|
class SnapStart(TypedDict, total=False):
|
|
937
|
-
ApplyOn:
|
|
938
|
+
ApplyOn: SnapStartApplyOn | None
|
|
938
939
|
|
|
939
940
|
|
|
940
941
|
class EphemeralStorage(TypedDict, total=False):
|
|
941
942
|
Size: EphemeralStorageSize
|
|
942
943
|
|
|
943
944
|
|
|
944
|
-
StringList =
|
|
945
|
+
StringList = list[String]
|
|
945
946
|
|
|
946
947
|
|
|
947
948
|
class ImageConfig(TypedDict, total=False):
|
|
948
|
-
EntryPoint:
|
|
949
|
-
Command:
|
|
950
|
-
WorkingDirectory:
|
|
949
|
+
EntryPoint: StringList | None
|
|
950
|
+
Command: StringList | None
|
|
951
|
+
WorkingDirectory: WorkingDirectory | None
|
|
951
952
|
|
|
952
953
|
|
|
953
954
|
class FileSystemConfig(TypedDict, total=False):
|
|
@@ -955,86 +956,86 @@ class FileSystemConfig(TypedDict, total=False):
|
|
|
955
956
|
LocalMountPath: LocalMountPath
|
|
956
957
|
|
|
957
958
|
|
|
958
|
-
FileSystemConfigList =
|
|
959
|
-
LayerList =
|
|
959
|
+
FileSystemConfigList = list[FileSystemConfig]
|
|
960
|
+
LayerList = list[LayerVersionArn]
|
|
960
961
|
|
|
961
962
|
|
|
962
963
|
class TracingConfig(TypedDict, total=False):
|
|
963
|
-
Mode:
|
|
964
|
+
Mode: TracingMode | None
|
|
964
965
|
|
|
965
966
|
|
|
966
|
-
EnvironmentVariables =
|
|
967
|
+
EnvironmentVariables = dict[EnvironmentVariableName, EnvironmentVariableValue]
|
|
967
968
|
|
|
968
969
|
|
|
969
970
|
class Environment(TypedDict, total=False):
|
|
970
|
-
Variables:
|
|
971
|
+
Variables: EnvironmentVariables | None
|
|
971
972
|
|
|
972
973
|
|
|
973
974
|
class DeadLetterConfig(TypedDict, total=False):
|
|
974
|
-
TargetArn:
|
|
975
|
+
TargetArn: ResourceArn | None
|
|
975
976
|
|
|
976
977
|
|
|
977
|
-
SecurityGroupIds =
|
|
978
|
-
SubnetIds =
|
|
978
|
+
SecurityGroupIds = list[SecurityGroupId]
|
|
979
|
+
SubnetIds = list[SubnetId]
|
|
979
980
|
|
|
980
981
|
|
|
981
982
|
class VpcConfig(TypedDict, total=False):
|
|
982
|
-
SubnetIds:
|
|
983
|
-
SecurityGroupIds:
|
|
984
|
-
Ipv6AllowedForDualStack:
|
|
983
|
+
SubnetIds: SubnetIds | None
|
|
984
|
+
SecurityGroupIds: SecurityGroupIds | None
|
|
985
|
+
Ipv6AllowedForDualStack: NullableBoolean | None
|
|
985
986
|
|
|
986
987
|
|
|
987
988
|
class FunctionCode(TypedDict, total=False):
|
|
988
|
-
ZipFile:
|
|
989
|
-
S3Bucket:
|
|
990
|
-
S3Key:
|
|
991
|
-
S3ObjectVersion:
|
|
992
|
-
ImageUri:
|
|
993
|
-
SourceKMSKeyArn:
|
|
989
|
+
ZipFile: Blob | None
|
|
990
|
+
S3Bucket: S3Bucket | None
|
|
991
|
+
S3Key: S3Key | None
|
|
992
|
+
S3ObjectVersion: S3ObjectVersion | None
|
|
993
|
+
ImageUri: String | None
|
|
994
|
+
SourceKMSKeyArn: KMSKeyArn | None
|
|
994
995
|
|
|
995
996
|
|
|
996
997
|
class CreateFunctionRequest(ServiceRequest):
|
|
997
998
|
FunctionName: FunctionName
|
|
998
|
-
Runtime:
|
|
999
|
+
Runtime: Runtime | None
|
|
999
1000
|
Role: RoleArn
|
|
1000
|
-
Handler:
|
|
1001
|
+
Handler: Handler | None
|
|
1001
1002
|
Code: FunctionCode
|
|
1002
|
-
Description:
|
|
1003
|
-
Timeout:
|
|
1004
|
-
MemorySize:
|
|
1005
|
-
Publish:
|
|
1006
|
-
VpcConfig:
|
|
1007
|
-
PackageType:
|
|
1008
|
-
DeadLetterConfig:
|
|
1009
|
-
Environment:
|
|
1010
|
-
KMSKeyArn:
|
|
1011
|
-
TracingConfig:
|
|
1012
|
-
Tags:
|
|
1013
|
-
Layers:
|
|
1014
|
-
FileSystemConfigs:
|
|
1015
|
-
ImageConfig:
|
|
1016
|
-
CodeSigningConfigArn:
|
|
1017
|
-
Architectures:
|
|
1018
|
-
EphemeralStorage:
|
|
1019
|
-
SnapStart:
|
|
1020
|
-
LoggingConfig:
|
|
1003
|
+
Description: Description | None
|
|
1004
|
+
Timeout: Timeout | None
|
|
1005
|
+
MemorySize: MemorySize | None
|
|
1006
|
+
Publish: Boolean | None
|
|
1007
|
+
VpcConfig: VpcConfig | None
|
|
1008
|
+
PackageType: PackageType | None
|
|
1009
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
1010
|
+
Environment: Environment | None
|
|
1011
|
+
KMSKeyArn: KMSKeyArn | None
|
|
1012
|
+
TracingConfig: TracingConfig | None
|
|
1013
|
+
Tags: Tags | None
|
|
1014
|
+
Layers: LayerList | None
|
|
1015
|
+
FileSystemConfigs: FileSystemConfigList | None
|
|
1016
|
+
ImageConfig: ImageConfig | None
|
|
1017
|
+
CodeSigningConfigArn: CodeSigningConfigArn | None
|
|
1018
|
+
Architectures: ArchitecturesList | None
|
|
1019
|
+
EphemeralStorage: EphemeralStorage | None
|
|
1020
|
+
SnapStart: SnapStart | None
|
|
1021
|
+
LoggingConfig: LoggingConfig | None
|
|
1021
1022
|
|
|
1022
1023
|
|
|
1023
1024
|
class CreateFunctionUrlConfigRequest(ServiceRequest):
|
|
1024
1025
|
FunctionName: FunctionName
|
|
1025
|
-
Qualifier:
|
|
1026
|
+
Qualifier: FunctionUrlQualifier | None
|
|
1026
1027
|
AuthType: FunctionUrlAuthType
|
|
1027
|
-
Cors:
|
|
1028
|
-
InvokeMode:
|
|
1028
|
+
Cors: Cors | None
|
|
1029
|
+
InvokeMode: InvokeMode | None
|
|
1029
1030
|
|
|
1030
1031
|
|
|
1031
1032
|
class CreateFunctionUrlConfigResponse(TypedDict, total=False):
|
|
1032
1033
|
FunctionUrl: FunctionUrl
|
|
1033
1034
|
FunctionArn: FunctionArn
|
|
1034
1035
|
AuthType: FunctionUrlAuthType
|
|
1035
|
-
Cors:
|
|
1036
|
+
Cors: Cors | None
|
|
1036
1037
|
CreationTime: Timestamp
|
|
1037
|
-
InvokeMode:
|
|
1038
|
+
InvokeMode: InvokeMode | None
|
|
1038
1039
|
|
|
1039
1040
|
|
|
1040
1041
|
class DeleteAliasRequest(ServiceRequest):
|
|
@@ -1064,17 +1065,17 @@ class DeleteFunctionConcurrencyRequest(ServiceRequest):
|
|
|
1064
1065
|
|
|
1065
1066
|
class DeleteFunctionEventInvokeConfigRequest(ServiceRequest):
|
|
1066
1067
|
FunctionName: FunctionName
|
|
1067
|
-
Qualifier:
|
|
1068
|
+
Qualifier: Qualifier | None
|
|
1068
1069
|
|
|
1069
1070
|
|
|
1070
1071
|
class DeleteFunctionRequest(ServiceRequest):
|
|
1071
1072
|
FunctionName: FunctionName
|
|
1072
|
-
Qualifier:
|
|
1073
|
+
Qualifier: Qualifier | None
|
|
1073
1074
|
|
|
1074
1075
|
|
|
1075
1076
|
class DeleteFunctionUrlConfigRequest(ServiceRequest):
|
|
1076
1077
|
FunctionName: FunctionName
|
|
1077
|
-
Qualifier:
|
|
1078
|
+
Qualifier: FunctionUrlQualifier | None
|
|
1078
1079
|
|
|
1079
1080
|
|
|
1080
1081
|
class DeleteLayerVersionRequest(ServiceRequest):
|
|
@@ -1088,162 +1089,162 @@ class DeleteProvisionedConcurrencyConfigRequest(ServiceRequest):
|
|
|
1088
1089
|
|
|
1089
1090
|
|
|
1090
1091
|
class EnvironmentError(TypedDict, total=False):
|
|
1091
|
-
ErrorCode:
|
|
1092
|
-
Message:
|
|
1092
|
+
ErrorCode: String | None
|
|
1093
|
+
Message: SensitiveString | None
|
|
1093
1094
|
|
|
1094
1095
|
|
|
1095
1096
|
class EnvironmentResponse(TypedDict, total=False):
|
|
1096
|
-
Variables:
|
|
1097
|
-
Error:
|
|
1097
|
+
Variables: EnvironmentVariables | None
|
|
1098
|
+
Error: EnvironmentError | None
|
|
1098
1099
|
|
|
1099
1100
|
|
|
1100
1101
|
class FilterCriteriaError(TypedDict, total=False):
|
|
1101
|
-
ErrorCode:
|
|
1102
|
-
Message:
|
|
1102
|
+
ErrorCode: FilterCriteriaErrorCode | None
|
|
1103
|
+
Message: FilterCriteriaErrorMessage | None
|
|
1103
1104
|
|
|
1104
1105
|
|
|
1105
1106
|
class EventSourceMappingConfiguration(TypedDict, total=False):
|
|
1106
|
-
UUID:
|
|
1107
|
-
StartingPosition:
|
|
1108
|
-
StartingPositionTimestamp:
|
|
1109
|
-
BatchSize:
|
|
1110
|
-
MaximumBatchingWindowInSeconds:
|
|
1111
|
-
ParallelizationFactor:
|
|
1112
|
-
EventSourceArn:
|
|
1113
|
-
FilterCriteria:
|
|
1114
|
-
FunctionArn:
|
|
1115
|
-
LastModified:
|
|
1116
|
-
LastProcessingResult:
|
|
1117
|
-
State:
|
|
1118
|
-
StateTransitionReason:
|
|
1119
|
-
DestinationConfig:
|
|
1120
|
-
Topics:
|
|
1121
|
-
Queues:
|
|
1122
|
-
SourceAccessConfigurations:
|
|
1123
|
-
SelfManagedEventSource:
|
|
1124
|
-
MaximumRecordAgeInSeconds:
|
|
1125
|
-
BisectBatchOnFunctionError:
|
|
1126
|
-
MaximumRetryAttempts:
|
|
1127
|
-
TumblingWindowInSeconds:
|
|
1128
|
-
FunctionResponseTypes:
|
|
1129
|
-
AmazonManagedKafkaEventSourceConfig:
|
|
1130
|
-
SelfManagedKafkaEventSourceConfig:
|
|
1131
|
-
ScalingConfig:
|
|
1132
|
-
DocumentDBEventSourceConfig:
|
|
1133
|
-
KMSKeyArn:
|
|
1134
|
-
FilterCriteriaError:
|
|
1135
|
-
EventSourceMappingArn:
|
|
1136
|
-
MetricsConfig:
|
|
1137
|
-
ProvisionedPollerConfig:
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
EventSourceMappingsList =
|
|
1141
|
-
FunctionArnList =
|
|
1107
|
+
UUID: String | None
|
|
1108
|
+
StartingPosition: EventSourcePosition | None
|
|
1109
|
+
StartingPositionTimestamp: Date | None
|
|
1110
|
+
BatchSize: BatchSize | None
|
|
1111
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
1112
|
+
ParallelizationFactor: ParallelizationFactor | None
|
|
1113
|
+
EventSourceArn: Arn | None
|
|
1114
|
+
FilterCriteria: FilterCriteria | None
|
|
1115
|
+
FunctionArn: FunctionArn | None
|
|
1116
|
+
LastModified: Date | None
|
|
1117
|
+
LastProcessingResult: String | None
|
|
1118
|
+
State: String | None
|
|
1119
|
+
StateTransitionReason: String | None
|
|
1120
|
+
DestinationConfig: DestinationConfig | None
|
|
1121
|
+
Topics: Topics | None
|
|
1122
|
+
Queues: Queues | None
|
|
1123
|
+
SourceAccessConfigurations: SourceAccessConfigurations | None
|
|
1124
|
+
SelfManagedEventSource: SelfManagedEventSource | None
|
|
1125
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
1126
|
+
BisectBatchOnFunctionError: BisectBatchOnFunctionError | None
|
|
1127
|
+
MaximumRetryAttempts: MaximumRetryAttemptsEventSourceMapping | None
|
|
1128
|
+
TumblingWindowInSeconds: TumblingWindowInSeconds | None
|
|
1129
|
+
FunctionResponseTypes: FunctionResponseTypeList | None
|
|
1130
|
+
AmazonManagedKafkaEventSourceConfig: AmazonManagedKafkaEventSourceConfig | None
|
|
1131
|
+
SelfManagedKafkaEventSourceConfig: SelfManagedKafkaEventSourceConfig | None
|
|
1132
|
+
ScalingConfig: ScalingConfig | None
|
|
1133
|
+
DocumentDBEventSourceConfig: DocumentDBEventSourceConfig | None
|
|
1134
|
+
KMSKeyArn: KMSKeyArn | None
|
|
1135
|
+
FilterCriteriaError: FilterCriteriaError | None
|
|
1136
|
+
EventSourceMappingArn: EventSourceMappingArn | None
|
|
1137
|
+
MetricsConfig: EventSourceMappingMetricsConfig | None
|
|
1138
|
+
ProvisionedPollerConfig: ProvisionedPollerConfig | None
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
EventSourceMappingsList = list[EventSourceMappingConfiguration]
|
|
1142
|
+
FunctionArnList = list[FunctionArn]
|
|
1142
1143
|
|
|
1143
1144
|
|
|
1144
1145
|
class FunctionCodeLocation(TypedDict, total=False):
|
|
1145
|
-
RepositoryType:
|
|
1146
|
-
Location:
|
|
1147
|
-
ImageUri:
|
|
1148
|
-
ResolvedImageUri:
|
|
1149
|
-
SourceKMSKeyArn:
|
|
1146
|
+
RepositoryType: String | None
|
|
1147
|
+
Location: String | None
|
|
1148
|
+
ImageUri: String | None
|
|
1149
|
+
ResolvedImageUri: String | None
|
|
1150
|
+
SourceKMSKeyArn: String | None
|
|
1150
1151
|
|
|
1151
1152
|
|
|
1152
1153
|
class RuntimeVersionError(TypedDict, total=False):
|
|
1153
|
-
ErrorCode:
|
|
1154
|
-
Message:
|
|
1154
|
+
ErrorCode: String | None
|
|
1155
|
+
Message: SensitiveString | None
|
|
1155
1156
|
|
|
1156
1157
|
|
|
1157
1158
|
class RuntimeVersionConfig(TypedDict, total=False):
|
|
1158
|
-
RuntimeVersionArn:
|
|
1159
|
-
Error:
|
|
1159
|
+
RuntimeVersionArn: RuntimeVersionArn | None
|
|
1160
|
+
Error: RuntimeVersionError | None
|
|
1160
1161
|
|
|
1161
1162
|
|
|
1162
1163
|
class SnapStartResponse(TypedDict, total=False):
|
|
1163
|
-
ApplyOn:
|
|
1164
|
-
OptimizationStatus:
|
|
1164
|
+
ApplyOn: SnapStartApplyOn | None
|
|
1165
|
+
OptimizationStatus: SnapStartOptimizationStatus | None
|
|
1165
1166
|
|
|
1166
1167
|
|
|
1167
1168
|
class ImageConfigError(TypedDict, total=False):
|
|
1168
|
-
ErrorCode:
|
|
1169
|
-
Message:
|
|
1169
|
+
ErrorCode: String | None
|
|
1170
|
+
Message: SensitiveString | None
|
|
1170
1171
|
|
|
1171
1172
|
|
|
1172
1173
|
class ImageConfigResponse(TypedDict, total=False):
|
|
1173
|
-
ImageConfig:
|
|
1174
|
-
Error:
|
|
1174
|
+
ImageConfig: ImageConfig | None
|
|
1175
|
+
Error: ImageConfigError | None
|
|
1175
1176
|
|
|
1176
1177
|
|
|
1177
1178
|
class Layer(TypedDict, total=False):
|
|
1178
|
-
Arn:
|
|
1179
|
-
CodeSize:
|
|
1180
|
-
SigningProfileVersionArn:
|
|
1181
|
-
SigningJobArn:
|
|
1179
|
+
Arn: LayerVersionArn | None
|
|
1180
|
+
CodeSize: Long | None
|
|
1181
|
+
SigningProfileVersionArn: Arn | None
|
|
1182
|
+
SigningJobArn: Arn | None
|
|
1182
1183
|
|
|
1183
1184
|
|
|
1184
|
-
LayersReferenceList =
|
|
1185
|
+
LayersReferenceList = list[Layer]
|
|
1185
1186
|
|
|
1186
1187
|
|
|
1187
1188
|
class TracingConfigResponse(TypedDict, total=False):
|
|
1188
|
-
Mode:
|
|
1189
|
+
Mode: TracingMode | None
|
|
1189
1190
|
|
|
1190
1191
|
|
|
1191
1192
|
class VpcConfigResponse(TypedDict, total=False):
|
|
1192
|
-
SubnetIds:
|
|
1193
|
-
SecurityGroupIds:
|
|
1194
|
-
VpcId:
|
|
1195
|
-
Ipv6AllowedForDualStack:
|
|
1193
|
+
SubnetIds: SubnetIds | None
|
|
1194
|
+
SecurityGroupIds: SecurityGroupIds | None
|
|
1195
|
+
VpcId: VpcId | None
|
|
1196
|
+
Ipv6AllowedForDualStack: NullableBoolean | None
|
|
1196
1197
|
|
|
1197
1198
|
|
|
1198
1199
|
class FunctionConfiguration(TypedDict, total=False):
|
|
1199
|
-
FunctionName:
|
|
1200
|
-
FunctionArn:
|
|
1201
|
-
Runtime:
|
|
1202
|
-
Role:
|
|
1203
|
-
Handler:
|
|
1204
|
-
CodeSize:
|
|
1205
|
-
Description:
|
|
1206
|
-
Timeout:
|
|
1207
|
-
MemorySize:
|
|
1208
|
-
LastModified:
|
|
1209
|
-
CodeSha256:
|
|
1210
|
-
Version:
|
|
1211
|
-
VpcConfig:
|
|
1212
|
-
DeadLetterConfig:
|
|
1213
|
-
Environment:
|
|
1214
|
-
KMSKeyArn:
|
|
1215
|
-
TracingConfig:
|
|
1216
|
-
MasterArn:
|
|
1217
|
-
RevisionId:
|
|
1218
|
-
Layers:
|
|
1219
|
-
State:
|
|
1220
|
-
StateReason:
|
|
1221
|
-
StateReasonCode:
|
|
1222
|
-
LastUpdateStatus:
|
|
1223
|
-
LastUpdateStatusReason:
|
|
1224
|
-
LastUpdateStatusReasonCode:
|
|
1225
|
-
FileSystemConfigs:
|
|
1226
|
-
PackageType:
|
|
1227
|
-
ImageConfigResponse:
|
|
1228
|
-
SigningProfileVersionArn:
|
|
1229
|
-
SigningJobArn:
|
|
1230
|
-
Architectures:
|
|
1231
|
-
EphemeralStorage:
|
|
1232
|
-
SnapStart:
|
|
1233
|
-
RuntimeVersionConfig:
|
|
1234
|
-
LoggingConfig:
|
|
1200
|
+
FunctionName: NamespacedFunctionName | None
|
|
1201
|
+
FunctionArn: NameSpacedFunctionArn | None
|
|
1202
|
+
Runtime: Runtime | None
|
|
1203
|
+
Role: RoleArn | None
|
|
1204
|
+
Handler: Handler | None
|
|
1205
|
+
CodeSize: Long | None
|
|
1206
|
+
Description: Description | None
|
|
1207
|
+
Timeout: Timeout | None
|
|
1208
|
+
MemorySize: MemorySize | None
|
|
1209
|
+
LastModified: Timestamp | None
|
|
1210
|
+
CodeSha256: String | None
|
|
1211
|
+
Version: Version | None
|
|
1212
|
+
VpcConfig: VpcConfigResponse | None
|
|
1213
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
1214
|
+
Environment: EnvironmentResponse | None
|
|
1215
|
+
KMSKeyArn: KMSKeyArn | None
|
|
1216
|
+
TracingConfig: TracingConfigResponse | None
|
|
1217
|
+
MasterArn: FunctionArn | None
|
|
1218
|
+
RevisionId: String | None
|
|
1219
|
+
Layers: LayersReferenceList | None
|
|
1220
|
+
State: State | None
|
|
1221
|
+
StateReason: StateReason | None
|
|
1222
|
+
StateReasonCode: StateReasonCode | None
|
|
1223
|
+
LastUpdateStatus: LastUpdateStatus | None
|
|
1224
|
+
LastUpdateStatusReason: LastUpdateStatusReason | None
|
|
1225
|
+
LastUpdateStatusReasonCode: LastUpdateStatusReasonCode | None
|
|
1226
|
+
FileSystemConfigs: FileSystemConfigList | None
|
|
1227
|
+
PackageType: PackageType | None
|
|
1228
|
+
ImageConfigResponse: ImageConfigResponse | None
|
|
1229
|
+
SigningProfileVersionArn: Arn | None
|
|
1230
|
+
SigningJobArn: Arn | None
|
|
1231
|
+
Architectures: ArchitecturesList | None
|
|
1232
|
+
EphemeralStorage: EphemeralStorage | None
|
|
1233
|
+
SnapStart: SnapStartResponse | None
|
|
1234
|
+
RuntimeVersionConfig: RuntimeVersionConfig | None
|
|
1235
|
+
LoggingConfig: LoggingConfig | None
|
|
1235
1236
|
|
|
1236
1237
|
|
|
1237
1238
|
class FunctionEventInvokeConfig(TypedDict, total=False):
|
|
1238
|
-
LastModified:
|
|
1239
|
-
FunctionArn:
|
|
1240
|
-
MaximumRetryAttempts:
|
|
1241
|
-
MaximumEventAgeInSeconds:
|
|
1242
|
-
DestinationConfig:
|
|
1239
|
+
LastModified: Date | None
|
|
1240
|
+
FunctionArn: FunctionArn | None
|
|
1241
|
+
MaximumRetryAttempts: MaximumRetryAttempts | None
|
|
1242
|
+
MaximumEventAgeInSeconds: MaximumEventAgeInSeconds | None
|
|
1243
|
+
DestinationConfig: DestinationConfig | None
|
|
1243
1244
|
|
|
1244
1245
|
|
|
1245
|
-
FunctionEventInvokeConfigList =
|
|
1246
|
-
FunctionList =
|
|
1246
|
+
FunctionEventInvokeConfigList = list[FunctionEventInvokeConfig]
|
|
1247
|
+
FunctionList = list[FunctionConfiguration]
|
|
1247
1248
|
|
|
1248
1249
|
|
|
1249
1250
|
class FunctionUrlConfig(TypedDict, total=False):
|
|
@@ -1251,12 +1252,12 @@ class FunctionUrlConfig(TypedDict, total=False):
|
|
|
1251
1252
|
FunctionArn: FunctionArn
|
|
1252
1253
|
CreationTime: Timestamp
|
|
1253
1254
|
LastModifiedTime: Timestamp
|
|
1254
|
-
Cors:
|
|
1255
|
+
Cors: Cors | None
|
|
1255
1256
|
AuthType: FunctionUrlAuthType
|
|
1256
|
-
InvokeMode:
|
|
1257
|
+
InvokeMode: InvokeMode | None
|
|
1257
1258
|
|
|
1258
1259
|
|
|
1259
|
-
FunctionUrlConfigList =
|
|
1260
|
+
FunctionUrlConfigList = list[FunctionUrlConfig]
|
|
1260
1261
|
|
|
1261
1262
|
|
|
1262
1263
|
class GetAccountSettingsRequest(ServiceRequest):
|
|
@@ -1264,8 +1265,8 @@ class GetAccountSettingsRequest(ServiceRequest):
|
|
|
1264
1265
|
|
|
1265
1266
|
|
|
1266
1267
|
class GetAccountSettingsResponse(TypedDict, total=False):
|
|
1267
|
-
AccountLimit:
|
|
1268
|
-
AccountUsage:
|
|
1268
|
+
AccountLimit: AccountLimit | None
|
|
1269
|
+
AccountUsage: AccountUsage | None
|
|
1269
1270
|
|
|
1270
1271
|
|
|
1271
1272
|
class GetAliasRequest(ServiceRequest):
|
|
@@ -1299,17 +1300,17 @@ class GetFunctionConcurrencyRequest(ServiceRequest):
|
|
|
1299
1300
|
|
|
1300
1301
|
|
|
1301
1302
|
class GetFunctionConcurrencyResponse(TypedDict, total=False):
|
|
1302
|
-
ReservedConcurrentExecutions:
|
|
1303
|
+
ReservedConcurrentExecutions: ReservedConcurrentExecutions | None
|
|
1303
1304
|
|
|
1304
1305
|
|
|
1305
1306
|
class GetFunctionConfigurationRequest(ServiceRequest):
|
|
1306
1307
|
FunctionName: NamespacedFunctionName
|
|
1307
|
-
Qualifier:
|
|
1308
|
+
Qualifier: Qualifier | None
|
|
1308
1309
|
|
|
1309
1310
|
|
|
1310
1311
|
class GetFunctionEventInvokeConfigRequest(ServiceRequest):
|
|
1311
1312
|
FunctionName: FunctionName
|
|
1312
|
-
Qualifier:
|
|
1313
|
+
Qualifier: Qualifier | None
|
|
1313
1314
|
|
|
1314
1315
|
|
|
1315
1316
|
class GetFunctionRecursionConfigRequest(ServiceRequest):
|
|
@@ -1317,12 +1318,12 @@ class GetFunctionRecursionConfigRequest(ServiceRequest):
|
|
|
1317
1318
|
|
|
1318
1319
|
|
|
1319
1320
|
class GetFunctionRecursionConfigResponse(TypedDict, total=False):
|
|
1320
|
-
RecursiveLoop:
|
|
1321
|
+
RecursiveLoop: RecursiveLoop | None
|
|
1321
1322
|
|
|
1322
1323
|
|
|
1323
1324
|
class GetFunctionRequest(ServiceRequest):
|
|
1324
1325
|
FunctionName: NamespacedFunctionName
|
|
1325
|
-
Qualifier:
|
|
1326
|
+
Qualifier: Qualifier | None
|
|
1326
1327
|
|
|
1327
1328
|
|
|
1328
1329
|
class TagsError(TypedDict, total=False):
|
|
@@ -1331,26 +1332,26 @@ class TagsError(TypedDict, total=False):
|
|
|
1331
1332
|
|
|
1332
1333
|
|
|
1333
1334
|
class GetFunctionResponse(TypedDict, total=False):
|
|
1334
|
-
Configuration:
|
|
1335
|
-
Code:
|
|
1336
|
-
Tags:
|
|
1337
|
-
TagsError:
|
|
1338
|
-
Concurrency:
|
|
1335
|
+
Configuration: FunctionConfiguration | None
|
|
1336
|
+
Code: FunctionCodeLocation | None
|
|
1337
|
+
Tags: Tags | None
|
|
1338
|
+
TagsError: TagsError | None
|
|
1339
|
+
Concurrency: Concurrency | None
|
|
1339
1340
|
|
|
1340
1341
|
|
|
1341
1342
|
class GetFunctionUrlConfigRequest(ServiceRequest):
|
|
1342
1343
|
FunctionName: FunctionName
|
|
1343
|
-
Qualifier:
|
|
1344
|
+
Qualifier: FunctionUrlQualifier | None
|
|
1344
1345
|
|
|
1345
1346
|
|
|
1346
1347
|
class GetFunctionUrlConfigResponse(TypedDict, total=False):
|
|
1347
1348
|
FunctionUrl: FunctionUrl
|
|
1348
1349
|
FunctionArn: FunctionArn
|
|
1349
1350
|
AuthType: FunctionUrlAuthType
|
|
1350
|
-
Cors:
|
|
1351
|
+
Cors: Cors | None
|
|
1351
1352
|
CreationTime: Timestamp
|
|
1352
1353
|
LastModifiedTime: Timestamp
|
|
1353
|
-
InvokeMode:
|
|
1354
|
+
InvokeMode: InvokeMode | None
|
|
1354
1355
|
|
|
1355
1356
|
|
|
1356
1357
|
class GetLayerVersionByArnRequest(ServiceRequest):
|
|
@@ -1363,8 +1364,8 @@ class GetLayerVersionPolicyRequest(ServiceRequest):
|
|
|
1363
1364
|
|
|
1364
1365
|
|
|
1365
1366
|
class GetLayerVersionPolicyResponse(TypedDict, total=False):
|
|
1366
|
-
Policy:
|
|
1367
|
-
RevisionId:
|
|
1367
|
+
Policy: String | None
|
|
1368
|
+
RevisionId: String | None
|
|
1368
1369
|
|
|
1369
1370
|
|
|
1370
1371
|
class GetLayerVersionRequest(ServiceRequest):
|
|
@@ -1373,33 +1374,33 @@ class GetLayerVersionRequest(ServiceRequest):
|
|
|
1373
1374
|
|
|
1374
1375
|
|
|
1375
1376
|
class LayerVersionContentOutput(TypedDict, total=False):
|
|
1376
|
-
Location:
|
|
1377
|
-
CodeSha256:
|
|
1378
|
-
CodeSize:
|
|
1379
|
-
SigningProfileVersionArn:
|
|
1380
|
-
SigningJobArn:
|
|
1377
|
+
Location: String | None
|
|
1378
|
+
CodeSha256: String | None
|
|
1379
|
+
CodeSize: Long | None
|
|
1380
|
+
SigningProfileVersionArn: String | None
|
|
1381
|
+
SigningJobArn: String | None
|
|
1381
1382
|
|
|
1382
1383
|
|
|
1383
1384
|
class GetLayerVersionResponse(TypedDict, total=False):
|
|
1384
|
-
Content:
|
|
1385
|
-
LayerArn:
|
|
1386
|
-
LayerVersionArn:
|
|
1387
|
-
Description:
|
|
1388
|
-
CreatedDate:
|
|
1389
|
-
Version:
|
|
1390
|
-
CompatibleRuntimes:
|
|
1391
|
-
LicenseInfo:
|
|
1392
|
-
CompatibleArchitectures:
|
|
1385
|
+
Content: LayerVersionContentOutput | None
|
|
1386
|
+
LayerArn: LayerArn | None
|
|
1387
|
+
LayerVersionArn: LayerVersionArn | None
|
|
1388
|
+
Description: Description | None
|
|
1389
|
+
CreatedDate: Timestamp | None
|
|
1390
|
+
Version: LayerVersionNumber | None
|
|
1391
|
+
CompatibleRuntimes: CompatibleRuntimes | None
|
|
1392
|
+
LicenseInfo: LicenseInfo | None
|
|
1393
|
+
CompatibleArchitectures: CompatibleArchitectures | None
|
|
1393
1394
|
|
|
1394
1395
|
|
|
1395
1396
|
class GetPolicyRequest(ServiceRequest):
|
|
1396
1397
|
FunctionName: NamespacedFunctionName
|
|
1397
|
-
Qualifier:
|
|
1398
|
+
Qualifier: Qualifier | None
|
|
1398
1399
|
|
|
1399
1400
|
|
|
1400
1401
|
class GetPolicyResponse(TypedDict, total=False):
|
|
1401
|
-
Policy:
|
|
1402
|
-
RevisionId:
|
|
1402
|
+
Policy: String | None
|
|
1403
|
+
RevisionId: String | None
|
|
1403
1404
|
|
|
1404
1405
|
|
|
1405
1406
|
class GetProvisionedConcurrencyConfigRequest(ServiceRequest):
|
|
@@ -1408,40 +1409,40 @@ class GetProvisionedConcurrencyConfigRequest(ServiceRequest):
|
|
|
1408
1409
|
|
|
1409
1410
|
|
|
1410
1411
|
class GetProvisionedConcurrencyConfigResponse(TypedDict, total=False):
|
|
1411
|
-
RequestedProvisionedConcurrentExecutions:
|
|
1412
|
-
AvailableProvisionedConcurrentExecutions:
|
|
1413
|
-
AllocatedProvisionedConcurrentExecutions:
|
|
1414
|
-
Status:
|
|
1415
|
-
StatusReason:
|
|
1416
|
-
LastModified:
|
|
1412
|
+
RequestedProvisionedConcurrentExecutions: PositiveInteger | None
|
|
1413
|
+
AvailableProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1414
|
+
AllocatedProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1415
|
+
Status: ProvisionedConcurrencyStatusEnum | None
|
|
1416
|
+
StatusReason: String | None
|
|
1417
|
+
LastModified: Timestamp | None
|
|
1417
1418
|
|
|
1418
1419
|
|
|
1419
1420
|
class GetRuntimeManagementConfigRequest(ServiceRequest):
|
|
1420
1421
|
FunctionName: NamespacedFunctionName
|
|
1421
|
-
Qualifier:
|
|
1422
|
+
Qualifier: Qualifier | None
|
|
1422
1423
|
|
|
1423
1424
|
|
|
1424
1425
|
class GetRuntimeManagementConfigResponse(TypedDict, total=False):
|
|
1425
|
-
UpdateRuntimeOn:
|
|
1426
|
-
RuntimeVersionArn:
|
|
1427
|
-
FunctionArn:
|
|
1426
|
+
UpdateRuntimeOn: UpdateRuntimeOn | None
|
|
1427
|
+
RuntimeVersionArn: RuntimeVersionArn | None
|
|
1428
|
+
FunctionArn: NameSpacedFunctionArn | None
|
|
1428
1429
|
|
|
1429
1430
|
|
|
1430
1431
|
class InvocationRequest(ServiceRequest):
|
|
1431
|
-
Payload:
|
|
1432
|
+
Payload: IO[Blob] | None
|
|
1432
1433
|
FunctionName: NamespacedFunctionName
|
|
1433
|
-
InvocationType:
|
|
1434
|
-
LogType:
|
|
1435
|
-
ClientContext:
|
|
1436
|
-
Qualifier:
|
|
1434
|
+
InvocationType: InvocationType | None
|
|
1435
|
+
LogType: LogType | None
|
|
1436
|
+
ClientContext: String | None
|
|
1437
|
+
Qualifier: Qualifier | None
|
|
1437
1438
|
|
|
1438
1439
|
|
|
1439
1440
|
class InvocationResponse(TypedDict, total=False):
|
|
1440
|
-
Payload:
|
|
1441
|
-
StatusCode:
|
|
1442
|
-
FunctionError:
|
|
1443
|
-
LogResult:
|
|
1444
|
-
ExecutedVersion:
|
|
1441
|
+
Payload: Blob | IO[Blob] | Iterable[Blob] | None
|
|
1442
|
+
StatusCode: Integer | None
|
|
1443
|
+
FunctionError: String | None
|
|
1444
|
+
LogResult: String | None
|
|
1445
|
+
ExecutedVersion: Version | None
|
|
1445
1446
|
|
|
1446
1447
|
|
|
1447
1448
|
class InvokeAsyncRequest(ServiceRequest):
|
|
@@ -1450,195 +1451,195 @@ class InvokeAsyncRequest(ServiceRequest):
|
|
|
1450
1451
|
|
|
1451
1452
|
|
|
1452
1453
|
class InvokeAsyncResponse(TypedDict, total=False):
|
|
1453
|
-
Status:
|
|
1454
|
+
Status: HttpStatus | None
|
|
1454
1455
|
|
|
1455
1456
|
|
|
1456
1457
|
class InvokeResponseStreamUpdate(TypedDict, total=False):
|
|
1457
|
-
Payload:
|
|
1458
|
+
Payload: Blob | None
|
|
1458
1459
|
|
|
1459
1460
|
|
|
1460
1461
|
class InvokeWithResponseStreamCompleteEvent(TypedDict, total=False):
|
|
1461
|
-
ErrorCode:
|
|
1462
|
-
ErrorDetails:
|
|
1463
|
-
LogResult:
|
|
1462
|
+
ErrorCode: String | None
|
|
1463
|
+
ErrorDetails: String | None
|
|
1464
|
+
LogResult: String | None
|
|
1464
1465
|
|
|
1465
1466
|
|
|
1466
1467
|
class InvokeWithResponseStreamRequest(ServiceRequest):
|
|
1467
|
-
Payload:
|
|
1468
|
+
Payload: IO[Blob] | None
|
|
1468
1469
|
FunctionName: NamespacedFunctionName
|
|
1469
|
-
InvocationType:
|
|
1470
|
-
LogType:
|
|
1471
|
-
ClientContext:
|
|
1472
|
-
Qualifier:
|
|
1470
|
+
InvocationType: ResponseStreamingInvocationType | None
|
|
1471
|
+
LogType: LogType | None
|
|
1472
|
+
ClientContext: String | None
|
|
1473
|
+
Qualifier: Qualifier | None
|
|
1473
1474
|
|
|
1474
1475
|
|
|
1475
1476
|
class InvokeWithResponseStreamResponseEvent(TypedDict, total=False):
|
|
1476
|
-
PayloadChunk:
|
|
1477
|
-
InvokeComplete:
|
|
1477
|
+
PayloadChunk: InvokeResponseStreamUpdate | None
|
|
1478
|
+
InvokeComplete: InvokeWithResponseStreamCompleteEvent | None
|
|
1478
1479
|
|
|
1479
1480
|
|
|
1480
1481
|
class InvokeWithResponseStreamResponse(TypedDict, total=False):
|
|
1481
|
-
StatusCode:
|
|
1482
|
-
ExecutedVersion:
|
|
1482
|
+
StatusCode: Integer | None
|
|
1483
|
+
ExecutedVersion: Version | None
|
|
1483
1484
|
EventStream: Iterator[InvokeWithResponseStreamResponseEvent]
|
|
1484
|
-
ResponseStreamContentType:
|
|
1485
|
+
ResponseStreamContentType: String | None
|
|
1485
1486
|
|
|
1486
1487
|
|
|
1487
1488
|
class LayerVersionContentInput(TypedDict, total=False):
|
|
1488
|
-
S3Bucket:
|
|
1489
|
-
S3Key:
|
|
1490
|
-
S3ObjectVersion:
|
|
1491
|
-
ZipFile:
|
|
1489
|
+
S3Bucket: S3Bucket | None
|
|
1490
|
+
S3Key: S3Key | None
|
|
1491
|
+
S3ObjectVersion: S3ObjectVersion | None
|
|
1492
|
+
ZipFile: Blob | None
|
|
1492
1493
|
|
|
1493
1494
|
|
|
1494
1495
|
class LayerVersionsListItem(TypedDict, total=False):
|
|
1495
|
-
LayerVersionArn:
|
|
1496
|
-
Version:
|
|
1497
|
-
Description:
|
|
1498
|
-
CreatedDate:
|
|
1499
|
-
CompatibleRuntimes:
|
|
1500
|
-
LicenseInfo:
|
|
1501
|
-
CompatibleArchitectures:
|
|
1496
|
+
LayerVersionArn: LayerVersionArn | None
|
|
1497
|
+
Version: LayerVersionNumber | None
|
|
1498
|
+
Description: Description | None
|
|
1499
|
+
CreatedDate: Timestamp | None
|
|
1500
|
+
CompatibleRuntimes: CompatibleRuntimes | None
|
|
1501
|
+
LicenseInfo: LicenseInfo | None
|
|
1502
|
+
CompatibleArchitectures: CompatibleArchitectures | None
|
|
1502
1503
|
|
|
1503
1504
|
|
|
1504
|
-
LayerVersionsList =
|
|
1505
|
+
LayerVersionsList = list[LayerVersionsListItem]
|
|
1505
1506
|
|
|
1506
1507
|
|
|
1507
1508
|
class LayersListItem(TypedDict, total=False):
|
|
1508
|
-
LayerName:
|
|
1509
|
-
LayerArn:
|
|
1510
|
-
LatestMatchingVersion:
|
|
1509
|
+
LayerName: LayerName | None
|
|
1510
|
+
LayerArn: LayerArn | None
|
|
1511
|
+
LatestMatchingVersion: LayerVersionsListItem | None
|
|
1511
1512
|
|
|
1512
1513
|
|
|
1513
|
-
LayersList =
|
|
1514
|
+
LayersList = list[LayersListItem]
|
|
1514
1515
|
|
|
1515
1516
|
|
|
1516
1517
|
class ListAliasesRequest(ServiceRequest):
|
|
1517
1518
|
FunctionName: FunctionName
|
|
1518
|
-
FunctionVersion:
|
|
1519
|
-
Marker:
|
|
1520
|
-
MaxItems:
|
|
1519
|
+
FunctionVersion: Version | None
|
|
1520
|
+
Marker: String | None
|
|
1521
|
+
MaxItems: MaxListItems | None
|
|
1521
1522
|
|
|
1522
1523
|
|
|
1523
1524
|
class ListAliasesResponse(TypedDict, total=False):
|
|
1524
|
-
NextMarker:
|
|
1525
|
-
Aliases:
|
|
1525
|
+
NextMarker: String | None
|
|
1526
|
+
Aliases: AliasList | None
|
|
1526
1527
|
|
|
1527
1528
|
|
|
1528
1529
|
class ListCodeSigningConfigsRequest(ServiceRequest):
|
|
1529
|
-
Marker:
|
|
1530
|
-
MaxItems:
|
|
1530
|
+
Marker: String | None
|
|
1531
|
+
MaxItems: MaxListItems | None
|
|
1531
1532
|
|
|
1532
1533
|
|
|
1533
1534
|
class ListCodeSigningConfigsResponse(TypedDict, total=False):
|
|
1534
|
-
NextMarker:
|
|
1535
|
-
CodeSigningConfigs:
|
|
1535
|
+
NextMarker: String | None
|
|
1536
|
+
CodeSigningConfigs: CodeSigningConfigList | None
|
|
1536
1537
|
|
|
1537
1538
|
|
|
1538
1539
|
class ListEventSourceMappingsRequest(ServiceRequest):
|
|
1539
|
-
EventSourceArn:
|
|
1540
|
-
FunctionName:
|
|
1541
|
-
Marker:
|
|
1542
|
-
MaxItems:
|
|
1540
|
+
EventSourceArn: Arn | None
|
|
1541
|
+
FunctionName: FunctionName | None
|
|
1542
|
+
Marker: String | None
|
|
1543
|
+
MaxItems: MaxListItems | None
|
|
1543
1544
|
|
|
1544
1545
|
|
|
1545
1546
|
class ListEventSourceMappingsResponse(TypedDict, total=False):
|
|
1546
|
-
NextMarker:
|
|
1547
|
-
EventSourceMappings:
|
|
1547
|
+
NextMarker: String | None
|
|
1548
|
+
EventSourceMappings: EventSourceMappingsList | None
|
|
1548
1549
|
|
|
1549
1550
|
|
|
1550
1551
|
class ListFunctionEventInvokeConfigsRequest(ServiceRequest):
|
|
1551
1552
|
FunctionName: FunctionName
|
|
1552
|
-
Marker:
|
|
1553
|
-
MaxItems:
|
|
1553
|
+
Marker: String | None
|
|
1554
|
+
MaxItems: MaxFunctionEventInvokeConfigListItems | None
|
|
1554
1555
|
|
|
1555
1556
|
|
|
1556
1557
|
class ListFunctionEventInvokeConfigsResponse(TypedDict, total=False):
|
|
1557
|
-
FunctionEventInvokeConfigs:
|
|
1558
|
-
NextMarker:
|
|
1558
|
+
FunctionEventInvokeConfigs: FunctionEventInvokeConfigList | None
|
|
1559
|
+
NextMarker: String | None
|
|
1559
1560
|
|
|
1560
1561
|
|
|
1561
1562
|
class ListFunctionUrlConfigsRequest(ServiceRequest):
|
|
1562
1563
|
FunctionName: FunctionName
|
|
1563
|
-
Marker:
|
|
1564
|
-
MaxItems:
|
|
1564
|
+
Marker: String | None
|
|
1565
|
+
MaxItems: MaxItems | None
|
|
1565
1566
|
|
|
1566
1567
|
|
|
1567
1568
|
class ListFunctionUrlConfigsResponse(TypedDict, total=False):
|
|
1568
1569
|
FunctionUrlConfigs: FunctionUrlConfigList
|
|
1569
|
-
NextMarker:
|
|
1570
|
+
NextMarker: String | None
|
|
1570
1571
|
|
|
1571
1572
|
|
|
1572
1573
|
class ListFunctionsByCodeSigningConfigRequest(ServiceRequest):
|
|
1573
1574
|
CodeSigningConfigArn: CodeSigningConfigArn
|
|
1574
|
-
Marker:
|
|
1575
|
-
MaxItems:
|
|
1575
|
+
Marker: String | None
|
|
1576
|
+
MaxItems: MaxListItems | None
|
|
1576
1577
|
|
|
1577
1578
|
|
|
1578
1579
|
class ListFunctionsByCodeSigningConfigResponse(TypedDict, total=False):
|
|
1579
|
-
NextMarker:
|
|
1580
|
-
FunctionArns:
|
|
1580
|
+
NextMarker: String | None
|
|
1581
|
+
FunctionArns: FunctionArnList | None
|
|
1581
1582
|
|
|
1582
1583
|
|
|
1583
1584
|
class ListFunctionsRequest(ServiceRequest):
|
|
1584
|
-
MasterRegion:
|
|
1585
|
-
FunctionVersion:
|
|
1586
|
-
Marker:
|
|
1587
|
-
MaxItems:
|
|
1585
|
+
MasterRegion: MasterRegion | None
|
|
1586
|
+
FunctionVersion: FunctionVersion | None
|
|
1587
|
+
Marker: String | None
|
|
1588
|
+
MaxItems: MaxListItems | None
|
|
1588
1589
|
|
|
1589
1590
|
|
|
1590
1591
|
class ListFunctionsResponse(TypedDict, total=False):
|
|
1591
|
-
NextMarker:
|
|
1592
|
-
Functions:
|
|
1592
|
+
NextMarker: String | None
|
|
1593
|
+
Functions: FunctionList | None
|
|
1593
1594
|
|
|
1594
1595
|
|
|
1595
1596
|
class ListLayerVersionsRequest(ServiceRequest):
|
|
1596
|
-
CompatibleRuntime:
|
|
1597
|
+
CompatibleRuntime: Runtime | None
|
|
1597
1598
|
LayerName: LayerName
|
|
1598
|
-
Marker:
|
|
1599
|
-
MaxItems:
|
|
1600
|
-
CompatibleArchitecture:
|
|
1599
|
+
Marker: String | None
|
|
1600
|
+
MaxItems: MaxLayerListItems | None
|
|
1601
|
+
CompatibleArchitecture: Architecture | None
|
|
1601
1602
|
|
|
1602
1603
|
|
|
1603
1604
|
class ListLayerVersionsResponse(TypedDict, total=False):
|
|
1604
|
-
NextMarker:
|
|
1605
|
-
LayerVersions:
|
|
1605
|
+
NextMarker: String | None
|
|
1606
|
+
LayerVersions: LayerVersionsList | None
|
|
1606
1607
|
|
|
1607
1608
|
|
|
1608
1609
|
class ListLayersRequest(ServiceRequest):
|
|
1609
|
-
CompatibleRuntime:
|
|
1610
|
-
Marker:
|
|
1611
|
-
MaxItems:
|
|
1612
|
-
CompatibleArchitecture:
|
|
1610
|
+
CompatibleRuntime: Runtime | None
|
|
1611
|
+
Marker: String | None
|
|
1612
|
+
MaxItems: MaxLayerListItems | None
|
|
1613
|
+
CompatibleArchitecture: Architecture | None
|
|
1613
1614
|
|
|
1614
1615
|
|
|
1615
1616
|
class ListLayersResponse(TypedDict, total=False):
|
|
1616
|
-
NextMarker:
|
|
1617
|
-
Layers:
|
|
1617
|
+
NextMarker: String | None
|
|
1618
|
+
Layers: LayersList | None
|
|
1618
1619
|
|
|
1619
1620
|
|
|
1620
1621
|
class ListProvisionedConcurrencyConfigsRequest(ServiceRequest):
|
|
1621
1622
|
FunctionName: FunctionName
|
|
1622
|
-
Marker:
|
|
1623
|
-
MaxItems:
|
|
1623
|
+
Marker: String | None
|
|
1624
|
+
MaxItems: MaxProvisionedConcurrencyConfigListItems | None
|
|
1624
1625
|
|
|
1625
1626
|
|
|
1626
1627
|
class ProvisionedConcurrencyConfigListItem(TypedDict, total=False):
|
|
1627
|
-
FunctionArn:
|
|
1628
|
-
RequestedProvisionedConcurrentExecutions:
|
|
1629
|
-
AvailableProvisionedConcurrentExecutions:
|
|
1630
|
-
AllocatedProvisionedConcurrentExecutions:
|
|
1631
|
-
Status:
|
|
1632
|
-
StatusReason:
|
|
1633
|
-
LastModified:
|
|
1628
|
+
FunctionArn: FunctionArn | None
|
|
1629
|
+
RequestedProvisionedConcurrentExecutions: PositiveInteger | None
|
|
1630
|
+
AvailableProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1631
|
+
AllocatedProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1632
|
+
Status: ProvisionedConcurrencyStatusEnum | None
|
|
1633
|
+
StatusReason: String | None
|
|
1634
|
+
LastModified: Timestamp | None
|
|
1634
1635
|
|
|
1635
1636
|
|
|
1636
|
-
ProvisionedConcurrencyConfigList =
|
|
1637
|
+
ProvisionedConcurrencyConfigList = list[ProvisionedConcurrencyConfigListItem]
|
|
1637
1638
|
|
|
1638
1639
|
|
|
1639
1640
|
class ListProvisionedConcurrencyConfigsResponse(TypedDict, total=False):
|
|
1640
|
-
ProvisionedConcurrencyConfigs:
|
|
1641
|
-
NextMarker:
|
|
1641
|
+
ProvisionedConcurrencyConfigs: ProvisionedConcurrencyConfigList | None
|
|
1642
|
+
NextMarker: String | None
|
|
1642
1643
|
|
|
1643
1644
|
|
|
1644
1645
|
class ListTagsRequest(ServiceRequest):
|
|
@@ -1646,46 +1647,46 @@ class ListTagsRequest(ServiceRequest):
|
|
|
1646
1647
|
|
|
1647
1648
|
|
|
1648
1649
|
class ListTagsResponse(TypedDict, total=False):
|
|
1649
|
-
Tags:
|
|
1650
|
+
Tags: Tags | None
|
|
1650
1651
|
|
|
1651
1652
|
|
|
1652
1653
|
class ListVersionsByFunctionRequest(ServiceRequest):
|
|
1653
1654
|
FunctionName: NamespacedFunctionName
|
|
1654
|
-
Marker:
|
|
1655
|
-
MaxItems:
|
|
1655
|
+
Marker: String | None
|
|
1656
|
+
MaxItems: MaxListItems | None
|
|
1656
1657
|
|
|
1657
1658
|
|
|
1658
1659
|
class ListVersionsByFunctionResponse(TypedDict, total=False):
|
|
1659
|
-
NextMarker:
|
|
1660
|
-
Versions:
|
|
1660
|
+
NextMarker: String | None
|
|
1661
|
+
Versions: FunctionList | None
|
|
1661
1662
|
|
|
1662
1663
|
|
|
1663
1664
|
class PublishLayerVersionRequest(ServiceRequest):
|
|
1664
1665
|
LayerName: LayerName
|
|
1665
|
-
Description:
|
|
1666
|
+
Description: Description | None
|
|
1666
1667
|
Content: LayerVersionContentInput
|
|
1667
|
-
CompatibleRuntimes:
|
|
1668
|
-
LicenseInfo:
|
|
1669
|
-
CompatibleArchitectures:
|
|
1668
|
+
CompatibleRuntimes: CompatibleRuntimes | None
|
|
1669
|
+
LicenseInfo: LicenseInfo | None
|
|
1670
|
+
CompatibleArchitectures: CompatibleArchitectures | None
|
|
1670
1671
|
|
|
1671
1672
|
|
|
1672
1673
|
class PublishLayerVersionResponse(TypedDict, total=False):
|
|
1673
|
-
Content:
|
|
1674
|
-
LayerArn:
|
|
1675
|
-
LayerVersionArn:
|
|
1676
|
-
Description:
|
|
1677
|
-
CreatedDate:
|
|
1678
|
-
Version:
|
|
1679
|
-
CompatibleRuntimes:
|
|
1680
|
-
LicenseInfo:
|
|
1681
|
-
CompatibleArchitectures:
|
|
1674
|
+
Content: LayerVersionContentOutput | None
|
|
1675
|
+
LayerArn: LayerArn | None
|
|
1676
|
+
LayerVersionArn: LayerVersionArn | None
|
|
1677
|
+
Description: Description | None
|
|
1678
|
+
CreatedDate: Timestamp | None
|
|
1679
|
+
Version: LayerVersionNumber | None
|
|
1680
|
+
CompatibleRuntimes: CompatibleRuntimes | None
|
|
1681
|
+
LicenseInfo: LicenseInfo | None
|
|
1682
|
+
CompatibleArchitectures: CompatibleArchitectures | None
|
|
1682
1683
|
|
|
1683
1684
|
|
|
1684
1685
|
class PublishVersionRequest(ServiceRequest):
|
|
1685
1686
|
FunctionName: FunctionName
|
|
1686
|
-
CodeSha256:
|
|
1687
|
-
Description:
|
|
1688
|
-
RevisionId:
|
|
1687
|
+
CodeSha256: String | None
|
|
1688
|
+
Description: Description | None
|
|
1689
|
+
RevisionId: String | None
|
|
1689
1690
|
|
|
1690
1691
|
|
|
1691
1692
|
class PutFunctionCodeSigningConfigRequest(ServiceRequest):
|
|
@@ -1705,10 +1706,10 @@ class PutFunctionConcurrencyRequest(ServiceRequest):
|
|
|
1705
1706
|
|
|
1706
1707
|
class PutFunctionEventInvokeConfigRequest(ServiceRequest):
|
|
1707
1708
|
FunctionName: FunctionName
|
|
1708
|
-
Qualifier:
|
|
1709
|
-
MaximumRetryAttempts:
|
|
1710
|
-
MaximumEventAgeInSeconds:
|
|
1711
|
-
DestinationConfig:
|
|
1709
|
+
Qualifier: Qualifier | None
|
|
1710
|
+
MaximumRetryAttempts: MaximumRetryAttempts | None
|
|
1711
|
+
MaximumEventAgeInSeconds: MaximumEventAgeInSeconds | None
|
|
1712
|
+
DestinationConfig: DestinationConfig | None
|
|
1712
1713
|
|
|
1713
1714
|
|
|
1714
1715
|
class PutFunctionRecursionConfigRequest(ServiceRequest):
|
|
@@ -1717,7 +1718,7 @@ class PutFunctionRecursionConfigRequest(ServiceRequest):
|
|
|
1717
1718
|
|
|
1718
1719
|
|
|
1719
1720
|
class PutFunctionRecursionConfigResponse(TypedDict, total=False):
|
|
1720
|
-
RecursiveLoop:
|
|
1721
|
+
RecursiveLoop: RecursiveLoop | None
|
|
1721
1722
|
|
|
1722
1723
|
|
|
1723
1724
|
class PutProvisionedConcurrencyConfigRequest(ServiceRequest):
|
|
@@ -1727,42 +1728,42 @@ class PutProvisionedConcurrencyConfigRequest(ServiceRequest):
|
|
|
1727
1728
|
|
|
1728
1729
|
|
|
1729
1730
|
class PutProvisionedConcurrencyConfigResponse(TypedDict, total=False):
|
|
1730
|
-
RequestedProvisionedConcurrentExecutions:
|
|
1731
|
-
AvailableProvisionedConcurrentExecutions:
|
|
1732
|
-
AllocatedProvisionedConcurrentExecutions:
|
|
1733
|
-
Status:
|
|
1734
|
-
StatusReason:
|
|
1735
|
-
LastModified:
|
|
1731
|
+
RequestedProvisionedConcurrentExecutions: PositiveInteger | None
|
|
1732
|
+
AvailableProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1733
|
+
AllocatedProvisionedConcurrentExecutions: NonNegativeInteger | None
|
|
1734
|
+
Status: ProvisionedConcurrencyStatusEnum | None
|
|
1735
|
+
StatusReason: String | None
|
|
1736
|
+
LastModified: Timestamp | None
|
|
1736
1737
|
|
|
1737
1738
|
|
|
1738
1739
|
class PutRuntimeManagementConfigRequest(ServiceRequest):
|
|
1739
1740
|
FunctionName: FunctionName
|
|
1740
|
-
Qualifier:
|
|
1741
|
+
Qualifier: Qualifier | None
|
|
1741
1742
|
UpdateRuntimeOn: UpdateRuntimeOn
|
|
1742
|
-
RuntimeVersionArn:
|
|
1743
|
+
RuntimeVersionArn: RuntimeVersionArn | None
|
|
1743
1744
|
|
|
1744
1745
|
|
|
1745
1746
|
class PutRuntimeManagementConfigResponse(TypedDict, total=False):
|
|
1746
1747
|
UpdateRuntimeOn: UpdateRuntimeOn
|
|
1747
1748
|
FunctionArn: FunctionArn
|
|
1748
|
-
RuntimeVersionArn:
|
|
1749
|
+
RuntimeVersionArn: RuntimeVersionArn | None
|
|
1749
1750
|
|
|
1750
1751
|
|
|
1751
1752
|
class RemoveLayerVersionPermissionRequest(ServiceRequest):
|
|
1752
1753
|
LayerName: LayerName
|
|
1753
1754
|
VersionNumber: LayerVersionNumber
|
|
1754
1755
|
StatementId: StatementId
|
|
1755
|
-
RevisionId:
|
|
1756
|
+
RevisionId: String | None
|
|
1756
1757
|
|
|
1757
1758
|
|
|
1758
1759
|
class RemovePermissionRequest(ServiceRequest):
|
|
1759
1760
|
FunctionName: FunctionName
|
|
1760
1761
|
StatementId: NamespacedStatementId
|
|
1761
|
-
Qualifier:
|
|
1762
|
-
RevisionId:
|
|
1762
|
+
Qualifier: Qualifier | None
|
|
1763
|
+
RevisionId: String | None
|
|
1763
1764
|
|
|
1764
1765
|
|
|
1765
|
-
TagKeyList =
|
|
1766
|
+
TagKeyList = list[TagKey]
|
|
1766
1767
|
|
|
1767
1768
|
|
|
1768
1769
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -1778,17 +1779,17 @@ class UntagResourceRequest(ServiceRequest):
|
|
|
1778
1779
|
class UpdateAliasRequest(ServiceRequest):
|
|
1779
1780
|
FunctionName: FunctionName
|
|
1780
1781
|
Name: Alias
|
|
1781
|
-
FunctionVersion:
|
|
1782
|
-
Description:
|
|
1783
|
-
RoutingConfig:
|
|
1784
|
-
RevisionId:
|
|
1782
|
+
FunctionVersion: Version | None
|
|
1783
|
+
Description: Description | None
|
|
1784
|
+
RoutingConfig: AliasRoutingConfiguration | None
|
|
1785
|
+
RevisionId: String | None
|
|
1785
1786
|
|
|
1786
1787
|
|
|
1787
1788
|
class UpdateCodeSigningConfigRequest(ServiceRequest):
|
|
1788
1789
|
CodeSigningConfigArn: CodeSigningConfigArn
|
|
1789
|
-
Description:
|
|
1790
|
-
AllowedPublishers:
|
|
1791
|
-
CodeSigningPolicies:
|
|
1790
|
+
Description: Description | None
|
|
1791
|
+
AllowedPublishers: AllowedPublishers | None
|
|
1792
|
+
CodeSigningPolicies: CodeSigningPolicies | None
|
|
1792
1793
|
|
|
1793
1794
|
|
|
1794
1795
|
class UpdateCodeSigningConfigResponse(TypedDict, total=False):
|
|
@@ -1797,93 +1798,93 @@ class UpdateCodeSigningConfigResponse(TypedDict, total=False):
|
|
|
1797
1798
|
|
|
1798
1799
|
class UpdateEventSourceMappingRequest(ServiceRequest):
|
|
1799
1800
|
UUID: String
|
|
1800
|
-
FunctionName:
|
|
1801
|
-
Enabled:
|
|
1802
|
-
BatchSize:
|
|
1803
|
-
FilterCriteria:
|
|
1804
|
-
MaximumBatchingWindowInSeconds:
|
|
1805
|
-
DestinationConfig:
|
|
1806
|
-
MaximumRecordAgeInSeconds:
|
|
1807
|
-
BisectBatchOnFunctionError:
|
|
1808
|
-
MaximumRetryAttempts:
|
|
1809
|
-
ParallelizationFactor:
|
|
1810
|
-
SourceAccessConfigurations:
|
|
1811
|
-
TumblingWindowInSeconds:
|
|
1812
|
-
FunctionResponseTypes:
|
|
1813
|
-
ScalingConfig:
|
|
1814
|
-
AmazonManagedKafkaEventSourceConfig:
|
|
1815
|
-
SelfManagedKafkaEventSourceConfig:
|
|
1816
|
-
DocumentDBEventSourceConfig:
|
|
1817
|
-
KMSKeyArn:
|
|
1818
|
-
MetricsConfig:
|
|
1819
|
-
ProvisionedPollerConfig:
|
|
1801
|
+
FunctionName: FunctionName | None
|
|
1802
|
+
Enabled: Enabled | None
|
|
1803
|
+
BatchSize: BatchSize | None
|
|
1804
|
+
FilterCriteria: FilterCriteria | None
|
|
1805
|
+
MaximumBatchingWindowInSeconds: MaximumBatchingWindowInSeconds | None
|
|
1806
|
+
DestinationConfig: DestinationConfig | None
|
|
1807
|
+
MaximumRecordAgeInSeconds: MaximumRecordAgeInSeconds | None
|
|
1808
|
+
BisectBatchOnFunctionError: BisectBatchOnFunctionError | None
|
|
1809
|
+
MaximumRetryAttempts: MaximumRetryAttemptsEventSourceMapping | None
|
|
1810
|
+
ParallelizationFactor: ParallelizationFactor | None
|
|
1811
|
+
SourceAccessConfigurations: SourceAccessConfigurations | None
|
|
1812
|
+
TumblingWindowInSeconds: TumblingWindowInSeconds | None
|
|
1813
|
+
FunctionResponseTypes: FunctionResponseTypeList | None
|
|
1814
|
+
ScalingConfig: ScalingConfig | None
|
|
1815
|
+
AmazonManagedKafkaEventSourceConfig: AmazonManagedKafkaEventSourceConfig | None
|
|
1816
|
+
SelfManagedKafkaEventSourceConfig: SelfManagedKafkaEventSourceConfig | None
|
|
1817
|
+
DocumentDBEventSourceConfig: DocumentDBEventSourceConfig | None
|
|
1818
|
+
KMSKeyArn: KMSKeyArn | None
|
|
1819
|
+
MetricsConfig: EventSourceMappingMetricsConfig | None
|
|
1820
|
+
ProvisionedPollerConfig: ProvisionedPollerConfig | None
|
|
1820
1821
|
|
|
1821
1822
|
|
|
1822
1823
|
class UpdateFunctionCodeRequest(ServiceRequest):
|
|
1823
1824
|
FunctionName: FunctionName
|
|
1824
|
-
ZipFile:
|
|
1825
|
-
S3Bucket:
|
|
1826
|
-
S3Key:
|
|
1827
|
-
S3ObjectVersion:
|
|
1828
|
-
ImageUri:
|
|
1829
|
-
Publish:
|
|
1830
|
-
DryRun:
|
|
1831
|
-
RevisionId:
|
|
1832
|
-
Architectures:
|
|
1833
|
-
SourceKMSKeyArn:
|
|
1825
|
+
ZipFile: Blob | None
|
|
1826
|
+
S3Bucket: S3Bucket | None
|
|
1827
|
+
S3Key: S3Key | None
|
|
1828
|
+
S3ObjectVersion: S3ObjectVersion | None
|
|
1829
|
+
ImageUri: String | None
|
|
1830
|
+
Publish: Boolean | None
|
|
1831
|
+
DryRun: Boolean | None
|
|
1832
|
+
RevisionId: String | None
|
|
1833
|
+
Architectures: ArchitecturesList | None
|
|
1834
|
+
SourceKMSKeyArn: KMSKeyArn | None
|
|
1834
1835
|
|
|
1835
1836
|
|
|
1836
1837
|
class UpdateFunctionConfigurationRequest(ServiceRequest):
|
|
1837
1838
|
FunctionName: FunctionName
|
|
1838
|
-
Role:
|
|
1839
|
-
Handler:
|
|
1840
|
-
Description:
|
|
1841
|
-
Timeout:
|
|
1842
|
-
MemorySize:
|
|
1843
|
-
VpcConfig:
|
|
1844
|
-
Environment:
|
|
1845
|
-
Runtime:
|
|
1846
|
-
DeadLetterConfig:
|
|
1847
|
-
KMSKeyArn:
|
|
1848
|
-
TracingConfig:
|
|
1849
|
-
RevisionId:
|
|
1850
|
-
Layers:
|
|
1851
|
-
FileSystemConfigs:
|
|
1852
|
-
ImageConfig:
|
|
1853
|
-
EphemeralStorage:
|
|
1854
|
-
SnapStart:
|
|
1855
|
-
LoggingConfig:
|
|
1839
|
+
Role: RoleArn | None
|
|
1840
|
+
Handler: Handler | None
|
|
1841
|
+
Description: Description | None
|
|
1842
|
+
Timeout: Timeout | None
|
|
1843
|
+
MemorySize: MemorySize | None
|
|
1844
|
+
VpcConfig: VpcConfig | None
|
|
1845
|
+
Environment: Environment | None
|
|
1846
|
+
Runtime: Runtime | None
|
|
1847
|
+
DeadLetterConfig: DeadLetterConfig | None
|
|
1848
|
+
KMSKeyArn: KMSKeyArn | None
|
|
1849
|
+
TracingConfig: TracingConfig | None
|
|
1850
|
+
RevisionId: String | None
|
|
1851
|
+
Layers: LayerList | None
|
|
1852
|
+
FileSystemConfigs: FileSystemConfigList | None
|
|
1853
|
+
ImageConfig: ImageConfig | None
|
|
1854
|
+
EphemeralStorage: EphemeralStorage | None
|
|
1855
|
+
SnapStart: SnapStart | None
|
|
1856
|
+
LoggingConfig: LoggingConfig | None
|
|
1856
1857
|
|
|
1857
1858
|
|
|
1858
1859
|
class UpdateFunctionEventInvokeConfigRequest(ServiceRequest):
|
|
1859
1860
|
FunctionName: FunctionName
|
|
1860
|
-
Qualifier:
|
|
1861
|
-
MaximumRetryAttempts:
|
|
1862
|
-
MaximumEventAgeInSeconds:
|
|
1863
|
-
DestinationConfig:
|
|
1861
|
+
Qualifier: Qualifier | None
|
|
1862
|
+
MaximumRetryAttempts: MaximumRetryAttempts | None
|
|
1863
|
+
MaximumEventAgeInSeconds: MaximumEventAgeInSeconds | None
|
|
1864
|
+
DestinationConfig: DestinationConfig | None
|
|
1864
1865
|
|
|
1865
1866
|
|
|
1866
1867
|
class UpdateFunctionUrlConfigRequest(ServiceRequest):
|
|
1867
1868
|
FunctionName: FunctionName
|
|
1868
|
-
Qualifier:
|
|
1869
|
-
AuthType:
|
|
1870
|
-
Cors:
|
|
1871
|
-
InvokeMode:
|
|
1869
|
+
Qualifier: FunctionUrlQualifier | None
|
|
1870
|
+
AuthType: FunctionUrlAuthType | None
|
|
1871
|
+
Cors: Cors | None
|
|
1872
|
+
InvokeMode: InvokeMode | None
|
|
1872
1873
|
|
|
1873
1874
|
|
|
1874
1875
|
class UpdateFunctionUrlConfigResponse(TypedDict, total=False):
|
|
1875
1876
|
FunctionUrl: FunctionUrl
|
|
1876
1877
|
FunctionArn: FunctionArn
|
|
1877
1878
|
AuthType: FunctionUrlAuthType
|
|
1878
|
-
Cors:
|
|
1879
|
+
Cors: Cors | None
|
|
1879
1880
|
CreationTime: Timestamp
|
|
1880
1881
|
LastModifiedTime: Timestamp
|
|
1881
|
-
InvokeMode:
|
|
1882
|
+
InvokeMode: InvokeMode | None
|
|
1882
1883
|
|
|
1883
1884
|
|
|
1884
1885
|
class LambdaApi:
|
|
1885
|
-
service = "lambda"
|
|
1886
|
-
version = "2015-03-31"
|
|
1886
|
+
service: str = "lambda"
|
|
1887
|
+
version: str = "2015-03-31"
|
|
1887
1888
|
|
|
1888
1889
|
@handler("AddLayerVersionPermission")
|
|
1889
1890
|
def add_layer_version_permission(
|