@@ -142,15 +142,15 @@ def basic_batch_execute_statement_request_plaintext_table():
142142
143143# No exhaustive requests are intended to be able to be used as real requests.
144144# Some parameters conflict with each other when sent to DynamoDB.
145- # These are only intended to test the conversion of the structure from client to resource format .
145+ # These are only intended to test the conversion of the structure between client and resource formats .
146146
147147
148148def base_exhaustive_put_item_request (item ):
149149 """
150150 Base structure for exhaustive put_item requests.
151151 This is not intended to be able to be used as a real request.
152152 Some parameters conflict with each other when sent to DynamoDB.
153- This is only intended to test the conversion of the request from client to resource format .
153+ This is only intended to test the conversion of the request between client and resource formats .
154154 """
155155 return {
156156 # Expected is legacy, but still in the boto3 docs.
@@ -174,7 +174,7 @@ def base_exhaustive_get_item_request(item):
174174 Base structure for exhaustive get_item requests.
175175 This is not intended to be able to be used as a real request.
176176 Some parameters conflict with each other when sent to DynamoDB.
177- This is only intended to test the conversion of the request from client to resource format .
177+ This is only intended to test the conversion of the request between client and resource formats .
178178 """
179179 return {
180180 "ReturnConsumedCapacity" : "TOTAL" ,
@@ -196,7 +196,7 @@ def base_exhaustive_delete_item_request(item):
196196 Base structure for exhaustive delete_item requests.
197197 This is not intended to be able to be used as a real request.
198198 Some parameters conflict with each other when sent to DynamoDB.
199- This is only intended to test the conversion of the request from client to resource format .
199+ This is only intended to test the conversion of the request between client and resource formats .
200200 """
201201 return {
202202 "ReturnConsumedCapacity" : "TOTAL" ,
@@ -211,7 +211,7 @@ def base_exhaustive_query_request(item):
211211 Base structure for exhaustive query requests.
212212 This is not intended to be able to be used as a real request.
213213 Some parameters conflict with each other when sent to DynamoDB.
214- This is only intended to test the conversion of the request from client to resource format .
214+ This is only intended to test the conversion of the request between client and resource formats .
215215 """
216216 return {
217217 "IndexName" : "index_name" ,
@@ -240,7 +240,7 @@ def base_exhaustive_scan_request(item):
240240 Base structure for exhaustive scan requests.
241241 This is not intended to be able to be used as a real request.
242242 Some parameters conflict with each other when sent to DynamoDB.
243- This is only intended to test the conversion of the request from client to resource format .
243+ This is only intended to test the conversion of the request between client and resource formats .
244244 """
245245 return {
246246 "IndexName" : "index_name" ,
@@ -310,7 +310,7 @@ def exhaustive_query_request_ddb(item):
310310 Query request with all possible parameters.
311311 This is not intended to be able to be used as a real request.
312312 Some parameters conflict with each other when sent to DynamoDB.
313- This is only intended to test the conversion of the request from client to resource format .
313+ This is only intended to test the conversion of the request between client and resource formats .
314314 """
315315 base = basic_query_request_ddb (item )
316316 additional_keys = base_exhaustive_query_request (item )
@@ -427,7 +427,7 @@ def exhaustive_put_item_request_dict(item):
427427 Get a put_item request in dict format for any item.
428428 This is not intended to be able to be used as a real request.
429429 Some parameters conflict with each other when sent to DynamoDB.
430- This is only intended to test the conversion of the request from client to resource format .
430+ This is only intended to test the conversion of the request between client and resource formats .
431431 """
432432 base = basic_put_item_request_dict (item )
433433 # Replace the default ConditionExpression string with a ConditionExpression object
@@ -452,7 +452,7 @@ def exhaustive_get_item_request_dict(item):
452452 Get a get_item request in dict format for any item.
453453 This is not intended to be able to be used as a real request.
454454 Some parameters conflict with each other when sent to DynamoDB.
455- This is only intended to test the conversion of the request from client to resource format .
455+ This is only intended to test the conversion of the request between client and resource formats .
456456 """
457457 base = basic_get_item_request_dict (item )
458458 additional_keys = base_exhaustive_get_item_request (item )
@@ -478,7 +478,7 @@ def exhaustive_query_request_dict(item):
478478 Get a query request in dict format for any item.
479479 This is not intended to be able to be used as a real request.
480480 Some parameters conflict with each other when sent to DynamoDB.
481- This is only intended to test the conversion of the request from client to resource format .
481+ This is only intended to test the conversion of the request between client and resource formats .
482482 """
483483 base = basic_query_request_dict (item )
484484 additional_keys = base_exhaustive_query_request (item )
@@ -495,7 +495,7 @@ def exhaustive_scan_request_dict(item):
495495 Get a scan request in dict format for any item.
496496 This is not intended to be able to be used as a real request.
497497 Some parameters conflict with each other when sent to DynamoDB.
498- This is only intended to test the conversion of the request from client to resource format .
498+ This is only intended to test the conversion of the request between client and resource formats .
499499 """
500500 base = basic_scan_request_dict (item )
501501 additional_keys = base_exhaustive_scan_request (item )
0 commit comments