Type annotations for aiobotocore.DynamoDB 2.1.0 service generated by mypy-boto3-builder 6.4.2
Project description
mypy-boto3-dynamodb
Type annotations for boto3.DynamoDB 1.20.47 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 6.4.2.
More information can be found on boto3-stubs page and in types-aiobotocore-dynamodb docs
See how it helps to find and fix potential bugs:
- mypy-boto3-dynamodb
How to install
VSCode extension
Add
AWS Boto3
extension to your VSCode and run AWS boto3: Quick Start
command.
Click Modify
and select boto3 common
and DynamoDB
.
From PyPI with pip
Install types-aiobotocore
for DynamoDB
service.
# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[dynamodb]'
# Lite version does not provide session.create_client overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aiobotocore-lite[dynamodb]'
# standalone installation
python -m pip install types-aiobotocore-dynamodb
From conda-forge
Installing mypy-boto3-dynamodb
from the conda-forge
channel can be achieved
by adding conda-forge
to your channels with:
conda config --add channels conda-forge
conda config --set channel_priority strict
Once the conda-forge
channel has been enabled, mypy-boto3-dynamodb
can be
installed with:
conda install mypy-boto3-dynamodb
It is possible to list all of the versions of mypy-boto3-dynamodb
available
on your platform with:
conda search mypy-boto3-dynamodb --channel conda-forge
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylance
as your Python Language Server - Install
types-aiobotocore[dynamodb]
in your environment:python -m pip install 'types-aiobotocore[dynamodb]'
Both type checking and auto-complete should work for DynamoDB
service. No
explicit type annotations required, write your boto3
code as usual.
PyCharm
- Install
types-aiobotocore[dynamodb]
in your environment:python -m pip install 'types-aiobotocore[dynamodb]'
Both type checking and auto-complete should work for DynamoDB
service. No
explicit type annotations required, write your aiobotocore
code as usual.
Auto-complete can be slow on big projects or if you have a lot of installed
types-aiobotocore
submodules.
Other IDEs
Not tested, but as long as your IDE supports mypy
or pyright
, everything
should work.
mypy
- Install
mypy
:python -m pip install mypy
- Install
types-aiobotocore[dynamodb]
in your environment:python -m pip install 'types-aiobotocore[dynamodb]'
- Run
mypy
as usual
Type checking should work for DynamoDB
service. No explicit type annotations
required, write your aiobotocore
code as usual.
pyright
- Install
pyright
:yarn global add pyright
- Install
types-aiobotocore[dynamodb]
in your environment:python -m pip install 'types-aiobotocore[dynamodb]'
- Optionally, you can install
boto3-stubs
totypings
folder.
Type checking should work for DynamoDB
service. No explicit type annotations
required, write your aiobotocore
code as usual.
Explicit type annotations
Client annotations
DynamoDBClient
provides annotations for session.create_client("dynamodb")
.
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb import DynamoDBClient
session = get_session()
async with session.create_client("dynamodb") as client:
client: DynamoDBClient
# now client usage is checked by mypy and IDE should provide code auto-complete
Paginators annotations
types_aiobotocore_dynamodb.paginator
module contains type annotations for all
paginators.
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb import DynamoDBClient
from types_aiobotocore_dynamodb.paginator import (
ListBackupsPaginator,
ListTablesPaginator,
ListTagsOfResourcePaginator,
QueryPaginator,
ScanPaginator,
)
session = get_session()
async with session.create_client("dynamodb") as client:
client: DynamoDBClient
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_backups_paginator: ListBackupsPaginator = client.get_paginator("list_backups")
list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
list_tags_of_resource_paginator: ListTagsOfResourcePaginator = client.get_paginator("list_tags_of_resource")
query_paginator: QueryPaginator = client.get_paginator("query")
scan_paginator: ScanPaginator = client.get_paginator("scan")
```
### Waiters annotations
`types_aiobotocore_dynamodb.waiter` module contains type annotations for all waiters.
```python
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb.client import DynamoDBClient
from types_aiobotocore_dynamodb.waiter import (
TableExistsWaiter,
TableNotExistsWaiter,
)
session = get_session()
async with session.create_client("dynamodb") as client:
client: DynamoDBClient
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
table_exists_waiter: TableExistsWaiter = client.get_waiter("table_exists")
table_not_exists_waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")
```
<a id="service-resource-annotations"></a>
### Service Resource annotations
`DynamoDBServiceResource` provides annotations for `aiobotocore.resource("dynamodb")`.
```python
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb import DynamoDBServiceResource
session = get_session()
async with session.resource("dynamodb") as resource:
resource: DynamoDBServiceResource
# now resource usage is checked by mypy and IDE should provide code auto-complete
Other resources annotations
types_aiobotocore_dynamodb.service_resource
module contains type annotations
for all resources.
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb import DynamoDBServiceResource
from types_aiobotocore_dynamodb.service_resource import (
Table,
)
session = get_session()
async with session.resource("dynamodb") as resource:
resource: DynamoDBServiceResource
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
my_table: Table = resource.Table(...)
Collections annotations
types_aiobotocore_dynamodb.service_resource
module contains type annotations
for all DynamoDBServiceResource
collections.
from aiobotocore.session import get_session
from types_aiobotocore_dynamodb import DynamoDBServiceResource
from types_aiobotocore_dynamodb.service_resource import (
ServiceResourceTablesCollection,
)
session = get_session()
async with session.resource("dynamodb") as resource:
resource: DynamoDBServiceResource
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
tables: dynamodb_resources.ServiceResourceTablesCollection = resource.tables
Literals
types_aiobotocore_dynamodb.literals
module contains literals extracted from
shapes that can be used in user code for type checking.
from types_aiobotocore_dynamodb.literals import (
AttributeActionType,
BackupStatusType,
BackupTypeFilterType,
BackupTypeType,
BatchStatementErrorCodeEnumType,
BillingModeType,
ComparisonOperatorType,
ConditionalOperatorType,
ContinuousBackupsStatusType,
ContributorInsightsActionType,
ContributorInsightsStatusType,
DestinationStatusType,
ExportFormatType,
ExportStatusType,
GlobalTableStatusType,
IndexStatusType,
KeyTypeType,
ListBackupsPaginatorName,
ListTablesPaginatorName,
ListTagsOfResourcePaginatorName,
PointInTimeRecoveryStatusType,
ProjectionTypeType,
QueryPaginatorName,
ReplicaStatusType,
ReturnConsumedCapacityType,
ReturnItemCollectionMetricsType,
ReturnValueType,
ReturnValuesOnConditionCheckFailureType,
S3SseAlgorithmType,
SSEStatusType,
SSETypeType,
ScalarAttributeTypeType,
ScanPaginatorName,
SelectType,
StreamViewTypeType,
TableClassType,
TableExistsWaiterName,
TableNotExistsWaiterName,
TableStatusType,
TimeToLiveStatusType,
ServiceName,
PaginatorName,
WaiterName,
)
def check_value(value: AttributeActionType) -> bool:
...
Typed dictionaries
types_aiobotocore_dynamodb.type_defs
module contains structures and shapes
assembled to typed dictionaries for additional type checking.
from types_aiobotocore_dynamodb.type_defs import (
ArchivalSummaryResponseMetadataTypeDef,
ArchivalSummaryTypeDef,
AttributeDefinitionTypeDef,
AttributeValueUpdateTypeDef,
AutoScalingPolicyDescriptionTypeDef,
AutoScalingPolicyUpdateTypeDef,
AutoScalingSettingsDescriptionTypeDef,
AutoScalingSettingsUpdateTypeDef,
AutoScalingTargetTrackingScalingPolicyConfigurationDescriptionTypeDef,
AutoScalingTargetTrackingScalingPolicyConfigurationUpdateTypeDef,
BackupDescriptionTypeDef,
BackupDetailsTypeDef,
BackupSummaryTypeDef,
BatchExecuteStatementInputRequestTypeDef,
BatchExecuteStatementOutputTypeDef,
BatchGetItemInputRequestTypeDef,
BatchGetItemInputServiceResourceTypeDef,
BatchGetItemOutputTypeDef,
BatchStatementErrorTypeDef,
BatchStatementRequestTypeDef,
BatchStatementResponseTypeDef,
BatchWriteItemInputRequestTypeDef,
BatchWriteItemInputServiceResourceTypeDef,
BatchWriteItemOutputTypeDef,
BillingModeSummaryResponseMetadataTypeDef,
BillingModeSummaryTypeDef,
CapacityTypeDef,
ConditionCheckTypeDef,
ConditionTypeDef,
ConsumedCapacityTypeDef,
ContinuousBackupsDescriptionTypeDef,
ContributorInsightsSummaryTypeDef,
CreateBackupInputRequestTypeDef,
CreateBackupOutputTypeDef,
CreateGlobalSecondaryIndexActionTypeDef,
CreateGlobalTableInputRequestTypeDef,
CreateGlobalTableOutputTypeDef,
CreateReplicaActionTypeDef,
CreateReplicationGroupMemberActionTypeDef,
CreateTableInputRequestTypeDef,
CreateTableInputServiceResourceTypeDef,
CreateTableOutputTypeDef,
DeleteBackupInputRequestTypeDef,
DeleteBackupOutputTypeDef,
DeleteGlobalSecondaryIndexActionTypeDef,
DeleteItemInputRequestTypeDef,
DeleteItemInputTableTypeDef,
DeleteItemOutputTypeDef,
DeleteReplicaActionTypeDef,
DeleteReplicationGroupMemberActionTypeDef,
DeleteRequestTypeDef,
DeleteTableInputRequestTypeDef,
DeleteTableOutputTypeDef,
DeleteTypeDef,
DescribeBackupInputRequestTypeDef,
DescribeBackupOutputTypeDef,
DescribeContinuousBackupsInputRequestTypeDef,
DescribeContinuousBackupsOutputTypeDef,
DescribeContributorInsightsInputRequestTypeDef,
DescribeContributorInsightsOutputTypeDef,
DescribeEndpointsResponseTypeDef,
DescribeExportInputRequestTypeDef,
DescribeExportOutputTypeDef,
DescribeGlobalTableInputRequestTypeDef,
DescribeGlobalTableOutputTypeDef,
DescribeGlobalTableSettingsInputRequestTypeDef,
DescribeGlobalTableSettingsOutputTypeDef,
DescribeKinesisStreamingDestinationInputRequestTypeDef,
DescribeKinesisStreamingDestinationOutputTypeDef,
DescribeLimitsOutputTypeDef,
DescribeTableInputRequestTypeDef,
DescribeTableOutputTypeDef,
DescribeTableReplicaAutoScalingInputRequestTypeDef,
DescribeTableReplicaAutoScalingOutputTypeDef,
DescribeTimeToLiveInputRequestTypeDef,
DescribeTimeToLiveOutputTypeDef,
EndpointTypeDef,
ExecuteStatementInputRequestTypeDef,
ExecuteStatementOutputTypeDef,
ExecuteTransactionInputRequestTypeDef,
ExecuteTransactionOutputTypeDef,
ExpectedAttributeValueTypeDef,
ExportDescriptionTypeDef,
ExportSummaryTypeDef,
ExportTableToPointInTimeInputRequestTypeDef,
ExportTableToPointInTimeOutputTypeDef,
FailureExceptionTypeDef,
GetItemInputRequestTypeDef,
GetItemInputTableTypeDef,
GetItemOutputTypeDef,
GetTypeDef,
GlobalSecondaryIndexAutoScalingUpdateTypeDef,
GlobalSecondaryIndexDescriptionTypeDef,
GlobalSecondaryIndexInfoTypeDef,
GlobalSecondaryIndexTypeDef,
GlobalSecondaryIndexUpdateTypeDef,
GlobalTableDescriptionTypeDef,
GlobalTableGlobalSecondaryIndexSettingsUpdateTypeDef,
GlobalTableTypeDef,
ItemCollectionMetricsTypeDef,
ItemResponseTypeDef,
KeySchemaElementTypeDef,
KeysAndAttributesTypeDef,
KinesisDataStreamDestinationTypeDef,
KinesisStreamingDestinationInputRequestTypeDef,
KinesisStreamingDestinationOutputTypeDef,
ListBackupsInputRequestTypeDef,
ListBackupsOutputTypeDef,
ListContributorInsightsInputRequestTypeDef,
ListContributorInsightsOutputTypeDef,
ListExportsInputRequestTypeDef,
ListExportsOutputTypeDef,
ListGlobalTablesInputRequestTypeDef,
ListGlobalTablesOutputTypeDef,
ListTablesInputRequestTypeDef,
ListTablesOutputTypeDef,
ListTagsOfResourceInputRequestTypeDef,
ListTagsOfResourceOutputTypeDef,
LocalSecondaryIndexDescriptionTypeDef,
LocalSecondaryIndexInfoTypeDef,
LocalSecondaryIndexTypeDef,
PaginatorConfigTypeDef,
ParameterizedStatementTypeDef,
PointInTimeRecoveryDescriptionTypeDef,
PointInTimeRecoverySpecificationTypeDef,
ProjectionTypeDef,
ProvisionedThroughputDescriptionResponseMetadataTypeDef,
ProvisionedThroughputDescriptionTypeDef,
ProvisionedThroughputOverrideTypeDef,
ProvisionedThroughputTypeDef,
PutItemInputRequestTypeDef,
PutItemInputTableTypeDef,
PutItemOutputTypeDef,
PutRequestTypeDef,
PutTypeDef,
QueryInputRequestTypeDef,
QueryInputTableTypeDef,
QueryOutputTypeDef,
ReplicaAutoScalingDescriptionTypeDef,
ReplicaAutoScalingUpdateTypeDef,
ReplicaDescriptionTypeDef,
ReplicaGlobalSecondaryIndexAutoScalingDescriptionTypeDef,
ReplicaGlobalSecondaryIndexAutoScalingUpdateTypeDef,
ReplicaGlobalSecondaryIndexDescriptionTypeDef,
ReplicaGlobalSecondaryIndexSettingsDescriptionTypeDef,
ReplicaGlobalSecondaryIndexSettingsUpdateTypeDef,
ReplicaGlobalSecondaryIndexTypeDef,
ReplicaSettingsDescriptionTypeDef,
ReplicaSettingsUpdateTypeDef,
ReplicaTypeDef,
ReplicaUpdateTypeDef,
ReplicationGroupUpdateTypeDef,
ResponseMetadataTypeDef,
RestoreSummaryResponseMetadataTypeDef,
RestoreSummaryTypeDef,
RestoreTableFromBackupInputRequestTypeDef,
RestoreTableFromBackupOutputTypeDef,
RestoreTableToPointInTimeInputRequestTypeDef,
RestoreTableToPointInTimeOutputTypeDef,
SSEDescriptionResponseMetadataTypeDef,
SSEDescriptionTypeDef,
SSESpecificationTypeDef,
ScanInputRequestTypeDef,
ScanInputTableTypeDef,
ScanOutputTypeDef,
ServiceResourceTableRequestTypeDef,
SourceTableDetailsTypeDef,
SourceTableFeatureDetailsTypeDef,
StreamSpecificationResponseMetadataTypeDef,
StreamSpecificationTypeDef,
TableAutoScalingDescriptionTypeDef,
TableBatchWriterRequestTypeDef,
TableClassSummaryResponseMetadataTypeDef,
TableClassSummaryTypeDef,
TableDescriptionTypeDef,
TagResourceInputRequestTypeDef,
TagTypeDef,
TimeToLiveDescriptionTypeDef,
TimeToLiveSpecificationTypeDef,
TransactGetItemTypeDef,
TransactGetItemsInputRequestTypeDef,
TransactGetItemsOutputTypeDef,
TransactWriteItemTypeDef,
TransactWriteItemsInputRequestTypeDef,
TransactWriteItemsOutputTypeDef,
UntagResourceInputRequestTypeDef,
UpdateContinuousBackupsInputRequestTypeDef,
UpdateContinuousBackupsOutputTypeDef,
UpdateContributorInsightsInputRequestTypeDef,
UpdateContributorInsightsOutputTypeDef,
UpdateGlobalSecondaryIndexActionTypeDef,
UpdateGlobalTableInputRequestTypeDef,
UpdateGlobalTableOutputTypeDef,
UpdateGlobalTableSettingsInputRequestTypeDef,
UpdateGlobalTableSettingsOutputTypeDef,
UpdateItemInputRequestTypeDef,
UpdateItemInputTableTypeDef,
UpdateItemOutputTypeDef,
UpdateReplicationGroupMemberActionTypeDef,
UpdateTableInputRequestTypeDef,
UpdateTableInputTableTypeDef,
UpdateTableOutputTypeDef,
UpdateTableReplicaAutoScalingInputRequestTypeDef,
UpdateTableReplicaAutoScalingOutputTypeDef,
UpdateTimeToLiveInputRequestTypeDef,
UpdateTimeToLiveOutputTypeDef,
UpdateTypeDef,
WaiterConfigTypeDef,
WriteRequestTypeDef,
)
def get_structure() -> ArchivalSummaryResponseMetadataTypeDef:
return {
...
}
Versioning
types-aiobotocore-dynamodb
version is the same as related boto3
version and
follows PEP 440 format.
Documentation
All type annotations can be found in types-aiobotocore-dynamodb docs
Support and contributing
This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for types-aiobotocore-dynamodb-2.1.0.post1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4a2b4eb1a3181c0bbd5c381a5296aa2dabe9e0cb42e3b6e5f42081e399e978f |
|
MD5 | ec903d7d47ca20d5ffdae55cd64fa7be |
|
BLAKE2b-256 | 16e5746c36d5db887a975971e3b07d0ffb4f31e1ad4f666835b308eb2756e61e |
Hashes for types_aiobotocore_dynamodb-2.1.0.post1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f15e4b8cbca81f6af9013bb1e573e4765e76cfd5c82d34b87d11d1f7ba681ba |
|
MD5 | 093ebe43ad154c070a6d1b8cec54fc9e |
|
BLAKE2b-256 | 6d089788df44bc1e29daa989445e0e955dd8a17f29ee6cfd827844b000a2a364 |