Skip to content

Commit 9aa4a48

Browse files
author
Lucas McDonald
committed
sync
1 parent 042e4b8 commit 9aa4a48

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

DynamoDbEncryption/runtimes/python/test/integ/encrypted/test_table.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import boto3
22
import pytest
3-
from boto3.dynamodb.types import TypeDeserializer, TypeSerializer
43

54
from aws_dbesdk_dynamodb.encrypted.table import EncryptedTable
65

@@ -16,9 +15,6 @@
1615
basic_scan_request_dict,
1716
)
1817

19-
serializer = TypeSerializer()
20-
deserializer = TypeDeserializer()
21-
2218

2319
def encrypted_table():
2420
"""Create an encrypted table."""

Examples/runtimes/python/DynamoDBEncryption/src/basic_put_get_example/with_encrypted_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
)
2121
from aws_cryptographic_material_providers.mpl.references import IKeyring
2222
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 (
2424
DynamoDbTableEncryptionConfig,
2525
DynamoDbTablesEncryptionConfig,
2626
)
27-
from aws_dbesdk_dynamodb.smithygenerated.aws_cryptography_dbencryptionsdk_structuredencryption.models import (
27+
from aws_dbesdk_dynamodb.structures.structured_encryption import (
2828
CryptoAction,
2929
)
3030

0 commit comments

Comments
 (0)