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,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -387,32 +387,32 @@ class BackupNotFoundException(ServiceException):
|
|
|
387
387
|
|
|
388
388
|
|
|
389
389
|
class AttributeValue(TypedDict, total=False):
|
|
390
|
-
S:
|
|
391
|
-
N:
|
|
392
|
-
B:
|
|
393
|
-
SS:
|
|
394
|
-
NS:
|
|
395
|
-
BS:
|
|
396
|
-
M:
|
|
397
|
-
L:
|
|
398
|
-
NULL:
|
|
399
|
-
BOOL:
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
ListAttributeValue =
|
|
403
|
-
MapAttributeValue =
|
|
390
|
+
S: "StringAttributeValue | None"
|
|
391
|
+
N: "NumberAttributeValue | None"
|
|
392
|
+
B: "BinaryAttributeValue | None"
|
|
393
|
+
SS: "StringSetAttributeValue | None"
|
|
394
|
+
NS: "NumberSetAttributeValue | None"
|
|
395
|
+
BS: "BinarySetAttributeValue | None"
|
|
396
|
+
M: "MapAttributeValue | None"
|
|
397
|
+
L: "ListAttributeValue | None"
|
|
398
|
+
NULL: "NullAttributeValue | None"
|
|
399
|
+
BOOL: "BooleanAttributeValue | None"
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
ListAttributeValue = list[AttributeValue]
|
|
403
|
+
MapAttributeValue = dict[AttributeName, AttributeValue]
|
|
404
404
|
BinaryAttributeValue = bytes
|
|
405
|
-
BinarySetAttributeValue =
|
|
406
|
-
NumberSetAttributeValue =
|
|
407
|
-
StringSetAttributeValue =
|
|
408
|
-
AttributeMap =
|
|
405
|
+
BinarySetAttributeValue = list[BinaryAttributeValue]
|
|
406
|
+
NumberSetAttributeValue = list[NumberAttributeValue]
|
|
407
|
+
StringSetAttributeValue = list[StringAttributeValue]
|
|
408
|
+
AttributeMap = dict[AttributeName, AttributeValue]
|
|
409
409
|
|
|
410
410
|
|
|
411
411
|
class ConditionalCheckFailedException(ServiceException):
|
|
412
412
|
code: str = "ConditionalCheckFailedException"
|
|
413
413
|
sender_fault: bool = False
|
|
414
414
|
status_code: int = 400
|
|
415
|
-
Item:
|
|
415
|
+
Item: AttributeMap | None
|
|
416
416
|
|
|
417
417
|
|
|
418
418
|
class ContinuousBackupsUnavailableException(ServiceException):
|
|
@@ -518,18 +518,18 @@ class PolicyNotFoundException(ServiceException):
|
|
|
518
518
|
|
|
519
519
|
|
|
520
520
|
class ThrottlingReason(TypedDict, total=False):
|
|
521
|
-
reason:
|
|
522
|
-
resource:
|
|
521
|
+
reason: Reason | None
|
|
522
|
+
resource: Resource | None
|
|
523
523
|
|
|
524
524
|
|
|
525
|
-
ThrottlingReasonList =
|
|
525
|
+
ThrottlingReasonList = list[ThrottlingReason]
|
|
526
526
|
|
|
527
527
|
|
|
528
528
|
class ProvisionedThroughputExceededException(ServiceException):
|
|
529
529
|
code: str = "ProvisionedThroughputExceededException"
|
|
530
530
|
sender_fault: bool = False
|
|
531
531
|
status_code: int = 400
|
|
532
|
-
ThrottlingReasons:
|
|
532
|
+
ThrottlingReasons: ThrottlingReasonList | None
|
|
533
533
|
|
|
534
534
|
|
|
535
535
|
class ReplicaAlreadyExistsException(ServiceException):
|
|
@@ -554,7 +554,7 @@ class RequestLimitExceeded(ServiceException):
|
|
|
554
554
|
code: str = "RequestLimitExceeded"
|
|
555
555
|
sender_fault: bool = False
|
|
556
556
|
status_code: int = 400
|
|
557
|
-
ThrottlingReasons:
|
|
557
|
+
ThrottlingReasons: ThrottlingReasonList | None
|
|
558
558
|
|
|
559
559
|
|
|
560
560
|
class ResourceInUseException(ServiceException):
|
|
@@ -591,23 +591,23 @@ class ThrottlingException(ServiceException):
|
|
|
591
591
|
code: str = "ThrottlingException"
|
|
592
592
|
sender_fault: bool = False
|
|
593
593
|
status_code: int = 400
|
|
594
|
-
throttlingReasons:
|
|
594
|
+
throttlingReasons: ThrottlingReasonList | None
|
|
595
595
|
|
|
596
596
|
|
|
597
597
|
class CancellationReason(TypedDict, total=False):
|
|
598
|
-
Item:
|
|
599
|
-
Code:
|
|
600
|
-
Message:
|
|
598
|
+
Item: AttributeMap | None
|
|
599
|
+
Code: Code | None
|
|
600
|
+
Message: ErrorMessage | None
|
|
601
601
|
|
|
602
602
|
|
|
603
|
-
CancellationReasonList =
|
|
603
|
+
CancellationReasonList = list[CancellationReason]
|
|
604
604
|
|
|
605
605
|
|
|
606
606
|
class TransactionCanceledException(ServiceException):
|
|
607
607
|
code: str = "TransactionCanceledException"
|
|
608
608
|
sender_fault: bool = False
|
|
609
609
|
status_code: int = 400
|
|
610
|
-
CancellationReasons:
|
|
610
|
+
CancellationReasons: CancellationReasonList | None
|
|
611
611
|
|
|
612
612
|
|
|
613
613
|
class TransactionConflictException(ServiceException):
|
|
@@ -626,9 +626,9 @@ Date = datetime
|
|
|
626
626
|
|
|
627
627
|
|
|
628
628
|
class ArchivalSummary(TypedDict, total=False):
|
|
629
|
-
ArchivalDateTime:
|
|
630
|
-
ArchivalReason:
|
|
631
|
-
ArchivalBackupArn:
|
|
629
|
+
ArchivalDateTime: Date | None
|
|
630
|
+
ArchivalReason: ArchivalReason | None
|
|
631
|
+
ArchivalBackupArn: BackupArn | None
|
|
632
632
|
|
|
633
633
|
|
|
634
634
|
class AttributeDefinition(TypedDict, total=False):
|
|
@@ -636,45 +636,45 @@ class AttributeDefinition(TypedDict, total=False):
|
|
|
636
636
|
AttributeType: ScalarAttributeType
|
|
637
637
|
|
|
638
638
|
|
|
639
|
-
AttributeDefinitions =
|
|
640
|
-
AttributeNameList =
|
|
639
|
+
AttributeDefinitions = list[AttributeDefinition]
|
|
640
|
+
AttributeNameList = list[AttributeName]
|
|
641
641
|
|
|
642
642
|
|
|
643
643
|
class AttributeValueUpdate(TypedDict, total=False):
|
|
644
|
-
Value:
|
|
645
|
-
Action:
|
|
644
|
+
Value: AttributeValue | None
|
|
645
|
+
Action: AttributeAction | None
|
|
646
646
|
|
|
647
647
|
|
|
648
|
-
AttributeUpdates =
|
|
649
|
-
AttributeValueList =
|
|
648
|
+
AttributeUpdates = dict[AttributeName, AttributeValueUpdate]
|
|
649
|
+
AttributeValueList = list[AttributeValue]
|
|
650
650
|
|
|
651
651
|
|
|
652
652
|
class AutoScalingTargetTrackingScalingPolicyConfigurationDescription(TypedDict, total=False):
|
|
653
|
-
DisableScaleIn:
|
|
654
|
-
ScaleInCooldown:
|
|
655
|
-
ScaleOutCooldown:
|
|
653
|
+
DisableScaleIn: BooleanObject | None
|
|
654
|
+
ScaleInCooldown: IntegerObject | None
|
|
655
|
+
ScaleOutCooldown: IntegerObject | None
|
|
656
656
|
TargetValue: DoubleObject
|
|
657
657
|
|
|
658
658
|
|
|
659
659
|
class AutoScalingPolicyDescription(TypedDict, total=False):
|
|
660
|
-
PolicyName:
|
|
661
|
-
TargetTrackingScalingPolicyConfiguration:
|
|
662
|
-
AutoScalingTargetTrackingScalingPolicyConfigurationDescription
|
|
663
|
-
|
|
660
|
+
PolicyName: AutoScalingPolicyName | None
|
|
661
|
+
TargetTrackingScalingPolicyConfiguration: (
|
|
662
|
+
AutoScalingTargetTrackingScalingPolicyConfigurationDescription | None
|
|
663
|
+
)
|
|
664
664
|
|
|
665
665
|
|
|
666
|
-
AutoScalingPolicyDescriptionList =
|
|
666
|
+
AutoScalingPolicyDescriptionList = list[AutoScalingPolicyDescription]
|
|
667
667
|
|
|
668
668
|
|
|
669
669
|
class AutoScalingTargetTrackingScalingPolicyConfigurationUpdate(TypedDict, total=False):
|
|
670
|
-
DisableScaleIn:
|
|
671
|
-
ScaleInCooldown:
|
|
672
|
-
ScaleOutCooldown:
|
|
670
|
+
DisableScaleIn: BooleanObject | None
|
|
671
|
+
ScaleInCooldown: IntegerObject | None
|
|
672
|
+
ScaleOutCooldown: IntegerObject | None
|
|
673
673
|
TargetValue: DoubleObject
|
|
674
674
|
|
|
675
675
|
|
|
676
676
|
class AutoScalingPolicyUpdate(TypedDict, total=False):
|
|
677
|
-
PolicyName:
|
|
677
|
+
PolicyName: AutoScalingPolicyName | None
|
|
678
678
|
TargetTrackingScalingPolicyConfiguration: (
|
|
679
679
|
AutoScalingTargetTrackingScalingPolicyConfigurationUpdate
|
|
680
680
|
)
|
|
@@ -684,47 +684,47 @@ PositiveLongObject = int
|
|
|
684
684
|
|
|
685
685
|
|
|
686
686
|
class AutoScalingSettingsDescription(TypedDict, total=False):
|
|
687
|
-
MinimumUnits:
|
|
688
|
-
MaximumUnits:
|
|
689
|
-
AutoScalingDisabled:
|
|
690
|
-
AutoScalingRoleArn:
|
|
691
|
-
ScalingPolicies:
|
|
687
|
+
MinimumUnits: PositiveLongObject | None
|
|
688
|
+
MaximumUnits: PositiveLongObject | None
|
|
689
|
+
AutoScalingDisabled: BooleanObject | None
|
|
690
|
+
AutoScalingRoleArn: String | None
|
|
691
|
+
ScalingPolicies: AutoScalingPolicyDescriptionList | None
|
|
692
692
|
|
|
693
693
|
|
|
694
694
|
class AutoScalingSettingsUpdate(TypedDict, total=False):
|
|
695
|
-
MinimumUnits:
|
|
696
|
-
MaximumUnits:
|
|
697
|
-
AutoScalingDisabled:
|
|
698
|
-
AutoScalingRoleArn:
|
|
699
|
-
ScalingPolicyUpdate:
|
|
695
|
+
MinimumUnits: PositiveLongObject | None
|
|
696
|
+
MaximumUnits: PositiveLongObject | None
|
|
697
|
+
AutoScalingDisabled: BooleanObject | None
|
|
698
|
+
AutoScalingRoleArn: AutoScalingRoleArn | None
|
|
699
|
+
ScalingPolicyUpdate: AutoScalingPolicyUpdate | None
|
|
700
700
|
|
|
701
701
|
|
|
702
702
|
BackupCreationDateTime = datetime
|
|
703
703
|
|
|
704
704
|
|
|
705
705
|
class SSEDescription(TypedDict, total=False):
|
|
706
|
-
Status:
|
|
707
|
-
SSEType:
|
|
708
|
-
KMSMasterKeyArn:
|
|
709
|
-
InaccessibleEncryptionDateTime:
|
|
706
|
+
Status: SSEStatus | None
|
|
707
|
+
SSEType: SSEType | None
|
|
708
|
+
KMSMasterKeyArn: KMSMasterKeyArn | None
|
|
709
|
+
InaccessibleEncryptionDateTime: Date | None
|
|
710
710
|
|
|
711
711
|
|
|
712
712
|
class TimeToLiveDescription(TypedDict, total=False):
|
|
713
|
-
TimeToLiveStatus:
|
|
714
|
-
AttributeName:
|
|
713
|
+
TimeToLiveStatus: TimeToLiveStatus | None
|
|
714
|
+
AttributeName: TimeToLiveAttributeName | None
|
|
715
715
|
|
|
716
716
|
|
|
717
717
|
class StreamSpecification(TypedDict, total=False):
|
|
718
718
|
StreamEnabled: StreamEnabled
|
|
719
|
-
StreamViewType:
|
|
719
|
+
StreamViewType: StreamViewType | None
|
|
720
720
|
|
|
721
721
|
|
|
722
722
|
LongObject = int
|
|
723
723
|
|
|
724
724
|
|
|
725
725
|
class OnDemandThroughput(TypedDict, total=False):
|
|
726
|
-
MaxReadRequestUnits:
|
|
727
|
-
MaxWriteRequestUnits:
|
|
726
|
+
MaxReadRequestUnits: LongObject | None
|
|
727
|
+
MaxWriteRequestUnits: LongObject | None
|
|
728
728
|
|
|
729
729
|
|
|
730
730
|
class ProvisionedThroughput(TypedDict, total=False):
|
|
@@ -732,12 +732,12 @@ class ProvisionedThroughput(TypedDict, total=False):
|
|
|
732
732
|
WriteCapacityUnits: PositiveLongObject
|
|
733
733
|
|
|
734
734
|
|
|
735
|
-
NonKeyAttributeNameList =
|
|
735
|
+
NonKeyAttributeNameList = list[NonKeyAttributeName]
|
|
736
736
|
|
|
737
737
|
|
|
738
738
|
class Projection(TypedDict, total=False):
|
|
739
|
-
ProjectionType:
|
|
740
|
-
NonKeyAttributes:
|
|
739
|
+
ProjectionType: ProjectionType | None
|
|
740
|
+
NonKeyAttributes: NonKeyAttributeNameList | None
|
|
741
741
|
|
|
742
742
|
|
|
743
743
|
class KeySchemaElement(TypedDict, total=False):
|
|
@@ -745,35 +745,35 @@ class KeySchemaElement(TypedDict, total=False):
|
|
|
745
745
|
KeyType: KeyType
|
|
746
746
|
|
|
747
747
|
|
|
748
|
-
KeySchema =
|
|
748
|
+
KeySchema = list[KeySchemaElement]
|
|
749
749
|
|
|
750
750
|
|
|
751
751
|
class GlobalSecondaryIndexInfo(TypedDict, total=False):
|
|
752
|
-
IndexName:
|
|
753
|
-
KeySchema:
|
|
754
|
-
Projection:
|
|
755
|
-
ProvisionedThroughput:
|
|
756
|
-
OnDemandThroughput:
|
|
752
|
+
IndexName: IndexName | None
|
|
753
|
+
KeySchema: KeySchema | None
|
|
754
|
+
Projection: Projection | None
|
|
755
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
756
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
757
757
|
|
|
758
758
|
|
|
759
|
-
GlobalSecondaryIndexes =
|
|
759
|
+
GlobalSecondaryIndexes = list[GlobalSecondaryIndexInfo]
|
|
760
760
|
|
|
761
761
|
|
|
762
762
|
class LocalSecondaryIndexInfo(TypedDict, total=False):
|
|
763
|
-
IndexName:
|
|
764
|
-
KeySchema:
|
|
765
|
-
Projection:
|
|
763
|
+
IndexName: IndexName | None
|
|
764
|
+
KeySchema: KeySchema | None
|
|
765
|
+
Projection: Projection | None
|
|
766
766
|
|
|
767
767
|
|
|
768
|
-
LocalSecondaryIndexes =
|
|
768
|
+
LocalSecondaryIndexes = list[LocalSecondaryIndexInfo]
|
|
769
769
|
|
|
770
770
|
|
|
771
771
|
class SourceTableFeatureDetails(TypedDict, total=False):
|
|
772
|
-
LocalSecondaryIndexes:
|
|
773
|
-
GlobalSecondaryIndexes:
|
|
774
|
-
StreamDescription:
|
|
775
|
-
TimeToLiveDescription:
|
|
776
|
-
SSEDescription:
|
|
772
|
+
LocalSecondaryIndexes: LocalSecondaryIndexes | None
|
|
773
|
+
GlobalSecondaryIndexes: GlobalSecondaryIndexes | None
|
|
774
|
+
StreamDescription: StreamSpecification | None
|
|
775
|
+
TimeToLiveDescription: TimeToLiveDescription | None
|
|
776
|
+
SSEDescription: SSEDescription | None
|
|
777
777
|
|
|
778
778
|
|
|
779
779
|
ItemCount = int
|
|
@@ -783,14 +783,14 @@ TableCreationDateTime = datetime
|
|
|
783
783
|
class SourceTableDetails(TypedDict, total=False):
|
|
784
784
|
TableName: TableName
|
|
785
785
|
TableId: TableId
|
|
786
|
-
TableArn:
|
|
787
|
-
TableSizeBytes:
|
|
786
|
+
TableArn: TableArn | None
|
|
787
|
+
TableSizeBytes: LongObject | None
|
|
788
788
|
KeySchema: KeySchema
|
|
789
789
|
TableCreationDateTime: TableCreationDateTime
|
|
790
790
|
ProvisionedThroughput: ProvisionedThroughput
|
|
791
|
-
OnDemandThroughput:
|
|
792
|
-
ItemCount:
|
|
793
|
-
BillingMode:
|
|
791
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
792
|
+
ItemCount: ItemCount | None
|
|
793
|
+
BillingMode: BillingMode | None
|
|
794
794
|
|
|
795
795
|
|
|
796
796
|
BackupSizeBytes = int
|
|
@@ -799,129 +799,129 @@ BackupSizeBytes = int
|
|
|
799
799
|
class BackupDetails(TypedDict, total=False):
|
|
800
800
|
BackupArn: BackupArn
|
|
801
801
|
BackupName: BackupName
|
|
802
|
-
BackupSizeBytes:
|
|
802
|
+
BackupSizeBytes: BackupSizeBytes | None
|
|
803
803
|
BackupStatus: BackupStatus
|
|
804
804
|
BackupType: BackupType
|
|
805
805
|
BackupCreationDateTime: BackupCreationDateTime
|
|
806
|
-
BackupExpiryDateTime:
|
|
806
|
+
BackupExpiryDateTime: Date | None
|
|
807
807
|
|
|
808
808
|
|
|
809
809
|
class BackupDescription(TypedDict, total=False):
|
|
810
|
-
BackupDetails:
|
|
811
|
-
SourceTableDetails:
|
|
812
|
-
SourceTableFeatureDetails:
|
|
810
|
+
BackupDetails: BackupDetails | None
|
|
811
|
+
SourceTableDetails: SourceTableDetails | None
|
|
812
|
+
SourceTableFeatureDetails: SourceTableFeatureDetails | None
|
|
813
813
|
|
|
814
814
|
|
|
815
815
|
class BackupSummary(TypedDict, total=False):
|
|
816
|
-
TableName:
|
|
817
|
-
TableId:
|
|
818
|
-
TableArn:
|
|
819
|
-
BackupArn:
|
|
820
|
-
BackupName:
|
|
821
|
-
BackupCreationDateTime:
|
|
822
|
-
BackupExpiryDateTime:
|
|
823
|
-
BackupStatus:
|
|
824
|
-
BackupType:
|
|
825
|
-
BackupSizeBytes:
|
|
816
|
+
TableName: TableName | None
|
|
817
|
+
TableId: TableId | None
|
|
818
|
+
TableArn: TableArn | None
|
|
819
|
+
BackupArn: BackupArn | None
|
|
820
|
+
BackupName: BackupName | None
|
|
821
|
+
BackupCreationDateTime: BackupCreationDateTime | None
|
|
822
|
+
BackupExpiryDateTime: Date | None
|
|
823
|
+
BackupStatus: BackupStatus | None
|
|
824
|
+
BackupType: BackupType | None
|
|
825
|
+
BackupSizeBytes: BackupSizeBytes | None
|
|
826
826
|
|
|
827
827
|
|
|
828
|
-
BackupSummaries =
|
|
829
|
-
PreparedStatementParameters =
|
|
828
|
+
BackupSummaries = list[BackupSummary]
|
|
829
|
+
PreparedStatementParameters = list[AttributeValue]
|
|
830
830
|
|
|
831
831
|
|
|
832
832
|
class BatchStatementRequest(TypedDict, total=False):
|
|
833
833
|
Statement: PartiQLStatement
|
|
834
|
-
Parameters:
|
|
835
|
-
ConsistentRead:
|
|
836
|
-
ReturnValuesOnConditionCheckFailure:
|
|
834
|
+
Parameters: PreparedStatementParameters | None
|
|
835
|
+
ConsistentRead: ConsistentRead | None
|
|
836
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
837
837
|
|
|
838
838
|
|
|
839
|
-
PartiQLBatchRequest =
|
|
839
|
+
PartiQLBatchRequest = list[BatchStatementRequest]
|
|
840
840
|
|
|
841
841
|
|
|
842
842
|
class BatchExecuteStatementInput(ServiceRequest):
|
|
843
843
|
Statements: PartiQLBatchRequest
|
|
844
|
-
ReturnConsumedCapacity:
|
|
844
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
845
845
|
|
|
846
846
|
|
|
847
847
|
class Capacity(TypedDict, total=False):
|
|
848
|
-
ReadCapacityUnits:
|
|
849
|
-
WriteCapacityUnits:
|
|
850
|
-
CapacityUnits:
|
|
848
|
+
ReadCapacityUnits: ConsumedCapacityUnits | None
|
|
849
|
+
WriteCapacityUnits: ConsumedCapacityUnits | None
|
|
850
|
+
CapacityUnits: ConsumedCapacityUnits | None
|
|
851
851
|
|
|
852
852
|
|
|
853
|
-
SecondaryIndexesCapacityMap =
|
|
853
|
+
SecondaryIndexesCapacityMap = dict[IndexName, Capacity]
|
|
854
854
|
|
|
855
855
|
|
|
856
856
|
class ConsumedCapacity(TypedDict, total=False):
|
|
857
|
-
TableName:
|
|
858
|
-
CapacityUnits:
|
|
859
|
-
ReadCapacityUnits:
|
|
860
|
-
WriteCapacityUnits:
|
|
861
|
-
Table:
|
|
862
|
-
LocalSecondaryIndexes:
|
|
863
|
-
GlobalSecondaryIndexes:
|
|
857
|
+
TableName: TableArn | None
|
|
858
|
+
CapacityUnits: ConsumedCapacityUnits | None
|
|
859
|
+
ReadCapacityUnits: ConsumedCapacityUnits | None
|
|
860
|
+
WriteCapacityUnits: ConsumedCapacityUnits | None
|
|
861
|
+
Table: Capacity | None
|
|
862
|
+
LocalSecondaryIndexes: SecondaryIndexesCapacityMap | None
|
|
863
|
+
GlobalSecondaryIndexes: SecondaryIndexesCapacityMap | None
|
|
864
864
|
|
|
865
865
|
|
|
866
|
-
ConsumedCapacityMultiple =
|
|
866
|
+
ConsumedCapacityMultiple = list[ConsumedCapacity]
|
|
867
867
|
|
|
868
868
|
|
|
869
869
|
class BatchStatementError(TypedDict, total=False):
|
|
870
|
-
Code:
|
|
871
|
-
Message:
|
|
872
|
-
Item:
|
|
870
|
+
Code: BatchStatementErrorCodeEnum | None
|
|
871
|
+
Message: String | None
|
|
872
|
+
Item: AttributeMap | None
|
|
873
873
|
|
|
874
874
|
|
|
875
875
|
class BatchStatementResponse(TypedDict, total=False):
|
|
876
|
-
Error:
|
|
877
|
-
TableName:
|
|
878
|
-
Item:
|
|
876
|
+
Error: BatchStatementError | None
|
|
877
|
+
TableName: TableName | None
|
|
878
|
+
Item: AttributeMap | None
|
|
879
879
|
|
|
880
880
|
|
|
881
|
-
PartiQLBatchResponse =
|
|
881
|
+
PartiQLBatchResponse = list[BatchStatementResponse]
|
|
882
882
|
|
|
883
883
|
|
|
884
884
|
class BatchExecuteStatementOutput(TypedDict, total=False):
|
|
885
|
-
Responses:
|
|
886
|
-
ConsumedCapacity:
|
|
885
|
+
Responses: PartiQLBatchResponse | None
|
|
886
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
887
887
|
|
|
888
888
|
|
|
889
|
-
ExpressionAttributeNameMap =
|
|
890
|
-
Key =
|
|
891
|
-
KeyList =
|
|
889
|
+
ExpressionAttributeNameMap = dict[ExpressionAttributeNameVariable, AttributeName]
|
|
890
|
+
Key = dict[AttributeName, AttributeValue]
|
|
891
|
+
KeyList = list[Key]
|
|
892
892
|
|
|
893
893
|
|
|
894
894
|
class KeysAndAttributes(TypedDict, total=False):
|
|
895
895
|
Keys: KeyList
|
|
896
|
-
AttributesToGet:
|
|
897
|
-
ConsistentRead:
|
|
898
|
-
ProjectionExpression:
|
|
899
|
-
ExpressionAttributeNames:
|
|
896
|
+
AttributesToGet: AttributeNameList | None
|
|
897
|
+
ConsistentRead: ConsistentRead | None
|
|
898
|
+
ProjectionExpression: ProjectionExpression | None
|
|
899
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
900
900
|
|
|
901
901
|
|
|
902
|
-
BatchGetRequestMap =
|
|
902
|
+
BatchGetRequestMap = dict[TableArn, KeysAndAttributes]
|
|
903
903
|
|
|
904
904
|
|
|
905
905
|
class BatchGetItemInput(ServiceRequest):
|
|
906
906
|
RequestItems: BatchGetRequestMap
|
|
907
|
-
ReturnConsumedCapacity:
|
|
907
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
908
908
|
|
|
909
909
|
|
|
910
|
-
ItemList =
|
|
911
|
-
BatchGetResponseMap =
|
|
910
|
+
ItemList = list[AttributeMap]
|
|
911
|
+
BatchGetResponseMap = dict[TableArn, ItemList]
|
|
912
912
|
|
|
913
913
|
|
|
914
914
|
class BatchGetItemOutput(TypedDict, total=False):
|
|
915
|
-
Responses:
|
|
916
|
-
UnprocessedKeys:
|
|
917
|
-
ConsumedCapacity:
|
|
915
|
+
Responses: BatchGetResponseMap | None
|
|
916
|
+
UnprocessedKeys: BatchGetRequestMap | None
|
|
917
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
918
918
|
|
|
919
919
|
|
|
920
920
|
class DeleteRequest(TypedDict, total=False):
|
|
921
921
|
Key: Key
|
|
922
922
|
|
|
923
923
|
|
|
924
|
-
PutItemInputAttributeMap =
|
|
924
|
+
PutItemInputAttributeMap = dict[AttributeName, AttributeValue]
|
|
925
925
|
|
|
926
926
|
|
|
927
927
|
class PutRequest(TypedDict, total=False):
|
|
@@ -929,87 +929,87 @@ class PutRequest(TypedDict, total=False):
|
|
|
929
929
|
|
|
930
930
|
|
|
931
931
|
class WriteRequest(TypedDict, total=False):
|
|
932
|
-
PutRequest:
|
|
933
|
-
DeleteRequest:
|
|
932
|
+
PutRequest: PutRequest | None
|
|
933
|
+
DeleteRequest: DeleteRequest | None
|
|
934
934
|
|
|
935
935
|
|
|
936
|
-
WriteRequests =
|
|
937
|
-
BatchWriteItemRequestMap =
|
|
936
|
+
WriteRequests = list[WriteRequest]
|
|
937
|
+
BatchWriteItemRequestMap = dict[TableArn, WriteRequests]
|
|
938
938
|
|
|
939
939
|
|
|
940
940
|
class BatchWriteItemInput(ServiceRequest):
|
|
941
941
|
RequestItems: BatchWriteItemRequestMap
|
|
942
|
-
ReturnConsumedCapacity:
|
|
943
|
-
ReturnItemCollectionMetrics:
|
|
942
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
943
|
+
ReturnItemCollectionMetrics: ReturnItemCollectionMetrics | None
|
|
944
944
|
|
|
945
945
|
|
|
946
|
-
ItemCollectionSizeEstimateRange =
|
|
947
|
-
ItemCollectionKeyAttributeMap =
|
|
946
|
+
ItemCollectionSizeEstimateRange = list[ItemCollectionSizeEstimateBound]
|
|
947
|
+
ItemCollectionKeyAttributeMap = dict[AttributeName, AttributeValue]
|
|
948
948
|
|
|
949
949
|
|
|
950
950
|
class ItemCollectionMetrics(TypedDict, total=False):
|
|
951
|
-
ItemCollectionKey:
|
|
952
|
-
SizeEstimateRangeGB:
|
|
951
|
+
ItemCollectionKey: ItemCollectionKeyAttributeMap | None
|
|
952
|
+
SizeEstimateRangeGB: ItemCollectionSizeEstimateRange | None
|
|
953
953
|
|
|
954
954
|
|
|
955
|
-
ItemCollectionMetricsMultiple =
|
|
956
|
-
ItemCollectionMetricsPerTable =
|
|
955
|
+
ItemCollectionMetricsMultiple = list[ItemCollectionMetrics]
|
|
956
|
+
ItemCollectionMetricsPerTable = dict[TableArn, ItemCollectionMetricsMultiple]
|
|
957
957
|
|
|
958
958
|
|
|
959
959
|
class BatchWriteItemOutput(TypedDict, total=False):
|
|
960
|
-
UnprocessedItems:
|
|
961
|
-
ItemCollectionMetrics:
|
|
962
|
-
ConsumedCapacity:
|
|
960
|
+
UnprocessedItems: BatchWriteItemRequestMap | None
|
|
961
|
+
ItemCollectionMetrics: ItemCollectionMetricsPerTable | None
|
|
962
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
963
963
|
|
|
964
964
|
|
|
965
965
|
BilledSizeBytes = int
|
|
966
966
|
|
|
967
967
|
|
|
968
968
|
class BillingModeSummary(TypedDict, total=False):
|
|
969
|
-
BillingMode:
|
|
970
|
-
LastUpdateToPayPerRequestDateTime:
|
|
969
|
+
BillingMode: BillingMode | None
|
|
970
|
+
LastUpdateToPayPerRequestDateTime: Date | None
|
|
971
971
|
|
|
972
972
|
|
|
973
973
|
class Condition(TypedDict, total=False):
|
|
974
|
-
AttributeValueList:
|
|
974
|
+
AttributeValueList: AttributeValueList | None
|
|
975
975
|
ComparisonOperator: ComparisonOperator
|
|
976
976
|
|
|
977
977
|
|
|
978
|
-
ExpressionAttributeValueMap =
|
|
978
|
+
ExpressionAttributeValueMap = dict[ExpressionAttributeValueVariable, AttributeValue]
|
|
979
979
|
|
|
980
980
|
|
|
981
981
|
class ConditionCheck(TypedDict, total=False):
|
|
982
982
|
Key: Key
|
|
983
983
|
TableName: TableArn
|
|
984
984
|
ConditionExpression: ConditionExpression
|
|
985
|
-
ExpressionAttributeNames:
|
|
986
|
-
ExpressionAttributeValues:
|
|
987
|
-
ReturnValuesOnConditionCheckFailure:
|
|
985
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
986
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
987
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
988
988
|
|
|
989
989
|
|
|
990
990
|
class PointInTimeRecoveryDescription(TypedDict, total=False):
|
|
991
|
-
PointInTimeRecoveryStatus:
|
|
992
|
-
RecoveryPeriodInDays:
|
|
993
|
-
EarliestRestorableDateTime:
|
|
994
|
-
LatestRestorableDateTime:
|
|
991
|
+
PointInTimeRecoveryStatus: PointInTimeRecoveryStatus | None
|
|
992
|
+
RecoveryPeriodInDays: RecoveryPeriodInDays | None
|
|
993
|
+
EarliestRestorableDateTime: Date | None
|
|
994
|
+
LatestRestorableDateTime: Date | None
|
|
995
995
|
|
|
996
996
|
|
|
997
997
|
class ContinuousBackupsDescription(TypedDict, total=False):
|
|
998
998
|
ContinuousBackupsStatus: ContinuousBackupsStatus
|
|
999
|
-
PointInTimeRecoveryDescription:
|
|
999
|
+
PointInTimeRecoveryDescription: PointInTimeRecoveryDescription | None
|
|
1000
1000
|
|
|
1001
1001
|
|
|
1002
|
-
ContributorInsightsRuleList =
|
|
1002
|
+
ContributorInsightsRuleList = list[ContributorInsightsRule]
|
|
1003
1003
|
|
|
1004
1004
|
|
|
1005
1005
|
class ContributorInsightsSummary(TypedDict, total=False):
|
|
1006
|
-
TableName:
|
|
1007
|
-
IndexName:
|
|
1008
|
-
ContributorInsightsStatus:
|
|
1009
|
-
ContributorInsightsMode:
|
|
1006
|
+
TableName: TableName | None
|
|
1007
|
+
IndexName: IndexName | None
|
|
1008
|
+
ContributorInsightsStatus: ContributorInsightsStatus | None
|
|
1009
|
+
ContributorInsightsMode: ContributorInsightsMode | None
|
|
1010
1010
|
|
|
1011
1011
|
|
|
1012
|
-
ContributorInsightsSummaries =
|
|
1012
|
+
ContributorInsightsSummaries = list[ContributorInsightsSummary]
|
|
1013
1013
|
|
|
1014
1014
|
|
|
1015
1015
|
class CreateBackupInput(ServiceRequest):
|
|
@@ -1018,28 +1018,28 @@ class CreateBackupInput(ServiceRequest):
|
|
|
1018
1018
|
|
|
1019
1019
|
|
|
1020
1020
|
class CreateBackupOutput(TypedDict, total=False):
|
|
1021
|
-
BackupDetails:
|
|
1021
|
+
BackupDetails: BackupDetails | None
|
|
1022
1022
|
|
|
1023
1023
|
|
|
1024
1024
|
class WarmThroughput(TypedDict, total=False):
|
|
1025
|
-
ReadUnitsPerSecond:
|
|
1026
|
-
WriteUnitsPerSecond:
|
|
1025
|
+
ReadUnitsPerSecond: LongObject | None
|
|
1026
|
+
WriteUnitsPerSecond: LongObject | None
|
|
1027
1027
|
|
|
1028
1028
|
|
|
1029
1029
|
class CreateGlobalSecondaryIndexAction(TypedDict, total=False):
|
|
1030
1030
|
IndexName: IndexName
|
|
1031
1031
|
KeySchema: KeySchema
|
|
1032
1032
|
Projection: Projection
|
|
1033
|
-
ProvisionedThroughput:
|
|
1034
|
-
OnDemandThroughput:
|
|
1035
|
-
WarmThroughput:
|
|
1033
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
1034
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1035
|
+
WarmThroughput: WarmThroughput | None
|
|
1036
1036
|
|
|
1037
1037
|
|
|
1038
1038
|
class Replica(TypedDict, total=False):
|
|
1039
|
-
RegionName:
|
|
1039
|
+
RegionName: RegionName | None
|
|
1040
1040
|
|
|
1041
1041
|
|
|
1042
|
-
ReplicaList =
|
|
1042
|
+
ReplicaList = list[Replica]
|
|
1043
1043
|
|
|
1044
1044
|
|
|
1045
1045
|
class CreateGlobalTableInput(ServiceRequest):
|
|
@@ -1048,67 +1048,67 @@ class CreateGlobalTableInput(ServiceRequest):
|
|
|
1048
1048
|
|
|
1049
1049
|
|
|
1050
1050
|
class TableClassSummary(TypedDict, total=False):
|
|
1051
|
-
TableClass:
|
|
1052
|
-
LastUpdateDateTime:
|
|
1051
|
+
TableClass: TableClass | None
|
|
1052
|
+
LastUpdateDateTime: Date | None
|
|
1053
1053
|
|
|
1054
1054
|
|
|
1055
1055
|
class GlobalSecondaryIndexWarmThroughputDescription(TypedDict, total=False):
|
|
1056
|
-
ReadUnitsPerSecond:
|
|
1057
|
-
WriteUnitsPerSecond:
|
|
1058
|
-
Status:
|
|
1056
|
+
ReadUnitsPerSecond: PositiveLongObject | None
|
|
1057
|
+
WriteUnitsPerSecond: PositiveLongObject | None
|
|
1058
|
+
Status: IndexStatus | None
|
|
1059
1059
|
|
|
1060
1060
|
|
|
1061
1061
|
class OnDemandThroughputOverride(TypedDict, total=False):
|
|
1062
|
-
MaxReadRequestUnits:
|
|
1062
|
+
MaxReadRequestUnits: LongObject | None
|
|
1063
1063
|
|
|
1064
1064
|
|
|
1065
1065
|
class ProvisionedThroughputOverride(TypedDict, total=False):
|
|
1066
|
-
ReadCapacityUnits:
|
|
1066
|
+
ReadCapacityUnits: PositiveLongObject | None
|
|
1067
1067
|
|
|
1068
1068
|
|
|
1069
1069
|
class ReplicaGlobalSecondaryIndexDescription(TypedDict, total=False):
|
|
1070
|
-
IndexName:
|
|
1071
|
-
ProvisionedThroughputOverride:
|
|
1072
|
-
OnDemandThroughputOverride:
|
|
1073
|
-
WarmThroughput:
|
|
1070
|
+
IndexName: IndexName | None
|
|
1071
|
+
ProvisionedThroughputOverride: ProvisionedThroughputOverride | None
|
|
1072
|
+
OnDemandThroughputOverride: OnDemandThroughputOverride | None
|
|
1073
|
+
WarmThroughput: GlobalSecondaryIndexWarmThroughputDescription | None
|
|
1074
1074
|
|
|
1075
1075
|
|
|
1076
|
-
ReplicaGlobalSecondaryIndexDescriptionList =
|
|
1076
|
+
ReplicaGlobalSecondaryIndexDescriptionList = list[ReplicaGlobalSecondaryIndexDescription]
|
|
1077
1077
|
|
|
1078
1078
|
|
|
1079
1079
|
class TableWarmThroughputDescription(TypedDict, total=False):
|
|
1080
|
-
ReadUnitsPerSecond:
|
|
1081
|
-
WriteUnitsPerSecond:
|
|
1082
|
-
Status:
|
|
1080
|
+
ReadUnitsPerSecond: PositiveLongObject | None
|
|
1081
|
+
WriteUnitsPerSecond: PositiveLongObject | None
|
|
1082
|
+
Status: TableStatus | None
|
|
1083
1083
|
|
|
1084
1084
|
|
|
1085
1085
|
class ReplicaDescription(TypedDict, total=False):
|
|
1086
|
-
RegionName:
|
|
1087
|
-
ReplicaStatus:
|
|
1088
|
-
ReplicaStatusDescription:
|
|
1089
|
-
ReplicaStatusPercentProgress:
|
|
1090
|
-
KMSMasterKeyId:
|
|
1091
|
-
ProvisionedThroughputOverride:
|
|
1092
|
-
OnDemandThroughputOverride:
|
|
1093
|
-
WarmThroughput:
|
|
1094
|
-
GlobalSecondaryIndexes:
|
|
1095
|
-
ReplicaInaccessibleDateTime:
|
|
1096
|
-
ReplicaTableClassSummary:
|
|
1086
|
+
RegionName: RegionName | None
|
|
1087
|
+
ReplicaStatus: ReplicaStatus | None
|
|
1088
|
+
ReplicaStatusDescription: ReplicaStatusDescription | None
|
|
1089
|
+
ReplicaStatusPercentProgress: ReplicaStatusPercentProgress | None
|
|
1090
|
+
KMSMasterKeyId: KMSMasterKeyId | None
|
|
1091
|
+
ProvisionedThroughputOverride: ProvisionedThroughputOverride | None
|
|
1092
|
+
OnDemandThroughputOverride: OnDemandThroughputOverride | None
|
|
1093
|
+
WarmThroughput: TableWarmThroughputDescription | None
|
|
1094
|
+
GlobalSecondaryIndexes: ReplicaGlobalSecondaryIndexDescriptionList | None
|
|
1095
|
+
ReplicaInaccessibleDateTime: Date | None
|
|
1096
|
+
ReplicaTableClassSummary: TableClassSummary | None
|
|
1097
1097
|
|
|
1098
1098
|
|
|
1099
|
-
ReplicaDescriptionList =
|
|
1099
|
+
ReplicaDescriptionList = list[ReplicaDescription]
|
|
1100
1100
|
|
|
1101
1101
|
|
|
1102
1102
|
class GlobalTableDescription(TypedDict, total=False):
|
|
1103
|
-
ReplicationGroup:
|
|
1104
|
-
GlobalTableArn:
|
|
1105
|
-
CreationDateTime:
|
|
1106
|
-
GlobalTableStatus:
|
|
1107
|
-
GlobalTableName:
|
|
1103
|
+
ReplicationGroup: ReplicaDescriptionList | None
|
|
1104
|
+
GlobalTableArn: GlobalTableArnString | None
|
|
1105
|
+
CreationDateTime: Date | None
|
|
1106
|
+
GlobalTableStatus: GlobalTableStatus | None
|
|
1107
|
+
GlobalTableName: TableName | None
|
|
1108
1108
|
|
|
1109
1109
|
|
|
1110
1110
|
class CreateGlobalTableOutput(TypedDict, total=False):
|
|
1111
|
-
GlobalTableDescription:
|
|
1111
|
+
GlobalTableDescription: GlobalTableDescription | None
|
|
1112
1112
|
|
|
1113
1113
|
|
|
1114
1114
|
class CreateGlobalTableWitnessGroupMemberAction(TypedDict, total=False):
|
|
@@ -1121,20 +1121,20 @@ class CreateReplicaAction(TypedDict, total=False):
|
|
|
1121
1121
|
|
|
1122
1122
|
class ReplicaGlobalSecondaryIndex(TypedDict, total=False):
|
|
1123
1123
|
IndexName: IndexName
|
|
1124
|
-
ProvisionedThroughputOverride:
|
|
1125
|
-
OnDemandThroughputOverride:
|
|
1124
|
+
ProvisionedThroughputOverride: ProvisionedThroughputOverride | None
|
|
1125
|
+
OnDemandThroughputOverride: OnDemandThroughputOverride | None
|
|
1126
1126
|
|
|
1127
1127
|
|
|
1128
|
-
ReplicaGlobalSecondaryIndexList =
|
|
1128
|
+
ReplicaGlobalSecondaryIndexList = list[ReplicaGlobalSecondaryIndex]
|
|
1129
1129
|
|
|
1130
1130
|
|
|
1131
1131
|
class CreateReplicationGroupMemberAction(TypedDict, total=False):
|
|
1132
1132
|
RegionName: RegionName
|
|
1133
|
-
KMSMasterKeyId:
|
|
1134
|
-
ProvisionedThroughputOverride:
|
|
1135
|
-
OnDemandThroughputOverride:
|
|
1136
|
-
GlobalSecondaryIndexes:
|
|
1137
|
-
TableClassOverride:
|
|
1133
|
+
KMSMasterKeyId: KMSMasterKeyId | None
|
|
1134
|
+
ProvisionedThroughputOverride: ProvisionedThroughputOverride | None
|
|
1135
|
+
OnDemandThroughputOverride: OnDemandThroughputOverride | None
|
|
1136
|
+
GlobalSecondaryIndexes: ReplicaGlobalSecondaryIndexList | None
|
|
1137
|
+
TableClassOverride: TableClass | None
|
|
1138
1138
|
|
|
1139
1139
|
|
|
1140
1140
|
class Tag(TypedDict, total=False):
|
|
@@ -1142,25 +1142,25 @@ class Tag(TypedDict, total=False):
|
|
|
1142
1142
|
Value: TagValueString
|
|
1143
1143
|
|
|
1144
1144
|
|
|
1145
|
-
TagList =
|
|
1145
|
+
TagList = list[Tag]
|
|
1146
1146
|
|
|
1147
1147
|
|
|
1148
1148
|
class SSESpecification(TypedDict, total=False):
|
|
1149
|
-
Enabled:
|
|
1150
|
-
SSEType:
|
|
1151
|
-
KMSMasterKeyId:
|
|
1149
|
+
Enabled: SSEEnabled | None
|
|
1150
|
+
SSEType: SSEType | None
|
|
1151
|
+
KMSMasterKeyId: KMSMasterKeyId | None
|
|
1152
1152
|
|
|
1153
1153
|
|
|
1154
1154
|
class GlobalSecondaryIndex(TypedDict, total=False):
|
|
1155
1155
|
IndexName: IndexName
|
|
1156
1156
|
KeySchema: KeySchema
|
|
1157
1157
|
Projection: Projection
|
|
1158
|
-
ProvisionedThroughput:
|
|
1159
|
-
OnDemandThroughput:
|
|
1160
|
-
WarmThroughput:
|
|
1158
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
1159
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1160
|
+
WarmThroughput: WarmThroughput | None
|
|
1161
1161
|
|
|
1162
1162
|
|
|
1163
|
-
GlobalSecondaryIndexList =
|
|
1163
|
+
GlobalSecondaryIndexList = list[GlobalSecondaryIndex]
|
|
1164
1164
|
|
|
1165
1165
|
|
|
1166
1166
|
class LocalSecondaryIndex(TypedDict, total=False):
|
|
@@ -1169,129 +1169,129 @@ class LocalSecondaryIndex(TypedDict, total=False):
|
|
|
1169
1169
|
Projection: Projection
|
|
1170
1170
|
|
|
1171
1171
|
|
|
1172
|
-
LocalSecondaryIndexList =
|
|
1172
|
+
LocalSecondaryIndexList = list[LocalSecondaryIndex]
|
|
1173
1173
|
|
|
1174
1174
|
|
|
1175
1175
|
class CreateTableInput(ServiceRequest):
|
|
1176
1176
|
AttributeDefinitions: AttributeDefinitions
|
|
1177
1177
|
TableName: TableArn
|
|
1178
1178
|
KeySchema: KeySchema
|
|
1179
|
-
LocalSecondaryIndexes:
|
|
1180
|
-
GlobalSecondaryIndexes:
|
|
1181
|
-
BillingMode:
|
|
1182
|
-
ProvisionedThroughput:
|
|
1183
|
-
StreamSpecification:
|
|
1184
|
-
SSESpecification:
|
|
1185
|
-
Tags:
|
|
1186
|
-
TableClass:
|
|
1187
|
-
DeletionProtectionEnabled:
|
|
1188
|
-
WarmThroughput:
|
|
1189
|
-
ResourcePolicy:
|
|
1190
|
-
OnDemandThroughput:
|
|
1179
|
+
LocalSecondaryIndexes: LocalSecondaryIndexList | None
|
|
1180
|
+
GlobalSecondaryIndexes: GlobalSecondaryIndexList | None
|
|
1181
|
+
BillingMode: BillingMode | None
|
|
1182
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
1183
|
+
StreamSpecification: StreamSpecification | None
|
|
1184
|
+
SSESpecification: SSESpecification | None
|
|
1185
|
+
Tags: TagList | None
|
|
1186
|
+
TableClass: TableClass | None
|
|
1187
|
+
DeletionProtectionEnabled: DeletionProtectionEnabled | None
|
|
1188
|
+
WarmThroughput: WarmThroughput | None
|
|
1189
|
+
ResourcePolicy: ResourcePolicy | None
|
|
1190
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1191
1191
|
|
|
1192
1192
|
|
|
1193
1193
|
class RestoreSummary(TypedDict, total=False):
|
|
1194
|
-
SourceBackupArn:
|
|
1195
|
-
SourceTableArn:
|
|
1194
|
+
SourceBackupArn: BackupArn | None
|
|
1195
|
+
SourceTableArn: TableArn | None
|
|
1196
1196
|
RestoreDateTime: Date
|
|
1197
1197
|
RestoreInProgress: RestoreInProgress
|
|
1198
1198
|
|
|
1199
1199
|
|
|
1200
1200
|
class GlobalTableWitnessDescription(TypedDict, total=False):
|
|
1201
|
-
RegionName:
|
|
1202
|
-
WitnessStatus:
|
|
1201
|
+
RegionName: RegionName | None
|
|
1202
|
+
WitnessStatus: WitnessStatus | None
|
|
1203
1203
|
|
|
1204
1204
|
|
|
1205
|
-
GlobalTableWitnessDescriptionList =
|
|
1205
|
+
GlobalTableWitnessDescriptionList = list[GlobalTableWitnessDescription]
|
|
1206
1206
|
NonNegativeLongObject = int
|
|
1207
1207
|
|
|
1208
1208
|
|
|
1209
1209
|
class ProvisionedThroughputDescription(TypedDict, total=False):
|
|
1210
|
-
LastIncreaseDateTime:
|
|
1211
|
-
LastDecreaseDateTime:
|
|
1212
|
-
NumberOfDecreasesToday:
|
|
1213
|
-
ReadCapacityUnits:
|
|
1214
|
-
WriteCapacityUnits:
|
|
1210
|
+
LastIncreaseDateTime: Date | None
|
|
1211
|
+
LastDecreaseDateTime: Date | None
|
|
1212
|
+
NumberOfDecreasesToday: PositiveLongObject | None
|
|
1213
|
+
ReadCapacityUnits: NonNegativeLongObject | None
|
|
1214
|
+
WriteCapacityUnits: NonNegativeLongObject | None
|
|
1215
1215
|
|
|
1216
1216
|
|
|
1217
1217
|
class GlobalSecondaryIndexDescription(TypedDict, total=False):
|
|
1218
|
-
IndexName:
|
|
1219
|
-
KeySchema:
|
|
1220
|
-
Projection:
|
|
1221
|
-
IndexStatus:
|
|
1222
|
-
Backfilling:
|
|
1223
|
-
ProvisionedThroughput:
|
|
1224
|
-
IndexSizeBytes:
|
|
1225
|
-
ItemCount:
|
|
1226
|
-
IndexArn:
|
|
1227
|
-
OnDemandThroughput:
|
|
1228
|
-
WarmThroughput:
|
|
1218
|
+
IndexName: IndexName | None
|
|
1219
|
+
KeySchema: KeySchema | None
|
|
1220
|
+
Projection: Projection | None
|
|
1221
|
+
IndexStatus: IndexStatus | None
|
|
1222
|
+
Backfilling: Backfilling | None
|
|
1223
|
+
ProvisionedThroughput: ProvisionedThroughputDescription | None
|
|
1224
|
+
IndexSizeBytes: LongObject | None
|
|
1225
|
+
ItemCount: LongObject | None
|
|
1226
|
+
IndexArn: String | None
|
|
1227
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1228
|
+
WarmThroughput: GlobalSecondaryIndexWarmThroughputDescription | None
|
|
1229
1229
|
|
|
1230
1230
|
|
|
1231
|
-
GlobalSecondaryIndexDescriptionList =
|
|
1231
|
+
GlobalSecondaryIndexDescriptionList = list[GlobalSecondaryIndexDescription]
|
|
1232
1232
|
|
|
1233
1233
|
|
|
1234
1234
|
class LocalSecondaryIndexDescription(TypedDict, total=False):
|
|
1235
|
-
IndexName:
|
|
1236
|
-
KeySchema:
|
|
1237
|
-
Projection:
|
|
1238
|
-
IndexSizeBytes:
|
|
1239
|
-
ItemCount:
|
|
1240
|
-
IndexArn:
|
|
1235
|
+
IndexName: IndexName | None
|
|
1236
|
+
KeySchema: KeySchema | None
|
|
1237
|
+
Projection: Projection | None
|
|
1238
|
+
IndexSizeBytes: LongObject | None
|
|
1239
|
+
ItemCount: LongObject | None
|
|
1240
|
+
IndexArn: String | None
|
|
1241
1241
|
|
|
1242
1242
|
|
|
1243
|
-
LocalSecondaryIndexDescriptionList =
|
|
1243
|
+
LocalSecondaryIndexDescriptionList = list[LocalSecondaryIndexDescription]
|
|
1244
1244
|
|
|
1245
1245
|
|
|
1246
1246
|
class TableDescription(TypedDict, total=False):
|
|
1247
|
-
AttributeDefinitions:
|
|
1248
|
-
TableName:
|
|
1249
|
-
KeySchema:
|
|
1250
|
-
TableStatus:
|
|
1251
|
-
CreationDateTime:
|
|
1252
|
-
ProvisionedThroughput:
|
|
1253
|
-
TableSizeBytes:
|
|
1254
|
-
ItemCount:
|
|
1255
|
-
TableArn:
|
|
1256
|
-
TableId:
|
|
1257
|
-
BillingModeSummary:
|
|
1258
|
-
LocalSecondaryIndexes:
|
|
1259
|
-
GlobalSecondaryIndexes:
|
|
1260
|
-
StreamSpecification:
|
|
1261
|
-
LatestStreamLabel:
|
|
1262
|
-
LatestStreamArn:
|
|
1263
|
-
GlobalTableVersion:
|
|
1264
|
-
Replicas:
|
|
1265
|
-
GlobalTableWitnesses:
|
|
1266
|
-
RestoreSummary:
|
|
1267
|
-
SSEDescription:
|
|
1268
|
-
ArchivalSummary:
|
|
1269
|
-
TableClassSummary:
|
|
1270
|
-
DeletionProtectionEnabled:
|
|
1271
|
-
OnDemandThroughput:
|
|
1272
|
-
WarmThroughput:
|
|
1273
|
-
MultiRegionConsistency:
|
|
1247
|
+
AttributeDefinitions: AttributeDefinitions | None
|
|
1248
|
+
TableName: TableName | None
|
|
1249
|
+
KeySchema: KeySchema | None
|
|
1250
|
+
TableStatus: TableStatus | None
|
|
1251
|
+
CreationDateTime: Date | None
|
|
1252
|
+
ProvisionedThroughput: ProvisionedThroughputDescription | None
|
|
1253
|
+
TableSizeBytes: LongObject | None
|
|
1254
|
+
ItemCount: LongObject | None
|
|
1255
|
+
TableArn: String | None
|
|
1256
|
+
TableId: TableId | None
|
|
1257
|
+
BillingModeSummary: BillingModeSummary | None
|
|
1258
|
+
LocalSecondaryIndexes: LocalSecondaryIndexDescriptionList | None
|
|
1259
|
+
GlobalSecondaryIndexes: GlobalSecondaryIndexDescriptionList | None
|
|
1260
|
+
StreamSpecification: StreamSpecification | None
|
|
1261
|
+
LatestStreamLabel: String | None
|
|
1262
|
+
LatestStreamArn: StreamArn | None
|
|
1263
|
+
GlobalTableVersion: String | None
|
|
1264
|
+
Replicas: ReplicaDescriptionList | None
|
|
1265
|
+
GlobalTableWitnesses: GlobalTableWitnessDescriptionList | None
|
|
1266
|
+
RestoreSummary: RestoreSummary | None
|
|
1267
|
+
SSEDescription: SSEDescription | None
|
|
1268
|
+
ArchivalSummary: ArchivalSummary | None
|
|
1269
|
+
TableClassSummary: TableClassSummary | None
|
|
1270
|
+
DeletionProtectionEnabled: DeletionProtectionEnabled | None
|
|
1271
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1272
|
+
WarmThroughput: TableWarmThroughputDescription | None
|
|
1273
|
+
MultiRegionConsistency: MultiRegionConsistency | None
|
|
1274
1274
|
|
|
1275
1275
|
|
|
1276
1276
|
class CreateTableOutput(TypedDict, total=False):
|
|
1277
|
-
TableDescription:
|
|
1277
|
+
TableDescription: TableDescription | None
|
|
1278
1278
|
|
|
1279
1279
|
|
|
1280
|
-
CsvHeaderList =
|
|
1280
|
+
CsvHeaderList = list[CsvHeader]
|
|
1281
1281
|
|
|
1282
1282
|
|
|
1283
1283
|
class CsvOptions(TypedDict, total=False):
|
|
1284
|
-
Delimiter:
|
|
1285
|
-
HeaderList:
|
|
1284
|
+
Delimiter: CsvDelimiter | None
|
|
1285
|
+
HeaderList: CsvHeaderList | None
|
|
1286
1286
|
|
|
1287
1287
|
|
|
1288
1288
|
class Delete(TypedDict, total=False):
|
|
1289
1289
|
Key: Key
|
|
1290
1290
|
TableName: TableArn
|
|
1291
|
-
ConditionExpression:
|
|
1292
|
-
ExpressionAttributeNames:
|
|
1293
|
-
ExpressionAttributeValues:
|
|
1294
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1291
|
+
ConditionExpression: ConditionExpression | None
|
|
1292
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1293
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
1294
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1295
1295
|
|
|
1296
1296
|
|
|
1297
1297
|
class DeleteBackupInput(ServiceRequest):
|
|
@@ -1299,7 +1299,7 @@ class DeleteBackupInput(ServiceRequest):
|
|
|
1299
1299
|
|
|
1300
1300
|
|
|
1301
1301
|
class DeleteBackupOutput(TypedDict, total=False):
|
|
1302
|
-
BackupDescription:
|
|
1302
|
+
BackupDescription: BackupDescription | None
|
|
1303
1303
|
|
|
1304
1304
|
|
|
1305
1305
|
class DeleteGlobalSecondaryIndexAction(TypedDict, total=False):
|
|
@@ -1311,33 +1311,33 @@ class DeleteGlobalTableWitnessGroupMemberAction(TypedDict, total=False):
|
|
|
1311
1311
|
|
|
1312
1312
|
|
|
1313
1313
|
class ExpectedAttributeValue(TypedDict, total=False):
|
|
1314
|
-
Value:
|
|
1315
|
-
Exists:
|
|
1316
|
-
ComparisonOperator:
|
|
1317
|
-
AttributeValueList:
|
|
1314
|
+
Value: AttributeValue | None
|
|
1315
|
+
Exists: BooleanObject | None
|
|
1316
|
+
ComparisonOperator: ComparisonOperator | None
|
|
1317
|
+
AttributeValueList: AttributeValueList | None
|
|
1318
1318
|
|
|
1319
1319
|
|
|
1320
|
-
ExpectedAttributeMap =
|
|
1320
|
+
ExpectedAttributeMap = dict[AttributeName, ExpectedAttributeValue]
|
|
1321
1321
|
|
|
1322
1322
|
|
|
1323
1323
|
class DeleteItemInput(ServiceRequest):
|
|
1324
1324
|
TableName: TableArn
|
|
1325
1325
|
Key: Key
|
|
1326
|
-
Expected:
|
|
1327
|
-
ConditionalOperator:
|
|
1328
|
-
ReturnValues:
|
|
1329
|
-
ReturnConsumedCapacity:
|
|
1330
|
-
ReturnItemCollectionMetrics:
|
|
1331
|
-
ConditionExpression:
|
|
1332
|
-
ExpressionAttributeNames:
|
|
1333
|
-
ExpressionAttributeValues:
|
|
1334
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1326
|
+
Expected: ExpectedAttributeMap | None
|
|
1327
|
+
ConditionalOperator: ConditionalOperator | None
|
|
1328
|
+
ReturnValues: ReturnValue | None
|
|
1329
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
1330
|
+
ReturnItemCollectionMetrics: ReturnItemCollectionMetrics | None
|
|
1331
|
+
ConditionExpression: ConditionExpression | None
|
|
1332
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1333
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
1334
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1335
1335
|
|
|
1336
1336
|
|
|
1337
1337
|
class DeleteItemOutput(TypedDict, total=False):
|
|
1338
|
-
Attributes:
|
|
1339
|
-
ConsumedCapacity:
|
|
1340
|
-
ItemCollectionMetrics:
|
|
1338
|
+
Attributes: AttributeMap | None
|
|
1339
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
1340
|
+
ItemCollectionMetrics: ItemCollectionMetrics | None
|
|
1341
1341
|
|
|
1342
1342
|
|
|
1343
1343
|
class DeleteReplicaAction(TypedDict, total=False):
|
|
@@ -1350,11 +1350,11 @@ class DeleteReplicationGroupMemberAction(TypedDict, total=False):
|
|
|
1350
1350
|
|
|
1351
1351
|
class DeleteResourcePolicyInput(ServiceRequest):
|
|
1352
1352
|
ResourceArn: ResourceArnString
|
|
1353
|
-
ExpectedRevisionId:
|
|
1353
|
+
ExpectedRevisionId: PolicyRevisionId | None
|
|
1354
1354
|
|
|
1355
1355
|
|
|
1356
1356
|
class DeleteResourcePolicyOutput(TypedDict, total=False):
|
|
1357
|
-
RevisionId:
|
|
1357
|
+
RevisionId: PolicyRevisionId | None
|
|
1358
1358
|
|
|
1359
1359
|
|
|
1360
1360
|
class DeleteTableInput(ServiceRequest):
|
|
@@ -1362,7 +1362,7 @@ class DeleteTableInput(ServiceRequest):
|
|
|
1362
1362
|
|
|
1363
1363
|
|
|
1364
1364
|
class DeleteTableOutput(TypedDict, total=False):
|
|
1365
|
-
TableDescription:
|
|
1365
|
+
TableDescription: TableDescription | None
|
|
1366
1366
|
|
|
1367
1367
|
|
|
1368
1368
|
class DescribeBackupInput(ServiceRequest):
|
|
@@ -1370,7 +1370,7 @@ class DescribeBackupInput(ServiceRequest):
|
|
|
1370
1370
|
|
|
1371
1371
|
|
|
1372
1372
|
class DescribeBackupOutput(TypedDict, total=False):
|
|
1373
|
-
BackupDescription:
|
|
1373
|
+
BackupDescription: BackupDescription | None
|
|
1374
1374
|
|
|
1375
1375
|
|
|
1376
1376
|
class DescribeContinuousBackupsInput(ServiceRequest):
|
|
@@ -1378,30 +1378,30 @@ class DescribeContinuousBackupsInput(ServiceRequest):
|
|
|
1378
1378
|
|
|
1379
1379
|
|
|
1380
1380
|
class DescribeContinuousBackupsOutput(TypedDict, total=False):
|
|
1381
|
-
ContinuousBackupsDescription:
|
|
1381
|
+
ContinuousBackupsDescription: ContinuousBackupsDescription | None
|
|
1382
1382
|
|
|
1383
1383
|
|
|
1384
1384
|
class DescribeContributorInsightsInput(ServiceRequest):
|
|
1385
1385
|
TableName: TableArn
|
|
1386
|
-
IndexName:
|
|
1386
|
+
IndexName: IndexName | None
|
|
1387
1387
|
|
|
1388
1388
|
|
|
1389
1389
|
class FailureException(TypedDict, total=False):
|
|
1390
|
-
ExceptionName:
|
|
1391
|
-
ExceptionDescription:
|
|
1390
|
+
ExceptionName: ExceptionName | None
|
|
1391
|
+
ExceptionDescription: ExceptionDescription | None
|
|
1392
1392
|
|
|
1393
1393
|
|
|
1394
1394
|
LastUpdateDateTime = datetime
|
|
1395
1395
|
|
|
1396
1396
|
|
|
1397
1397
|
class DescribeContributorInsightsOutput(TypedDict, total=False):
|
|
1398
|
-
TableName:
|
|
1399
|
-
IndexName:
|
|
1400
|
-
ContributorInsightsRuleList:
|
|
1401
|
-
ContributorInsightsStatus:
|
|
1402
|
-
LastUpdateDateTime:
|
|
1403
|
-
FailureException:
|
|
1404
|
-
ContributorInsightsMode:
|
|
1398
|
+
TableName: TableName | None
|
|
1399
|
+
IndexName: IndexName | None
|
|
1400
|
+
ContributorInsightsRuleList: ContributorInsightsRuleList | None
|
|
1401
|
+
ContributorInsightsStatus: ContributorInsightsStatus | None
|
|
1402
|
+
LastUpdateDateTime: LastUpdateDateTime | None
|
|
1403
|
+
FailureException: FailureException | None
|
|
1404
|
+
ContributorInsightsMode: ContributorInsightsMode | None
|
|
1405
1405
|
|
|
1406
1406
|
|
|
1407
1407
|
class DescribeEndpointsRequest(ServiceRequest):
|
|
@@ -1416,7 +1416,7 @@ class Endpoint(TypedDict, total=False):
|
|
|
1416
1416
|
CachePeriodInMinutes: Long
|
|
1417
1417
|
|
|
1418
1418
|
|
|
1419
|
-
Endpoints =
|
|
1419
|
+
Endpoints = list[Endpoint]
|
|
1420
1420
|
|
|
1421
1421
|
|
|
1422
1422
|
class DescribeEndpointsResponse(TypedDict, total=False):
|
|
@@ -1432,9 +1432,9 @@ ExportFromTime = datetime
|
|
|
1432
1432
|
|
|
1433
1433
|
|
|
1434
1434
|
class IncrementalExportSpecification(TypedDict, total=False):
|
|
1435
|
-
ExportFromTime:
|
|
1436
|
-
ExportToTime:
|
|
1437
|
-
ExportViewType:
|
|
1435
|
+
ExportFromTime: ExportFromTime | None
|
|
1436
|
+
ExportToTime: ExportToTime | None
|
|
1437
|
+
ExportViewType: ExportViewType | None
|
|
1438
1438
|
|
|
1439
1439
|
|
|
1440
1440
|
ExportTime = datetime
|
|
@@ -1443,31 +1443,31 @@ ExportStartTime = datetime
|
|
|
1443
1443
|
|
|
1444
1444
|
|
|
1445
1445
|
class ExportDescription(TypedDict, total=False):
|
|
1446
|
-
ExportArn:
|
|
1447
|
-
ExportStatus:
|
|
1448
|
-
StartTime:
|
|
1449
|
-
EndTime:
|
|
1450
|
-
ExportManifest:
|
|
1451
|
-
TableArn:
|
|
1452
|
-
TableId:
|
|
1453
|
-
ExportTime:
|
|
1454
|
-
ClientToken:
|
|
1455
|
-
S3Bucket:
|
|
1456
|
-
S3BucketOwner:
|
|
1457
|
-
S3Prefix:
|
|
1458
|
-
S3SseAlgorithm:
|
|
1459
|
-
S3SseKmsKeyId:
|
|
1460
|
-
FailureCode:
|
|
1461
|
-
FailureMessage:
|
|
1462
|
-
ExportFormat:
|
|
1463
|
-
BilledSizeBytes:
|
|
1464
|
-
ItemCount:
|
|
1465
|
-
ExportType:
|
|
1466
|
-
IncrementalExportSpecification:
|
|
1446
|
+
ExportArn: ExportArn | None
|
|
1447
|
+
ExportStatus: ExportStatus | None
|
|
1448
|
+
StartTime: ExportStartTime | None
|
|
1449
|
+
EndTime: ExportEndTime | None
|
|
1450
|
+
ExportManifest: ExportManifest | None
|
|
1451
|
+
TableArn: TableArn | None
|
|
1452
|
+
TableId: TableId | None
|
|
1453
|
+
ExportTime: ExportTime | None
|
|
1454
|
+
ClientToken: ClientToken | None
|
|
1455
|
+
S3Bucket: S3Bucket | None
|
|
1456
|
+
S3BucketOwner: S3BucketOwner | None
|
|
1457
|
+
S3Prefix: S3Prefix | None
|
|
1458
|
+
S3SseAlgorithm: S3SseAlgorithm | None
|
|
1459
|
+
S3SseKmsKeyId: S3SseKmsKeyId | None
|
|
1460
|
+
FailureCode: FailureCode | None
|
|
1461
|
+
FailureMessage: FailureMessage | None
|
|
1462
|
+
ExportFormat: ExportFormat | None
|
|
1463
|
+
BilledSizeBytes: BilledSizeBytes | None
|
|
1464
|
+
ItemCount: ItemCount | None
|
|
1465
|
+
ExportType: ExportType | None
|
|
1466
|
+
IncrementalExportSpecification: IncrementalExportSpecification | None
|
|
1467
1467
|
|
|
1468
1468
|
|
|
1469
1469
|
class DescribeExportOutput(TypedDict, total=False):
|
|
1470
|
-
ExportDescription:
|
|
1470
|
+
ExportDescription: ExportDescription | None
|
|
1471
1471
|
|
|
1472
1472
|
|
|
1473
1473
|
class DescribeGlobalTableInput(ServiceRequest):
|
|
@@ -1475,7 +1475,7 @@ class DescribeGlobalTableInput(ServiceRequest):
|
|
|
1475
1475
|
|
|
1476
1476
|
|
|
1477
1477
|
class DescribeGlobalTableOutput(TypedDict, total=False):
|
|
1478
|
-
GlobalTableDescription:
|
|
1478
|
+
GlobalTableDescription: GlobalTableDescription | None
|
|
1479
1479
|
|
|
1480
1480
|
|
|
1481
1481
|
class DescribeGlobalTableSettingsInput(ServiceRequest):
|
|
@@ -1484,38 +1484,36 @@ class DescribeGlobalTableSettingsInput(ServiceRequest):
|
|
|
1484
1484
|
|
|
1485
1485
|
class ReplicaGlobalSecondaryIndexSettingsDescription(TypedDict, total=False):
|
|
1486
1486
|
IndexName: IndexName
|
|
1487
|
-
IndexStatus:
|
|
1488
|
-
ProvisionedReadCapacityUnits:
|
|
1489
|
-
ProvisionedReadCapacityAutoScalingSettings:
|
|
1490
|
-
ProvisionedWriteCapacityUnits:
|
|
1491
|
-
ProvisionedWriteCapacityAutoScalingSettings:
|
|
1487
|
+
IndexStatus: IndexStatus | None
|
|
1488
|
+
ProvisionedReadCapacityUnits: PositiveLongObject | None
|
|
1489
|
+
ProvisionedReadCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1490
|
+
ProvisionedWriteCapacityUnits: PositiveLongObject | None
|
|
1491
|
+
ProvisionedWriteCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1492
1492
|
|
|
1493
1493
|
|
|
1494
|
-
ReplicaGlobalSecondaryIndexSettingsDescriptionList =
|
|
1494
|
+
ReplicaGlobalSecondaryIndexSettingsDescriptionList = list[
|
|
1495
1495
|
ReplicaGlobalSecondaryIndexSettingsDescription
|
|
1496
1496
|
]
|
|
1497
1497
|
|
|
1498
1498
|
|
|
1499
1499
|
class ReplicaSettingsDescription(TypedDict, total=False):
|
|
1500
1500
|
RegionName: RegionName
|
|
1501
|
-
ReplicaStatus:
|
|
1502
|
-
ReplicaBillingModeSummary:
|
|
1503
|
-
ReplicaProvisionedReadCapacityUnits:
|
|
1504
|
-
ReplicaProvisionedReadCapacityAutoScalingSettings:
|
|
1505
|
-
ReplicaProvisionedWriteCapacityUnits:
|
|
1506
|
-
ReplicaProvisionedWriteCapacityAutoScalingSettings:
|
|
1507
|
-
ReplicaGlobalSecondaryIndexSettings:
|
|
1508
|
-
|
|
1509
|
-
]
|
|
1510
|
-
ReplicaTableClassSummary: Optional[TableClassSummary]
|
|
1501
|
+
ReplicaStatus: ReplicaStatus | None
|
|
1502
|
+
ReplicaBillingModeSummary: BillingModeSummary | None
|
|
1503
|
+
ReplicaProvisionedReadCapacityUnits: NonNegativeLongObject | None
|
|
1504
|
+
ReplicaProvisionedReadCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1505
|
+
ReplicaProvisionedWriteCapacityUnits: NonNegativeLongObject | None
|
|
1506
|
+
ReplicaProvisionedWriteCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1507
|
+
ReplicaGlobalSecondaryIndexSettings: ReplicaGlobalSecondaryIndexSettingsDescriptionList | None
|
|
1508
|
+
ReplicaTableClassSummary: TableClassSummary | None
|
|
1511
1509
|
|
|
1512
1510
|
|
|
1513
|
-
ReplicaSettingsDescriptionList =
|
|
1511
|
+
ReplicaSettingsDescriptionList = list[ReplicaSettingsDescription]
|
|
1514
1512
|
|
|
1515
1513
|
|
|
1516
1514
|
class DescribeGlobalTableSettingsOutput(TypedDict, total=False):
|
|
1517
|
-
GlobalTableName:
|
|
1518
|
-
ReplicaSettings:
|
|
1515
|
+
GlobalTableName: TableName | None
|
|
1516
|
+
ReplicaSettings: ReplicaSettingsDescriptionList | None
|
|
1519
1517
|
|
|
1520
1518
|
|
|
1521
1519
|
class DescribeImportInput(ServiceRequest):
|
|
@@ -1532,46 +1530,46 @@ class TableCreationParameters(TypedDict, total=False):
|
|
|
1532
1530
|
TableName: TableName
|
|
1533
1531
|
AttributeDefinitions: AttributeDefinitions
|
|
1534
1532
|
KeySchema: KeySchema
|
|
1535
|
-
BillingMode:
|
|
1536
|
-
ProvisionedThroughput:
|
|
1537
|
-
OnDemandThroughput:
|
|
1538
|
-
SSESpecification:
|
|
1539
|
-
GlobalSecondaryIndexes:
|
|
1533
|
+
BillingMode: BillingMode | None
|
|
1534
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
1535
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1536
|
+
SSESpecification: SSESpecification | None
|
|
1537
|
+
GlobalSecondaryIndexes: GlobalSecondaryIndexList | None
|
|
1540
1538
|
|
|
1541
1539
|
|
|
1542
1540
|
class InputFormatOptions(TypedDict, total=False):
|
|
1543
|
-
Csv:
|
|
1541
|
+
Csv: CsvOptions | None
|
|
1544
1542
|
|
|
1545
1543
|
|
|
1546
1544
|
ErrorCount = int
|
|
1547
1545
|
|
|
1548
1546
|
|
|
1549
1547
|
class S3BucketSource(TypedDict, total=False):
|
|
1550
|
-
S3BucketOwner:
|
|
1548
|
+
S3BucketOwner: S3BucketOwner | None
|
|
1551
1549
|
S3Bucket: S3Bucket
|
|
1552
|
-
S3KeyPrefix:
|
|
1550
|
+
S3KeyPrefix: S3Prefix | None
|
|
1553
1551
|
|
|
1554
1552
|
|
|
1555
1553
|
class ImportTableDescription(TypedDict, total=False):
|
|
1556
|
-
ImportArn:
|
|
1557
|
-
ImportStatus:
|
|
1558
|
-
TableArn:
|
|
1559
|
-
TableId:
|
|
1560
|
-
ClientToken:
|
|
1561
|
-
S3BucketSource:
|
|
1562
|
-
ErrorCount:
|
|
1563
|
-
CloudWatchLogGroupArn:
|
|
1564
|
-
InputFormat:
|
|
1565
|
-
InputFormatOptions:
|
|
1566
|
-
InputCompressionType:
|
|
1567
|
-
TableCreationParameters:
|
|
1568
|
-
StartTime:
|
|
1569
|
-
EndTime:
|
|
1570
|
-
ProcessedSizeBytes:
|
|
1571
|
-
ProcessedItemCount:
|
|
1572
|
-
ImportedItemCount:
|
|
1573
|
-
FailureCode:
|
|
1574
|
-
FailureMessage:
|
|
1554
|
+
ImportArn: ImportArn | None
|
|
1555
|
+
ImportStatus: ImportStatus | None
|
|
1556
|
+
TableArn: TableArn | None
|
|
1557
|
+
TableId: TableId | None
|
|
1558
|
+
ClientToken: ClientToken | None
|
|
1559
|
+
S3BucketSource: S3BucketSource | None
|
|
1560
|
+
ErrorCount: ErrorCount | None
|
|
1561
|
+
CloudWatchLogGroupArn: CloudWatchLogGroupArn | None
|
|
1562
|
+
InputFormat: InputFormat | None
|
|
1563
|
+
InputFormatOptions: InputFormatOptions | None
|
|
1564
|
+
InputCompressionType: InputCompressionType | None
|
|
1565
|
+
TableCreationParameters: TableCreationParameters | None
|
|
1566
|
+
StartTime: ImportStartTime | None
|
|
1567
|
+
EndTime: ImportEndTime | None
|
|
1568
|
+
ProcessedSizeBytes: LongObject | None
|
|
1569
|
+
ProcessedItemCount: ProcessedItemCount | None
|
|
1570
|
+
ImportedItemCount: ImportedItemCount | None
|
|
1571
|
+
FailureCode: FailureCode | None
|
|
1572
|
+
FailureMessage: FailureMessage | None
|
|
1575
1573
|
|
|
1576
1574
|
|
|
1577
1575
|
class DescribeImportOutput(TypedDict, total=False):
|
|
@@ -1583,18 +1581,18 @@ class DescribeKinesisStreamingDestinationInput(ServiceRequest):
|
|
|
1583
1581
|
|
|
1584
1582
|
|
|
1585
1583
|
class KinesisDataStreamDestination(TypedDict, total=False):
|
|
1586
|
-
StreamArn:
|
|
1587
|
-
DestinationStatus:
|
|
1588
|
-
DestinationStatusDescription:
|
|
1589
|
-
ApproximateCreationDateTimePrecision:
|
|
1584
|
+
StreamArn: StreamArn | None
|
|
1585
|
+
DestinationStatus: DestinationStatus | None
|
|
1586
|
+
DestinationStatusDescription: String | None
|
|
1587
|
+
ApproximateCreationDateTimePrecision: ApproximateCreationDateTimePrecision | None
|
|
1590
1588
|
|
|
1591
1589
|
|
|
1592
|
-
KinesisDataStreamDestinations =
|
|
1590
|
+
KinesisDataStreamDestinations = list[KinesisDataStreamDestination]
|
|
1593
1591
|
|
|
1594
1592
|
|
|
1595
1593
|
class DescribeKinesisStreamingDestinationOutput(TypedDict, total=False):
|
|
1596
|
-
TableName:
|
|
1597
|
-
KinesisDataStreamDestinations:
|
|
1594
|
+
TableName: TableName | None
|
|
1595
|
+
KinesisDataStreamDestinations: KinesisDataStreamDestinations | None
|
|
1598
1596
|
|
|
1599
1597
|
|
|
1600
1598
|
class DescribeLimitsInput(ServiceRequest):
|
|
@@ -1602,10 +1600,10 @@ class DescribeLimitsInput(ServiceRequest):
|
|
|
1602
1600
|
|
|
1603
1601
|
|
|
1604
1602
|
class DescribeLimitsOutput(TypedDict, total=False):
|
|
1605
|
-
AccountMaxReadCapacityUnits:
|
|
1606
|
-
AccountMaxWriteCapacityUnits:
|
|
1607
|
-
TableMaxReadCapacityUnits:
|
|
1608
|
-
TableMaxWriteCapacityUnits:
|
|
1603
|
+
AccountMaxReadCapacityUnits: PositiveLongObject | None
|
|
1604
|
+
AccountMaxWriteCapacityUnits: PositiveLongObject | None
|
|
1605
|
+
TableMaxReadCapacityUnits: PositiveLongObject | None
|
|
1606
|
+
TableMaxWriteCapacityUnits: PositiveLongObject | None
|
|
1609
1607
|
|
|
1610
1608
|
|
|
1611
1609
|
class DescribeTableInput(ServiceRequest):
|
|
@@ -1613,7 +1611,7 @@ class DescribeTableInput(ServiceRequest):
|
|
|
1613
1611
|
|
|
1614
1612
|
|
|
1615
1613
|
class DescribeTableOutput(TypedDict, total=False):
|
|
1616
|
-
Table:
|
|
1614
|
+
Table: TableDescription | None
|
|
1617
1615
|
|
|
1618
1616
|
|
|
1619
1617
|
class DescribeTableReplicaAutoScalingInput(ServiceRequest):
|
|
@@ -1621,36 +1619,36 @@ class DescribeTableReplicaAutoScalingInput(ServiceRequest):
|
|
|
1621
1619
|
|
|
1622
1620
|
|
|
1623
1621
|
class ReplicaGlobalSecondaryIndexAutoScalingDescription(TypedDict, total=False):
|
|
1624
|
-
IndexName:
|
|
1625
|
-
IndexStatus:
|
|
1626
|
-
ProvisionedReadCapacityAutoScalingSettings:
|
|
1627
|
-
ProvisionedWriteCapacityAutoScalingSettings:
|
|
1622
|
+
IndexName: IndexName | None
|
|
1623
|
+
IndexStatus: IndexStatus | None
|
|
1624
|
+
ProvisionedReadCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1625
|
+
ProvisionedWriteCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1628
1626
|
|
|
1629
1627
|
|
|
1630
|
-
ReplicaGlobalSecondaryIndexAutoScalingDescriptionList =
|
|
1628
|
+
ReplicaGlobalSecondaryIndexAutoScalingDescriptionList = list[
|
|
1631
1629
|
ReplicaGlobalSecondaryIndexAutoScalingDescription
|
|
1632
1630
|
]
|
|
1633
1631
|
|
|
1634
1632
|
|
|
1635
1633
|
class ReplicaAutoScalingDescription(TypedDict, total=False):
|
|
1636
|
-
RegionName:
|
|
1637
|
-
GlobalSecondaryIndexes:
|
|
1638
|
-
ReplicaProvisionedReadCapacityAutoScalingSettings:
|
|
1639
|
-
ReplicaProvisionedWriteCapacityAutoScalingSettings:
|
|
1640
|
-
ReplicaStatus:
|
|
1634
|
+
RegionName: RegionName | None
|
|
1635
|
+
GlobalSecondaryIndexes: ReplicaGlobalSecondaryIndexAutoScalingDescriptionList | None
|
|
1636
|
+
ReplicaProvisionedReadCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1637
|
+
ReplicaProvisionedWriteCapacityAutoScalingSettings: AutoScalingSettingsDescription | None
|
|
1638
|
+
ReplicaStatus: ReplicaStatus | None
|
|
1641
1639
|
|
|
1642
1640
|
|
|
1643
|
-
ReplicaAutoScalingDescriptionList =
|
|
1641
|
+
ReplicaAutoScalingDescriptionList = list[ReplicaAutoScalingDescription]
|
|
1644
1642
|
|
|
1645
1643
|
|
|
1646
1644
|
class TableAutoScalingDescription(TypedDict, total=False):
|
|
1647
|
-
TableName:
|
|
1648
|
-
TableStatus:
|
|
1649
|
-
Replicas:
|
|
1645
|
+
TableName: TableName | None
|
|
1646
|
+
TableStatus: TableStatus | None
|
|
1647
|
+
Replicas: ReplicaAutoScalingDescriptionList | None
|
|
1650
1648
|
|
|
1651
1649
|
|
|
1652
1650
|
class DescribeTableReplicaAutoScalingOutput(TypedDict, total=False):
|
|
1653
|
-
TableAutoScalingDescription:
|
|
1651
|
+
TableAutoScalingDescription: TableAutoScalingDescription | None
|
|
1654
1652
|
|
|
1655
1653
|
|
|
1656
1654
|
class DescribeTimeToLiveInput(ServiceRequest):
|
|
@@ -1658,107 +1656,107 @@ class DescribeTimeToLiveInput(ServiceRequest):
|
|
|
1658
1656
|
|
|
1659
1657
|
|
|
1660
1658
|
class DescribeTimeToLiveOutput(TypedDict, total=False):
|
|
1661
|
-
TimeToLiveDescription:
|
|
1659
|
+
TimeToLiveDescription: TimeToLiveDescription | None
|
|
1662
1660
|
|
|
1663
1661
|
|
|
1664
1662
|
class EnableKinesisStreamingConfiguration(TypedDict, total=False):
|
|
1665
|
-
ApproximateCreationDateTimePrecision:
|
|
1663
|
+
ApproximateCreationDateTimePrecision: ApproximateCreationDateTimePrecision | None
|
|
1666
1664
|
|
|
1667
1665
|
|
|
1668
1666
|
class ExecuteStatementInput(ServiceRequest):
|
|
1669
1667
|
Statement: PartiQLStatement
|
|
1670
|
-
Parameters:
|
|
1671
|
-
ConsistentRead:
|
|
1672
|
-
NextToken:
|
|
1673
|
-
ReturnConsumedCapacity:
|
|
1674
|
-
Limit:
|
|
1675
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1668
|
+
Parameters: PreparedStatementParameters | None
|
|
1669
|
+
ConsistentRead: ConsistentRead | None
|
|
1670
|
+
NextToken: PartiQLNextToken | None
|
|
1671
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
1672
|
+
Limit: PositiveIntegerObject | None
|
|
1673
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1676
1674
|
|
|
1677
1675
|
|
|
1678
1676
|
class ExecuteStatementOutput(TypedDict, total=False):
|
|
1679
|
-
Items:
|
|
1680
|
-
NextToken:
|
|
1681
|
-
ConsumedCapacity:
|
|
1682
|
-
LastEvaluatedKey:
|
|
1677
|
+
Items: ItemList | None
|
|
1678
|
+
NextToken: PartiQLNextToken | None
|
|
1679
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
1680
|
+
LastEvaluatedKey: Key | None
|
|
1683
1681
|
|
|
1684
1682
|
|
|
1685
1683
|
class ParameterizedStatement(TypedDict, total=False):
|
|
1686
1684
|
Statement: PartiQLStatement
|
|
1687
|
-
Parameters:
|
|
1688
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1685
|
+
Parameters: PreparedStatementParameters | None
|
|
1686
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1689
1687
|
|
|
1690
1688
|
|
|
1691
|
-
ParameterizedStatements =
|
|
1689
|
+
ParameterizedStatements = list[ParameterizedStatement]
|
|
1692
1690
|
|
|
1693
1691
|
|
|
1694
1692
|
class ExecuteTransactionInput(ServiceRequest):
|
|
1695
1693
|
TransactStatements: ParameterizedStatements
|
|
1696
|
-
ClientRequestToken:
|
|
1697
|
-
ReturnConsumedCapacity:
|
|
1694
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1695
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
1698
1696
|
|
|
1699
1697
|
|
|
1700
1698
|
class ItemResponse(TypedDict, total=False):
|
|
1701
|
-
Item:
|
|
1699
|
+
Item: AttributeMap | None
|
|
1702
1700
|
|
|
1703
1701
|
|
|
1704
|
-
ItemResponseList =
|
|
1702
|
+
ItemResponseList = list[ItemResponse]
|
|
1705
1703
|
|
|
1706
1704
|
|
|
1707
1705
|
class ExecuteTransactionOutput(TypedDict, total=False):
|
|
1708
|
-
Responses:
|
|
1709
|
-
ConsumedCapacity:
|
|
1706
|
+
Responses: ItemResponseList | None
|
|
1707
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
1710
1708
|
|
|
1711
1709
|
|
|
1712
1710
|
class ExportSummary(TypedDict, total=False):
|
|
1713
|
-
ExportArn:
|
|
1714
|
-
ExportStatus:
|
|
1715
|
-
ExportType:
|
|
1711
|
+
ExportArn: ExportArn | None
|
|
1712
|
+
ExportStatus: ExportStatus | None
|
|
1713
|
+
ExportType: ExportType | None
|
|
1716
1714
|
|
|
1717
1715
|
|
|
1718
|
-
ExportSummaries =
|
|
1716
|
+
ExportSummaries = list[ExportSummary]
|
|
1719
1717
|
|
|
1720
1718
|
|
|
1721
1719
|
class ExportTableToPointInTimeInput(ServiceRequest):
|
|
1722
1720
|
TableArn: TableArn
|
|
1723
|
-
ExportTime:
|
|
1724
|
-
ClientToken:
|
|
1721
|
+
ExportTime: ExportTime | None
|
|
1722
|
+
ClientToken: ClientToken | None
|
|
1725
1723
|
S3Bucket: S3Bucket
|
|
1726
|
-
S3BucketOwner:
|
|
1727
|
-
S3Prefix:
|
|
1728
|
-
S3SseAlgorithm:
|
|
1729
|
-
S3SseKmsKeyId:
|
|
1730
|
-
ExportFormat:
|
|
1731
|
-
ExportType:
|
|
1732
|
-
IncrementalExportSpecification:
|
|
1724
|
+
S3BucketOwner: S3BucketOwner | None
|
|
1725
|
+
S3Prefix: S3Prefix | None
|
|
1726
|
+
S3SseAlgorithm: S3SseAlgorithm | None
|
|
1727
|
+
S3SseKmsKeyId: S3SseKmsKeyId | None
|
|
1728
|
+
ExportFormat: ExportFormat | None
|
|
1729
|
+
ExportType: ExportType | None
|
|
1730
|
+
IncrementalExportSpecification: IncrementalExportSpecification | None
|
|
1733
1731
|
|
|
1734
1732
|
|
|
1735
1733
|
class ExportTableToPointInTimeOutput(TypedDict, total=False):
|
|
1736
|
-
ExportDescription:
|
|
1734
|
+
ExportDescription: ExportDescription | None
|
|
1737
1735
|
|
|
1738
1736
|
|
|
1739
|
-
FilterConditionMap =
|
|
1737
|
+
FilterConditionMap = dict[AttributeName, Condition]
|
|
1740
1738
|
|
|
1741
1739
|
|
|
1742
1740
|
class Get(TypedDict, total=False):
|
|
1743
1741
|
Key: Key
|
|
1744
1742
|
TableName: TableArn
|
|
1745
|
-
ProjectionExpression:
|
|
1746
|
-
ExpressionAttributeNames:
|
|
1743
|
+
ProjectionExpression: ProjectionExpression | None
|
|
1744
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1747
1745
|
|
|
1748
1746
|
|
|
1749
1747
|
class GetItemInput(ServiceRequest):
|
|
1750
1748
|
TableName: TableArn
|
|
1751
1749
|
Key: Key
|
|
1752
|
-
AttributesToGet:
|
|
1753
|
-
ConsistentRead:
|
|
1754
|
-
ReturnConsumedCapacity:
|
|
1755
|
-
ProjectionExpression:
|
|
1756
|
-
ExpressionAttributeNames:
|
|
1750
|
+
AttributesToGet: AttributeNameList | None
|
|
1751
|
+
ConsistentRead: ConsistentRead | None
|
|
1752
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
1753
|
+
ProjectionExpression: ProjectionExpression | None
|
|
1754
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1757
1755
|
|
|
1758
1756
|
|
|
1759
1757
|
class GetItemOutput(TypedDict, total=False):
|
|
1760
|
-
Item:
|
|
1761
|
-
ConsumedCapacity:
|
|
1758
|
+
Item: AttributeMap | None
|
|
1759
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
1762
1760
|
|
|
1763
1761
|
|
|
1764
1762
|
class GetResourcePolicyInput(ServiceRequest):
|
|
@@ -1766,79 +1764,79 @@ class GetResourcePolicyInput(ServiceRequest):
|
|
|
1766
1764
|
|
|
1767
1765
|
|
|
1768
1766
|
class GetResourcePolicyOutput(TypedDict, total=False):
|
|
1769
|
-
Policy:
|
|
1770
|
-
RevisionId:
|
|
1767
|
+
Policy: ResourcePolicy | None
|
|
1768
|
+
RevisionId: PolicyRevisionId | None
|
|
1771
1769
|
|
|
1772
1770
|
|
|
1773
1771
|
class GlobalSecondaryIndexAutoScalingUpdate(TypedDict, total=False):
|
|
1774
|
-
IndexName:
|
|
1775
|
-
ProvisionedWriteCapacityAutoScalingUpdate:
|
|
1772
|
+
IndexName: IndexName | None
|
|
1773
|
+
ProvisionedWriteCapacityAutoScalingUpdate: AutoScalingSettingsUpdate | None
|
|
1776
1774
|
|
|
1777
1775
|
|
|
1778
|
-
GlobalSecondaryIndexAutoScalingUpdateList =
|
|
1776
|
+
GlobalSecondaryIndexAutoScalingUpdateList = list[GlobalSecondaryIndexAutoScalingUpdate]
|
|
1779
1777
|
|
|
1780
1778
|
|
|
1781
1779
|
class UpdateGlobalSecondaryIndexAction(TypedDict, total=False):
|
|
1782
1780
|
IndexName: IndexName
|
|
1783
|
-
ProvisionedThroughput:
|
|
1784
|
-
OnDemandThroughput:
|
|
1785
|
-
WarmThroughput:
|
|
1781
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
1782
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
1783
|
+
WarmThroughput: WarmThroughput | None
|
|
1786
1784
|
|
|
1787
1785
|
|
|
1788
1786
|
class GlobalSecondaryIndexUpdate(TypedDict, total=False):
|
|
1789
|
-
Update:
|
|
1790
|
-
Create:
|
|
1791
|
-
Delete:
|
|
1787
|
+
Update: UpdateGlobalSecondaryIndexAction | None
|
|
1788
|
+
Create: CreateGlobalSecondaryIndexAction | None
|
|
1789
|
+
Delete: DeleteGlobalSecondaryIndexAction | None
|
|
1792
1790
|
|
|
1793
1791
|
|
|
1794
|
-
GlobalSecondaryIndexUpdateList =
|
|
1792
|
+
GlobalSecondaryIndexUpdateList = list[GlobalSecondaryIndexUpdate]
|
|
1795
1793
|
|
|
1796
1794
|
|
|
1797
1795
|
class GlobalTable(TypedDict, total=False):
|
|
1798
|
-
GlobalTableName:
|
|
1799
|
-
ReplicationGroup:
|
|
1796
|
+
GlobalTableName: TableName | None
|
|
1797
|
+
ReplicationGroup: ReplicaList | None
|
|
1800
1798
|
|
|
1801
1799
|
|
|
1802
1800
|
class GlobalTableGlobalSecondaryIndexSettingsUpdate(TypedDict, total=False):
|
|
1803
1801
|
IndexName: IndexName
|
|
1804
|
-
ProvisionedWriteCapacityUnits:
|
|
1805
|
-
ProvisionedWriteCapacityAutoScalingSettingsUpdate:
|
|
1802
|
+
ProvisionedWriteCapacityUnits: PositiveLongObject | None
|
|
1803
|
+
ProvisionedWriteCapacityAutoScalingSettingsUpdate: AutoScalingSettingsUpdate | None
|
|
1806
1804
|
|
|
1807
1805
|
|
|
1808
|
-
GlobalTableGlobalSecondaryIndexSettingsUpdateList =
|
|
1806
|
+
GlobalTableGlobalSecondaryIndexSettingsUpdateList = list[
|
|
1809
1807
|
GlobalTableGlobalSecondaryIndexSettingsUpdate
|
|
1810
1808
|
]
|
|
1811
|
-
GlobalTableList =
|
|
1809
|
+
GlobalTableList = list[GlobalTable]
|
|
1812
1810
|
|
|
1813
1811
|
|
|
1814
1812
|
class GlobalTableWitnessGroupUpdate(TypedDict, total=False):
|
|
1815
|
-
Create:
|
|
1816
|
-
Delete:
|
|
1813
|
+
Create: CreateGlobalTableWitnessGroupMemberAction | None
|
|
1814
|
+
Delete: DeleteGlobalTableWitnessGroupMemberAction | None
|
|
1817
1815
|
|
|
1818
1816
|
|
|
1819
|
-
GlobalTableWitnessGroupUpdateList =
|
|
1817
|
+
GlobalTableWitnessGroupUpdateList = list[GlobalTableWitnessGroupUpdate]
|
|
1820
1818
|
|
|
1821
1819
|
|
|
1822
1820
|
class ImportSummary(TypedDict, total=False):
|
|
1823
|
-
ImportArn:
|
|
1824
|
-
ImportStatus:
|
|
1825
|
-
TableArn:
|
|
1826
|
-
S3BucketSource:
|
|
1827
|
-
CloudWatchLogGroupArn:
|
|
1828
|
-
InputFormat:
|
|
1829
|
-
StartTime:
|
|
1830
|
-
EndTime:
|
|
1821
|
+
ImportArn: ImportArn | None
|
|
1822
|
+
ImportStatus: ImportStatus | None
|
|
1823
|
+
TableArn: TableArn | None
|
|
1824
|
+
S3BucketSource: S3BucketSource | None
|
|
1825
|
+
CloudWatchLogGroupArn: CloudWatchLogGroupArn | None
|
|
1826
|
+
InputFormat: InputFormat | None
|
|
1827
|
+
StartTime: ImportStartTime | None
|
|
1828
|
+
EndTime: ImportEndTime | None
|
|
1831
1829
|
|
|
1832
1830
|
|
|
1833
|
-
ImportSummaryList =
|
|
1831
|
+
ImportSummaryList = list[ImportSummary]
|
|
1834
1832
|
|
|
1835
1833
|
|
|
1836
1834
|
class ImportTableInput(ServiceRequest):
|
|
1837
|
-
ClientToken:
|
|
1835
|
+
ClientToken: ClientToken | None
|
|
1838
1836
|
S3BucketSource: S3BucketSource
|
|
1839
1837
|
InputFormat: InputFormat
|
|
1840
|
-
InputFormatOptions:
|
|
1841
|
-
InputCompressionType:
|
|
1838
|
+
InputFormatOptions: InputFormatOptions | None
|
|
1839
|
+
InputCompressionType: InputCompressionType | None
|
|
1842
1840
|
TableCreationParameters: TableCreationParameters
|
|
1843
1841
|
|
|
1844
1842
|
|
|
@@ -1846,20 +1844,20 @@ class ImportTableOutput(TypedDict, total=False):
|
|
|
1846
1844
|
ImportTableDescription: ImportTableDescription
|
|
1847
1845
|
|
|
1848
1846
|
|
|
1849
|
-
KeyConditions =
|
|
1847
|
+
KeyConditions = dict[AttributeName, Condition]
|
|
1850
1848
|
|
|
1851
1849
|
|
|
1852
1850
|
class KinesisStreamingDestinationInput(ServiceRequest):
|
|
1853
1851
|
TableName: TableArn
|
|
1854
1852
|
StreamArn: StreamArn
|
|
1855
|
-
EnableKinesisStreamingConfiguration:
|
|
1853
|
+
EnableKinesisStreamingConfiguration: EnableKinesisStreamingConfiguration | None
|
|
1856
1854
|
|
|
1857
1855
|
|
|
1858
1856
|
class KinesisStreamingDestinationOutput(TypedDict, total=False):
|
|
1859
|
-
TableName:
|
|
1860
|
-
StreamArn:
|
|
1861
|
-
DestinationStatus:
|
|
1862
|
-
EnableKinesisStreamingConfiguration:
|
|
1857
|
+
TableName: TableName | None
|
|
1858
|
+
StreamArn: StreamArn | None
|
|
1859
|
+
DestinationStatus: DestinationStatus | None
|
|
1860
|
+
EnableKinesisStreamingConfiguration: EnableKinesisStreamingConfiguration | None
|
|
1863
1861
|
|
|
1864
1862
|
|
|
1865
1863
|
TimeRangeUpperBound = datetime
|
|
@@ -1867,287 +1865,285 @@ TimeRangeLowerBound = datetime
|
|
|
1867
1865
|
|
|
1868
1866
|
|
|
1869
1867
|
class ListBackupsInput(ServiceRequest):
|
|
1870
|
-
TableName:
|
|
1871
|
-
Limit:
|
|
1872
|
-
TimeRangeLowerBound:
|
|
1873
|
-
TimeRangeUpperBound:
|
|
1874
|
-
ExclusiveStartBackupArn:
|
|
1875
|
-
BackupType:
|
|
1868
|
+
TableName: TableArn | None
|
|
1869
|
+
Limit: BackupsInputLimit | None
|
|
1870
|
+
TimeRangeLowerBound: TimeRangeLowerBound | None
|
|
1871
|
+
TimeRangeUpperBound: TimeRangeUpperBound | None
|
|
1872
|
+
ExclusiveStartBackupArn: BackupArn | None
|
|
1873
|
+
BackupType: BackupTypeFilter | None
|
|
1876
1874
|
|
|
1877
1875
|
|
|
1878
1876
|
class ListBackupsOutput(TypedDict, total=False):
|
|
1879
|
-
BackupSummaries:
|
|
1880
|
-
LastEvaluatedBackupArn:
|
|
1877
|
+
BackupSummaries: BackupSummaries | None
|
|
1878
|
+
LastEvaluatedBackupArn: BackupArn | None
|
|
1881
1879
|
|
|
1882
1880
|
|
|
1883
1881
|
class ListContributorInsightsInput(ServiceRequest):
|
|
1884
|
-
TableName:
|
|
1885
|
-
NextToken:
|
|
1886
|
-
MaxResults:
|
|
1882
|
+
TableName: TableArn | None
|
|
1883
|
+
NextToken: NextTokenString | None
|
|
1884
|
+
MaxResults: ListContributorInsightsLimit | None
|
|
1887
1885
|
|
|
1888
1886
|
|
|
1889
1887
|
class ListContributorInsightsOutput(TypedDict, total=False):
|
|
1890
|
-
ContributorInsightsSummaries:
|
|
1891
|
-
NextToken:
|
|
1888
|
+
ContributorInsightsSummaries: ContributorInsightsSummaries | None
|
|
1889
|
+
NextToken: NextTokenString | None
|
|
1892
1890
|
|
|
1893
1891
|
|
|
1894
1892
|
class ListExportsInput(ServiceRequest):
|
|
1895
|
-
TableArn:
|
|
1896
|
-
MaxResults:
|
|
1897
|
-
NextToken:
|
|
1893
|
+
TableArn: TableArn | None
|
|
1894
|
+
MaxResults: ListExportsMaxLimit | None
|
|
1895
|
+
NextToken: ExportNextToken | None
|
|
1898
1896
|
|
|
1899
1897
|
|
|
1900
1898
|
class ListExportsOutput(TypedDict, total=False):
|
|
1901
|
-
ExportSummaries:
|
|
1902
|
-
NextToken:
|
|
1899
|
+
ExportSummaries: ExportSummaries | None
|
|
1900
|
+
NextToken: ExportNextToken | None
|
|
1903
1901
|
|
|
1904
1902
|
|
|
1905
1903
|
class ListGlobalTablesInput(ServiceRequest):
|
|
1906
|
-
ExclusiveStartGlobalTableName:
|
|
1907
|
-
Limit:
|
|
1908
|
-
RegionName:
|
|
1904
|
+
ExclusiveStartGlobalTableName: TableName | None
|
|
1905
|
+
Limit: PositiveIntegerObject | None
|
|
1906
|
+
RegionName: RegionName | None
|
|
1909
1907
|
|
|
1910
1908
|
|
|
1911
1909
|
class ListGlobalTablesOutput(TypedDict, total=False):
|
|
1912
|
-
GlobalTables:
|
|
1913
|
-
LastEvaluatedGlobalTableName:
|
|
1910
|
+
GlobalTables: GlobalTableList | None
|
|
1911
|
+
LastEvaluatedGlobalTableName: TableName | None
|
|
1914
1912
|
|
|
1915
1913
|
|
|
1916
1914
|
class ListImportsInput(ServiceRequest):
|
|
1917
|
-
TableArn:
|
|
1918
|
-
PageSize:
|
|
1919
|
-
NextToken:
|
|
1915
|
+
TableArn: TableArn | None
|
|
1916
|
+
PageSize: ListImportsMaxLimit | None
|
|
1917
|
+
NextToken: ImportNextToken | None
|
|
1920
1918
|
|
|
1921
1919
|
|
|
1922
1920
|
class ListImportsOutput(TypedDict, total=False):
|
|
1923
|
-
ImportSummaryList:
|
|
1924
|
-
NextToken:
|
|
1921
|
+
ImportSummaryList: ImportSummaryList | None
|
|
1922
|
+
NextToken: ImportNextToken | None
|
|
1925
1923
|
|
|
1926
1924
|
|
|
1927
1925
|
class ListTablesInput(ServiceRequest):
|
|
1928
|
-
ExclusiveStartTableName:
|
|
1929
|
-
Limit:
|
|
1926
|
+
ExclusiveStartTableName: TableName | None
|
|
1927
|
+
Limit: ListTablesInputLimit | None
|
|
1930
1928
|
|
|
1931
1929
|
|
|
1932
|
-
TableNameList =
|
|
1930
|
+
TableNameList = list[TableName]
|
|
1933
1931
|
|
|
1934
1932
|
|
|
1935
1933
|
class ListTablesOutput(TypedDict, total=False):
|
|
1936
|
-
TableNames:
|
|
1937
|
-
LastEvaluatedTableName:
|
|
1934
|
+
TableNames: TableNameList | None
|
|
1935
|
+
LastEvaluatedTableName: TableName | None
|
|
1938
1936
|
|
|
1939
1937
|
|
|
1940
1938
|
class ListTagsOfResourceInput(ServiceRequest):
|
|
1941
1939
|
ResourceArn: ResourceArnString
|
|
1942
|
-
NextToken:
|
|
1940
|
+
NextToken: NextTokenString | None
|
|
1943
1941
|
|
|
1944
1942
|
|
|
1945
1943
|
class ListTagsOfResourceOutput(TypedDict, total=False):
|
|
1946
|
-
Tags:
|
|
1947
|
-
NextToken:
|
|
1944
|
+
Tags: TagList | None
|
|
1945
|
+
NextToken: NextTokenString | None
|
|
1948
1946
|
|
|
1949
1947
|
|
|
1950
1948
|
class PointInTimeRecoverySpecification(TypedDict, total=False):
|
|
1951
1949
|
PointInTimeRecoveryEnabled: BooleanObject
|
|
1952
|
-
RecoveryPeriodInDays:
|
|
1950
|
+
RecoveryPeriodInDays: RecoveryPeriodInDays | None
|
|
1953
1951
|
|
|
1954
1952
|
|
|
1955
1953
|
class Put(TypedDict, total=False):
|
|
1956
1954
|
Item: PutItemInputAttributeMap
|
|
1957
1955
|
TableName: TableArn
|
|
1958
|
-
ConditionExpression:
|
|
1959
|
-
ExpressionAttributeNames:
|
|
1960
|
-
ExpressionAttributeValues:
|
|
1961
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1956
|
+
ConditionExpression: ConditionExpression | None
|
|
1957
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1958
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
1959
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1962
1960
|
|
|
1963
1961
|
|
|
1964
1962
|
class PutItemInput(ServiceRequest):
|
|
1965
1963
|
TableName: TableArn
|
|
1966
1964
|
Item: PutItemInputAttributeMap
|
|
1967
|
-
Expected:
|
|
1968
|
-
ReturnValues:
|
|
1969
|
-
ReturnConsumedCapacity:
|
|
1970
|
-
ReturnItemCollectionMetrics:
|
|
1971
|
-
ConditionalOperator:
|
|
1972
|
-
ConditionExpression:
|
|
1973
|
-
ExpressionAttributeNames:
|
|
1974
|
-
ExpressionAttributeValues:
|
|
1975
|
-
ReturnValuesOnConditionCheckFailure:
|
|
1965
|
+
Expected: ExpectedAttributeMap | None
|
|
1966
|
+
ReturnValues: ReturnValue | None
|
|
1967
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
1968
|
+
ReturnItemCollectionMetrics: ReturnItemCollectionMetrics | None
|
|
1969
|
+
ConditionalOperator: ConditionalOperator | None
|
|
1970
|
+
ConditionExpression: ConditionExpression | None
|
|
1971
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
1972
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
1973
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
1976
1974
|
|
|
1977
1975
|
|
|
1978
1976
|
class PutItemOutput(TypedDict, total=False):
|
|
1979
|
-
Attributes:
|
|
1980
|
-
ConsumedCapacity:
|
|
1981
|
-
ItemCollectionMetrics:
|
|
1977
|
+
Attributes: AttributeMap | None
|
|
1978
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
1979
|
+
ItemCollectionMetrics: ItemCollectionMetrics | None
|
|
1982
1980
|
|
|
1983
1981
|
|
|
1984
1982
|
class PutResourcePolicyInput(ServiceRequest):
|
|
1985
1983
|
ResourceArn: ResourceArnString
|
|
1986
1984
|
Policy: ResourcePolicy
|
|
1987
|
-
ExpectedRevisionId:
|
|
1988
|
-
ConfirmRemoveSelfResourceAccess:
|
|
1985
|
+
ExpectedRevisionId: PolicyRevisionId | None
|
|
1986
|
+
ConfirmRemoveSelfResourceAccess: ConfirmRemoveSelfResourceAccess | None
|
|
1989
1987
|
|
|
1990
1988
|
|
|
1991
1989
|
class PutResourcePolicyOutput(TypedDict, total=False):
|
|
1992
|
-
RevisionId:
|
|
1990
|
+
RevisionId: PolicyRevisionId | None
|
|
1993
1991
|
|
|
1994
1992
|
|
|
1995
1993
|
class QueryInput(ServiceRequest):
|
|
1996
1994
|
TableName: TableArn
|
|
1997
|
-
IndexName:
|
|
1998
|
-
Select:
|
|
1999
|
-
AttributesToGet:
|
|
2000
|
-
Limit:
|
|
2001
|
-
ConsistentRead:
|
|
2002
|
-
KeyConditions:
|
|
2003
|
-
QueryFilter:
|
|
2004
|
-
ConditionalOperator:
|
|
2005
|
-
ScanIndexForward:
|
|
2006
|
-
ExclusiveStartKey:
|
|
2007
|
-
ReturnConsumedCapacity:
|
|
2008
|
-
ProjectionExpression:
|
|
2009
|
-
FilterExpression:
|
|
2010
|
-
KeyConditionExpression:
|
|
2011
|
-
ExpressionAttributeNames:
|
|
2012
|
-
ExpressionAttributeValues:
|
|
1995
|
+
IndexName: IndexName | None
|
|
1996
|
+
Select: Select | None
|
|
1997
|
+
AttributesToGet: AttributeNameList | None
|
|
1998
|
+
Limit: PositiveIntegerObject | None
|
|
1999
|
+
ConsistentRead: ConsistentRead | None
|
|
2000
|
+
KeyConditions: KeyConditions | None
|
|
2001
|
+
QueryFilter: FilterConditionMap | None
|
|
2002
|
+
ConditionalOperator: ConditionalOperator | None
|
|
2003
|
+
ScanIndexForward: BooleanObject | None
|
|
2004
|
+
ExclusiveStartKey: Key | None
|
|
2005
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
2006
|
+
ProjectionExpression: ProjectionExpression | None
|
|
2007
|
+
FilterExpression: ConditionExpression | None
|
|
2008
|
+
KeyConditionExpression: KeyExpression | None
|
|
2009
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
2010
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
2013
2011
|
|
|
2014
2012
|
|
|
2015
2013
|
class QueryOutput(TypedDict, total=False):
|
|
2016
|
-
Items:
|
|
2017
|
-
Count:
|
|
2018
|
-
ScannedCount:
|
|
2019
|
-
LastEvaluatedKey:
|
|
2020
|
-
ConsumedCapacity:
|
|
2014
|
+
Items: ItemList | None
|
|
2015
|
+
Count: Integer | None
|
|
2016
|
+
ScannedCount: Integer | None
|
|
2017
|
+
LastEvaluatedKey: Key | None
|
|
2018
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
2021
2019
|
|
|
2022
2020
|
|
|
2023
2021
|
class ReplicaGlobalSecondaryIndexAutoScalingUpdate(TypedDict, total=False):
|
|
2024
|
-
IndexName:
|
|
2025
|
-
ProvisionedReadCapacityAutoScalingUpdate:
|
|
2022
|
+
IndexName: IndexName | None
|
|
2023
|
+
ProvisionedReadCapacityAutoScalingUpdate: AutoScalingSettingsUpdate | None
|
|
2026
2024
|
|
|
2027
2025
|
|
|
2028
|
-
ReplicaGlobalSecondaryIndexAutoScalingUpdateList =
|
|
2026
|
+
ReplicaGlobalSecondaryIndexAutoScalingUpdateList = list[
|
|
2029
2027
|
ReplicaGlobalSecondaryIndexAutoScalingUpdate
|
|
2030
2028
|
]
|
|
2031
2029
|
|
|
2032
2030
|
|
|
2033
2031
|
class ReplicaAutoScalingUpdate(TypedDict, total=False):
|
|
2034
2032
|
RegionName: RegionName
|
|
2035
|
-
ReplicaGlobalSecondaryIndexUpdates:
|
|
2036
|
-
ReplicaProvisionedReadCapacityAutoScalingUpdate:
|
|
2033
|
+
ReplicaGlobalSecondaryIndexUpdates: ReplicaGlobalSecondaryIndexAutoScalingUpdateList | None
|
|
2034
|
+
ReplicaProvisionedReadCapacityAutoScalingUpdate: AutoScalingSettingsUpdate | None
|
|
2037
2035
|
|
|
2038
2036
|
|
|
2039
|
-
ReplicaAutoScalingUpdateList =
|
|
2037
|
+
ReplicaAutoScalingUpdateList = list[ReplicaAutoScalingUpdate]
|
|
2040
2038
|
|
|
2041
2039
|
|
|
2042
2040
|
class ReplicaGlobalSecondaryIndexSettingsUpdate(TypedDict, total=False):
|
|
2043
2041
|
IndexName: IndexName
|
|
2044
|
-
ProvisionedReadCapacityUnits:
|
|
2045
|
-
ProvisionedReadCapacityAutoScalingSettingsUpdate:
|
|
2042
|
+
ProvisionedReadCapacityUnits: PositiveLongObject | None
|
|
2043
|
+
ProvisionedReadCapacityAutoScalingSettingsUpdate: AutoScalingSettingsUpdate | None
|
|
2046
2044
|
|
|
2047
2045
|
|
|
2048
|
-
ReplicaGlobalSecondaryIndexSettingsUpdateList =
|
|
2046
|
+
ReplicaGlobalSecondaryIndexSettingsUpdateList = list[ReplicaGlobalSecondaryIndexSettingsUpdate]
|
|
2049
2047
|
|
|
2050
2048
|
|
|
2051
2049
|
class ReplicaSettingsUpdate(TypedDict, total=False):
|
|
2052
2050
|
RegionName: RegionName
|
|
2053
|
-
ReplicaProvisionedReadCapacityUnits:
|
|
2054
|
-
ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate:
|
|
2055
|
-
ReplicaGlobalSecondaryIndexSettingsUpdate:
|
|
2056
|
-
|
|
2057
|
-
]
|
|
2058
|
-
ReplicaTableClass: Optional[TableClass]
|
|
2051
|
+
ReplicaProvisionedReadCapacityUnits: PositiveLongObject | None
|
|
2052
|
+
ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate: AutoScalingSettingsUpdate | None
|
|
2053
|
+
ReplicaGlobalSecondaryIndexSettingsUpdate: ReplicaGlobalSecondaryIndexSettingsUpdateList | None
|
|
2054
|
+
ReplicaTableClass: TableClass | None
|
|
2059
2055
|
|
|
2060
2056
|
|
|
2061
|
-
ReplicaSettingsUpdateList =
|
|
2057
|
+
ReplicaSettingsUpdateList = list[ReplicaSettingsUpdate]
|
|
2062
2058
|
|
|
2063
2059
|
|
|
2064
2060
|
class ReplicaUpdate(TypedDict, total=False):
|
|
2065
|
-
Create:
|
|
2066
|
-
Delete:
|
|
2061
|
+
Create: CreateReplicaAction | None
|
|
2062
|
+
Delete: DeleteReplicaAction | None
|
|
2067
2063
|
|
|
2068
2064
|
|
|
2069
|
-
ReplicaUpdateList =
|
|
2065
|
+
ReplicaUpdateList = list[ReplicaUpdate]
|
|
2070
2066
|
|
|
2071
2067
|
|
|
2072
2068
|
class UpdateReplicationGroupMemberAction(TypedDict, total=False):
|
|
2073
2069
|
RegionName: RegionName
|
|
2074
|
-
KMSMasterKeyId:
|
|
2075
|
-
ProvisionedThroughputOverride:
|
|
2076
|
-
OnDemandThroughputOverride:
|
|
2077
|
-
GlobalSecondaryIndexes:
|
|
2078
|
-
TableClassOverride:
|
|
2070
|
+
KMSMasterKeyId: KMSMasterKeyId | None
|
|
2071
|
+
ProvisionedThroughputOverride: ProvisionedThroughputOverride | None
|
|
2072
|
+
OnDemandThroughputOverride: OnDemandThroughputOverride | None
|
|
2073
|
+
GlobalSecondaryIndexes: ReplicaGlobalSecondaryIndexList | None
|
|
2074
|
+
TableClassOverride: TableClass | None
|
|
2079
2075
|
|
|
2080
2076
|
|
|
2081
2077
|
class ReplicationGroupUpdate(TypedDict, total=False):
|
|
2082
|
-
Create:
|
|
2083
|
-
Update:
|
|
2084
|
-
Delete:
|
|
2078
|
+
Create: CreateReplicationGroupMemberAction | None
|
|
2079
|
+
Update: UpdateReplicationGroupMemberAction | None
|
|
2080
|
+
Delete: DeleteReplicationGroupMemberAction | None
|
|
2085
2081
|
|
|
2086
2082
|
|
|
2087
|
-
ReplicationGroupUpdateList =
|
|
2083
|
+
ReplicationGroupUpdateList = list[ReplicationGroupUpdate]
|
|
2088
2084
|
|
|
2089
2085
|
|
|
2090
2086
|
class RestoreTableFromBackupInput(ServiceRequest):
|
|
2091
2087
|
TargetTableName: TableName
|
|
2092
2088
|
BackupArn: BackupArn
|
|
2093
|
-
BillingModeOverride:
|
|
2094
|
-
GlobalSecondaryIndexOverride:
|
|
2095
|
-
LocalSecondaryIndexOverride:
|
|
2096
|
-
ProvisionedThroughputOverride:
|
|
2097
|
-
OnDemandThroughputOverride:
|
|
2098
|
-
SSESpecificationOverride:
|
|
2089
|
+
BillingModeOverride: BillingMode | None
|
|
2090
|
+
GlobalSecondaryIndexOverride: GlobalSecondaryIndexList | None
|
|
2091
|
+
LocalSecondaryIndexOverride: LocalSecondaryIndexList | None
|
|
2092
|
+
ProvisionedThroughputOverride: ProvisionedThroughput | None
|
|
2093
|
+
OnDemandThroughputOverride: OnDemandThroughput | None
|
|
2094
|
+
SSESpecificationOverride: SSESpecification | None
|
|
2099
2095
|
|
|
2100
2096
|
|
|
2101
2097
|
class RestoreTableFromBackupOutput(TypedDict, total=False):
|
|
2102
|
-
TableDescription:
|
|
2098
|
+
TableDescription: TableDescription | None
|
|
2103
2099
|
|
|
2104
2100
|
|
|
2105
2101
|
class RestoreTableToPointInTimeInput(ServiceRequest):
|
|
2106
|
-
SourceTableArn:
|
|
2107
|
-
SourceTableName:
|
|
2102
|
+
SourceTableArn: TableArn | None
|
|
2103
|
+
SourceTableName: TableName | None
|
|
2108
2104
|
TargetTableName: TableName
|
|
2109
|
-
UseLatestRestorableTime:
|
|
2110
|
-
RestoreDateTime:
|
|
2111
|
-
BillingModeOverride:
|
|
2112
|
-
GlobalSecondaryIndexOverride:
|
|
2113
|
-
LocalSecondaryIndexOverride:
|
|
2114
|
-
ProvisionedThroughputOverride:
|
|
2115
|
-
OnDemandThroughputOverride:
|
|
2116
|
-
SSESpecificationOverride:
|
|
2105
|
+
UseLatestRestorableTime: BooleanObject | None
|
|
2106
|
+
RestoreDateTime: Date | None
|
|
2107
|
+
BillingModeOverride: BillingMode | None
|
|
2108
|
+
GlobalSecondaryIndexOverride: GlobalSecondaryIndexList | None
|
|
2109
|
+
LocalSecondaryIndexOverride: LocalSecondaryIndexList | None
|
|
2110
|
+
ProvisionedThroughputOverride: ProvisionedThroughput | None
|
|
2111
|
+
OnDemandThroughputOverride: OnDemandThroughput | None
|
|
2112
|
+
SSESpecificationOverride: SSESpecification | None
|
|
2117
2113
|
|
|
2118
2114
|
|
|
2119
2115
|
class RestoreTableToPointInTimeOutput(TypedDict, total=False):
|
|
2120
|
-
TableDescription:
|
|
2116
|
+
TableDescription: TableDescription | None
|
|
2121
2117
|
|
|
2122
2118
|
|
|
2123
2119
|
class ScanInput(ServiceRequest):
|
|
2124
2120
|
TableName: TableArn
|
|
2125
|
-
IndexName:
|
|
2126
|
-
AttributesToGet:
|
|
2127
|
-
Limit:
|
|
2128
|
-
Select:
|
|
2129
|
-
ScanFilter:
|
|
2130
|
-
ConditionalOperator:
|
|
2131
|
-
ExclusiveStartKey:
|
|
2132
|
-
ReturnConsumedCapacity:
|
|
2133
|
-
TotalSegments:
|
|
2134
|
-
Segment:
|
|
2135
|
-
ProjectionExpression:
|
|
2136
|
-
FilterExpression:
|
|
2137
|
-
ExpressionAttributeNames:
|
|
2138
|
-
ExpressionAttributeValues:
|
|
2139
|
-
ConsistentRead:
|
|
2121
|
+
IndexName: IndexName | None
|
|
2122
|
+
AttributesToGet: AttributeNameList | None
|
|
2123
|
+
Limit: PositiveIntegerObject | None
|
|
2124
|
+
Select: Select | None
|
|
2125
|
+
ScanFilter: FilterConditionMap | None
|
|
2126
|
+
ConditionalOperator: ConditionalOperator | None
|
|
2127
|
+
ExclusiveStartKey: Key | None
|
|
2128
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
2129
|
+
TotalSegments: ScanTotalSegments | None
|
|
2130
|
+
Segment: ScanSegment | None
|
|
2131
|
+
ProjectionExpression: ProjectionExpression | None
|
|
2132
|
+
FilterExpression: ConditionExpression | None
|
|
2133
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
2134
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
2135
|
+
ConsistentRead: ConsistentRead | None
|
|
2140
2136
|
|
|
2141
2137
|
|
|
2142
2138
|
class ScanOutput(TypedDict, total=False):
|
|
2143
|
-
Items:
|
|
2144
|
-
Count:
|
|
2145
|
-
ScannedCount:
|
|
2146
|
-
LastEvaluatedKey:
|
|
2147
|
-
ConsumedCapacity:
|
|
2139
|
+
Items: ItemList | None
|
|
2140
|
+
Count: Integer | None
|
|
2141
|
+
ScannedCount: Integer | None
|
|
2142
|
+
LastEvaluatedKey: Key | None
|
|
2143
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
2148
2144
|
|
|
2149
2145
|
|
|
2150
|
-
TagKeyList =
|
|
2146
|
+
TagKeyList = list[TagKeyString]
|
|
2151
2147
|
|
|
2152
2148
|
|
|
2153
2149
|
class TagResourceInput(ServiceRequest):
|
|
@@ -2164,49 +2160,49 @@ class TransactGetItem(TypedDict, total=False):
|
|
|
2164
2160
|
Get: Get
|
|
2165
2161
|
|
|
2166
2162
|
|
|
2167
|
-
TransactGetItemList =
|
|
2163
|
+
TransactGetItemList = list[TransactGetItem]
|
|
2168
2164
|
|
|
2169
2165
|
|
|
2170
2166
|
class TransactGetItemsInput(ServiceRequest):
|
|
2171
2167
|
TransactItems: TransactGetItemList
|
|
2172
|
-
ReturnConsumedCapacity:
|
|
2168
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
2173
2169
|
|
|
2174
2170
|
|
|
2175
2171
|
class TransactGetItemsOutput(TypedDict, total=False):
|
|
2176
|
-
ConsumedCapacity:
|
|
2177
|
-
Responses:
|
|
2172
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
2173
|
+
Responses: ItemResponseList | None
|
|
2178
2174
|
|
|
2179
2175
|
|
|
2180
2176
|
class Update(TypedDict, total=False):
|
|
2181
2177
|
Key: Key
|
|
2182
2178
|
UpdateExpression: UpdateExpression
|
|
2183
2179
|
TableName: TableArn
|
|
2184
|
-
ConditionExpression:
|
|
2185
|
-
ExpressionAttributeNames:
|
|
2186
|
-
ExpressionAttributeValues:
|
|
2187
|
-
ReturnValuesOnConditionCheckFailure:
|
|
2180
|
+
ConditionExpression: ConditionExpression | None
|
|
2181
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
2182
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
2183
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
2188
2184
|
|
|
2189
2185
|
|
|
2190
2186
|
class TransactWriteItem(TypedDict, total=False):
|
|
2191
|
-
ConditionCheck:
|
|
2192
|
-
Put:
|
|
2193
|
-
Delete:
|
|
2194
|
-
Update:
|
|
2187
|
+
ConditionCheck: ConditionCheck | None
|
|
2188
|
+
Put: Put | None
|
|
2189
|
+
Delete: Delete | None
|
|
2190
|
+
Update: Update | None
|
|
2195
2191
|
|
|
2196
2192
|
|
|
2197
|
-
TransactWriteItemList =
|
|
2193
|
+
TransactWriteItemList = list[TransactWriteItem]
|
|
2198
2194
|
|
|
2199
2195
|
|
|
2200
2196
|
class TransactWriteItemsInput(ServiceRequest):
|
|
2201
2197
|
TransactItems: TransactWriteItemList
|
|
2202
|
-
ReturnConsumedCapacity:
|
|
2203
|
-
ReturnItemCollectionMetrics:
|
|
2204
|
-
ClientRequestToken:
|
|
2198
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
2199
|
+
ReturnItemCollectionMetrics: ReturnItemCollectionMetrics | None
|
|
2200
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2205
2201
|
|
|
2206
2202
|
|
|
2207
2203
|
class TransactWriteItemsOutput(TypedDict, total=False):
|
|
2208
|
-
ConsumedCapacity:
|
|
2209
|
-
ItemCollectionMetrics:
|
|
2204
|
+
ConsumedCapacity: ConsumedCapacityMultiple | None
|
|
2205
|
+
ItemCollectionMetrics: ItemCollectionMetricsPerTable | None
|
|
2210
2206
|
|
|
2211
2207
|
|
|
2212
2208
|
class UntagResourceInput(ServiceRequest):
|
|
@@ -2220,21 +2216,21 @@ class UpdateContinuousBackupsInput(ServiceRequest):
|
|
|
2220
2216
|
|
|
2221
2217
|
|
|
2222
2218
|
class UpdateContinuousBackupsOutput(TypedDict, total=False):
|
|
2223
|
-
ContinuousBackupsDescription:
|
|
2219
|
+
ContinuousBackupsDescription: ContinuousBackupsDescription | None
|
|
2224
2220
|
|
|
2225
2221
|
|
|
2226
2222
|
class UpdateContributorInsightsInput(ServiceRequest):
|
|
2227
2223
|
TableName: TableArn
|
|
2228
|
-
IndexName:
|
|
2224
|
+
IndexName: IndexName | None
|
|
2229
2225
|
ContributorInsightsAction: ContributorInsightsAction
|
|
2230
|
-
ContributorInsightsMode:
|
|
2226
|
+
ContributorInsightsMode: ContributorInsightsMode | None
|
|
2231
2227
|
|
|
2232
2228
|
|
|
2233
2229
|
class UpdateContributorInsightsOutput(TypedDict, total=False):
|
|
2234
|
-
TableName:
|
|
2235
|
-
IndexName:
|
|
2236
|
-
ContributorInsightsStatus:
|
|
2237
|
-
ContributorInsightsMode:
|
|
2230
|
+
TableName: TableName | None
|
|
2231
|
+
IndexName: IndexName | None
|
|
2232
|
+
ContributorInsightsStatus: ContributorInsightsStatus | None
|
|
2233
|
+
ContributorInsightsMode: ContributorInsightsMode | None
|
|
2238
2234
|
|
|
2239
2235
|
|
|
2240
2236
|
class UpdateGlobalTableInput(ServiceRequest):
|
|
@@ -2243,96 +2239,94 @@ class UpdateGlobalTableInput(ServiceRequest):
|
|
|
2243
2239
|
|
|
2244
2240
|
|
|
2245
2241
|
class UpdateGlobalTableOutput(TypedDict, total=False):
|
|
2246
|
-
GlobalTableDescription:
|
|
2242
|
+
GlobalTableDescription: GlobalTableDescription | None
|
|
2247
2243
|
|
|
2248
2244
|
|
|
2249
2245
|
class UpdateGlobalTableSettingsInput(ServiceRequest):
|
|
2250
2246
|
GlobalTableName: TableName
|
|
2251
|
-
GlobalTableBillingMode:
|
|
2252
|
-
GlobalTableProvisionedWriteCapacityUnits:
|
|
2253
|
-
GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate:
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
]
|
|
2259
|
-
ReplicaSettingsUpdate: Optional[ReplicaSettingsUpdateList]
|
|
2247
|
+
GlobalTableBillingMode: BillingMode | None
|
|
2248
|
+
GlobalTableProvisionedWriteCapacityUnits: PositiveLongObject | None
|
|
2249
|
+
GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate: AutoScalingSettingsUpdate | None
|
|
2250
|
+
GlobalTableGlobalSecondaryIndexSettingsUpdate: (
|
|
2251
|
+
GlobalTableGlobalSecondaryIndexSettingsUpdateList | None
|
|
2252
|
+
)
|
|
2253
|
+
ReplicaSettingsUpdate: ReplicaSettingsUpdateList | None
|
|
2260
2254
|
|
|
2261
2255
|
|
|
2262
2256
|
class UpdateGlobalTableSettingsOutput(TypedDict, total=False):
|
|
2263
|
-
GlobalTableName:
|
|
2264
|
-
ReplicaSettings:
|
|
2257
|
+
GlobalTableName: TableName | None
|
|
2258
|
+
ReplicaSettings: ReplicaSettingsDescriptionList | None
|
|
2265
2259
|
|
|
2266
2260
|
|
|
2267
2261
|
class UpdateItemInput(ServiceRequest):
|
|
2268
2262
|
TableName: TableArn
|
|
2269
2263
|
Key: Key
|
|
2270
|
-
AttributeUpdates:
|
|
2271
|
-
Expected:
|
|
2272
|
-
ConditionalOperator:
|
|
2273
|
-
ReturnValues:
|
|
2274
|
-
ReturnConsumedCapacity:
|
|
2275
|
-
ReturnItemCollectionMetrics:
|
|
2276
|
-
UpdateExpression:
|
|
2277
|
-
ConditionExpression:
|
|
2278
|
-
ExpressionAttributeNames:
|
|
2279
|
-
ExpressionAttributeValues:
|
|
2280
|
-
ReturnValuesOnConditionCheckFailure:
|
|
2264
|
+
AttributeUpdates: AttributeUpdates | None
|
|
2265
|
+
Expected: ExpectedAttributeMap | None
|
|
2266
|
+
ConditionalOperator: ConditionalOperator | None
|
|
2267
|
+
ReturnValues: ReturnValue | None
|
|
2268
|
+
ReturnConsumedCapacity: ReturnConsumedCapacity | None
|
|
2269
|
+
ReturnItemCollectionMetrics: ReturnItemCollectionMetrics | None
|
|
2270
|
+
UpdateExpression: UpdateExpression | None
|
|
2271
|
+
ConditionExpression: ConditionExpression | None
|
|
2272
|
+
ExpressionAttributeNames: ExpressionAttributeNameMap | None
|
|
2273
|
+
ExpressionAttributeValues: ExpressionAttributeValueMap | None
|
|
2274
|
+
ReturnValuesOnConditionCheckFailure: ReturnValuesOnConditionCheckFailure | None
|
|
2281
2275
|
|
|
2282
2276
|
|
|
2283
2277
|
class UpdateItemOutput(TypedDict, total=False):
|
|
2284
|
-
Attributes:
|
|
2285
|
-
ConsumedCapacity:
|
|
2286
|
-
ItemCollectionMetrics:
|
|
2278
|
+
Attributes: AttributeMap | None
|
|
2279
|
+
ConsumedCapacity: ConsumedCapacity | None
|
|
2280
|
+
ItemCollectionMetrics: ItemCollectionMetrics | None
|
|
2287
2281
|
|
|
2288
2282
|
|
|
2289
2283
|
class UpdateKinesisStreamingConfiguration(TypedDict, total=False):
|
|
2290
|
-
ApproximateCreationDateTimePrecision:
|
|
2284
|
+
ApproximateCreationDateTimePrecision: ApproximateCreationDateTimePrecision | None
|
|
2291
2285
|
|
|
2292
2286
|
|
|
2293
2287
|
class UpdateKinesisStreamingDestinationInput(ServiceRequest):
|
|
2294
2288
|
TableName: TableArn
|
|
2295
2289
|
StreamArn: StreamArn
|
|
2296
|
-
UpdateKinesisStreamingConfiguration:
|
|
2290
|
+
UpdateKinesisStreamingConfiguration: UpdateKinesisStreamingConfiguration | None
|
|
2297
2291
|
|
|
2298
2292
|
|
|
2299
2293
|
class UpdateKinesisStreamingDestinationOutput(TypedDict, total=False):
|
|
2300
|
-
TableName:
|
|
2301
|
-
StreamArn:
|
|
2302
|
-
DestinationStatus:
|
|
2303
|
-
UpdateKinesisStreamingConfiguration:
|
|
2294
|
+
TableName: TableName | None
|
|
2295
|
+
StreamArn: StreamArn | None
|
|
2296
|
+
DestinationStatus: DestinationStatus | None
|
|
2297
|
+
UpdateKinesisStreamingConfiguration: UpdateKinesisStreamingConfiguration | None
|
|
2304
2298
|
|
|
2305
2299
|
|
|
2306
2300
|
class UpdateTableInput(ServiceRequest):
|
|
2307
|
-
AttributeDefinitions:
|
|
2301
|
+
AttributeDefinitions: AttributeDefinitions | None
|
|
2308
2302
|
TableName: TableArn
|
|
2309
|
-
BillingMode:
|
|
2310
|
-
ProvisionedThroughput:
|
|
2311
|
-
GlobalSecondaryIndexUpdates:
|
|
2312
|
-
StreamSpecification:
|
|
2313
|
-
SSESpecification:
|
|
2314
|
-
ReplicaUpdates:
|
|
2315
|
-
TableClass:
|
|
2316
|
-
DeletionProtectionEnabled:
|
|
2317
|
-
MultiRegionConsistency:
|
|
2318
|
-
GlobalTableWitnessUpdates:
|
|
2319
|
-
OnDemandThroughput:
|
|
2320
|
-
WarmThroughput:
|
|
2303
|
+
BillingMode: BillingMode | None
|
|
2304
|
+
ProvisionedThroughput: ProvisionedThroughput | None
|
|
2305
|
+
GlobalSecondaryIndexUpdates: GlobalSecondaryIndexUpdateList | None
|
|
2306
|
+
StreamSpecification: StreamSpecification | None
|
|
2307
|
+
SSESpecification: SSESpecification | None
|
|
2308
|
+
ReplicaUpdates: ReplicationGroupUpdateList | None
|
|
2309
|
+
TableClass: TableClass | None
|
|
2310
|
+
DeletionProtectionEnabled: DeletionProtectionEnabled | None
|
|
2311
|
+
MultiRegionConsistency: MultiRegionConsistency | None
|
|
2312
|
+
GlobalTableWitnessUpdates: GlobalTableWitnessGroupUpdateList | None
|
|
2313
|
+
OnDemandThroughput: OnDemandThroughput | None
|
|
2314
|
+
WarmThroughput: WarmThroughput | None
|
|
2321
2315
|
|
|
2322
2316
|
|
|
2323
2317
|
class UpdateTableOutput(TypedDict, total=False):
|
|
2324
|
-
TableDescription:
|
|
2318
|
+
TableDescription: TableDescription | None
|
|
2325
2319
|
|
|
2326
2320
|
|
|
2327
2321
|
class UpdateTableReplicaAutoScalingInput(ServiceRequest):
|
|
2328
|
-
GlobalSecondaryIndexUpdates:
|
|
2322
|
+
GlobalSecondaryIndexUpdates: GlobalSecondaryIndexAutoScalingUpdateList | None
|
|
2329
2323
|
TableName: TableArn
|
|
2330
|
-
ProvisionedWriteCapacityAutoScalingUpdate:
|
|
2331
|
-
ReplicaUpdates:
|
|
2324
|
+
ProvisionedWriteCapacityAutoScalingUpdate: AutoScalingSettingsUpdate | None
|
|
2325
|
+
ReplicaUpdates: ReplicaAutoScalingUpdateList | None
|
|
2332
2326
|
|
|
2333
2327
|
|
|
2334
2328
|
class UpdateTableReplicaAutoScalingOutput(TypedDict, total=False):
|
|
2335
|
-
TableAutoScalingDescription:
|
|
2329
|
+
TableAutoScalingDescription: TableAutoScalingDescription | None
|
|
2336
2330
|
|
|
2337
2331
|
|
|
2338
2332
|
class UpdateTimeToLiveInput(ServiceRequest):
|
|
@@ -2341,12 +2335,12 @@ class UpdateTimeToLiveInput(ServiceRequest):
|
|
|
2341
2335
|
|
|
2342
2336
|
|
|
2343
2337
|
class UpdateTimeToLiveOutput(TypedDict, total=False):
|
|
2344
|
-
TimeToLiveSpecification:
|
|
2338
|
+
TimeToLiveSpecification: TimeToLiveSpecification | None
|
|
2345
2339
|
|
|
2346
2340
|
|
|
2347
2341
|
class DynamodbApi:
|
|
2348
|
-
service = "dynamodb"
|
|
2349
|
-
version = "2012-08-10"
|
|
2342
|
+
service: str = "dynamodb"
|
|
2343
|
+
version: str = "2012-08-10"
|
|
2350
2344
|
|
|
2351
2345
|
@handler("BatchExecuteStatement")
|
|
2352
2346
|
def batch_execute_statement(
|