-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdynamodb_execute_sql.py
49 lines (35 loc) · 1.03 KB
/
dynamodb_execute_sql.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'''
Sample partiQL sql statement template to query DynamoDB
'''
import boto3
from botocore.config import Config
#Set region config. It will overwrite region setting done as part of aws access key setup.
REGION_CONFIG = Config(
region_name = 'ap-southeast-2',
signature_version = 'v4',
retries = {
'max_attempts': 3
}
)
#sample sql example. Replace this with your own PartiQL SQL statment to query dynamoDB.
def sql_statement():
return {
"Statement": "SELECT uuid FROM workload"
}
def execute_statement():
dynamodb_client = boto3.client('dynamodb', config=REGION_CONFIG)
try:
input = sql_statement()
response = dynamodb_client.execute_statement(**input)
'''
Add your own action to perform on the result set.
'''
print(response['uuid'])
print("Statement executed successfully.")
except Exception as error:
print(error)
def main():
#Execute SQL statement
execute_statement()
if __name__ == "__main__":
main()