File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
DynamoDbEncryption/runtimes/python/test/integ/encrypted
Examples/runtimes/python/DynamoDBEncryption/src/basic_put_get_example Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1
1
import boto3
2
2
import pytest
3
- from boto3 .dynamodb .types import TypeDeserializer , TypeSerializer
4
3
5
4
from aws_dbesdk_dynamodb .encrypted .table import EncryptedTable
6
5
16
15
basic_scan_request_dict ,
17
16
)
18
17
19
- serializer = TypeSerializer ()
20
- deserializer = TypeDeserializer ()
21
-
22
18
23
19
def encrypted_table ():
24
20
"""Create an encrypted table."""
Original file line number Diff line number Diff line change 20
20
)
21
21
from aws_cryptographic_material_providers .mpl .references import IKeyring
22
22
from aws_dbesdk_dynamodb .encrypted .table import EncryptedTable
23
- from aws_dbesdk_dynamodb .smithygenerated . aws_cryptography_dbencryptionsdk_dynamodb . models import (
23
+ from aws_dbesdk_dynamodb .structures . dynamodb import (
24
24
DynamoDbTableEncryptionConfig ,
25
25
DynamoDbTablesEncryptionConfig ,
26
26
)
27
- from aws_dbesdk_dynamodb .smithygenerated . aws_cryptography_dbencryptionsdk_structuredencryption . models import (
27
+ from aws_dbesdk_dynamodb .structures . structured_encryption import (
28
28
CryptoAction ,
29
29
)
30
30
You can’t perform that action at this time.
0 commit comments