We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c77cd commit 11c7a2bCopy full SHA for 11c7a2b
Examples/runtimes/python/DynamoDBEncryption/src/searchable_encryption/complex_example/client/example.py
@@ -2,6 +2,7 @@
2
from ..beacon_config import setup_beacon_config
3
from aws_database_encryption_sdk.encryptor.client import EncryptedClient
4
from .put_requests import put_all_items_to_table
5
+from .query_requests import run_queries
6
7
def run_example(
8
ddb_table_name: str,
@@ -24,4 +25,5 @@ def run_example(
24
25
)
26
27
put_all_items_to_table(ddb_table_name, encrypted_client)
28
+ run_queries(encrypted_client, ddb_table_name)
29
0 commit comments