Skip to content

Commit 22e30c2

Browse files
author
Lucas McDonald
committed
m
1 parent d0d58e3 commit 22e30c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/internal/resource_to_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,19 +134,19 @@ def batch_execute_statement_request(self, batch_execute_statement_request):
134134
return self.boto3_converter.BatchExecuteStatementInput(batch_execute_statement_request)
135135

136136
def batch_execute_statement_response(self, batch_execute_statement_response):
137-
return self.boto3_converter.BatchExecuteStatementOutput(batch_execute_statement_response)
137+
raise NotImplementedError("batch_execute_statement response handling is not implemented")
138138

139139
def execute_statement_request(self, execute_statement_request):
140140
return self.boto3_converter.ExecuteStatementInput(execute_statement_request)
141141

142142
def execute_statement_response(self, execute_statement_response):
143-
return self.boto3_converter.ExecuteStatementOutput(execute_statement_response)
143+
raise NotImplementedError("execute_statement response handling is not implemented")
144144

145145
def execute_transaction_request(self, execute_transaction_request):
146146
return self.boto3_converter.ExecuteTransactionInput(execute_transaction_request)
147147

148148
def execute_transaction_response(self, execute_transaction_response):
149-
return self.boto3_converter.ExecuteTransactionOutput(execute_transaction_response)
149+
raise NotImplementedError("execute_transaction response handling is not implemented")
150150

151151
def scan_response(self, scan_response):
152152
return self.boto3_converter.ScanOutput(scan_response)

0 commit comments

Comments
 (0)