@@ -142,15 +142,15 @@ def basic_batch_execute_statement_request_plaintext_table():
142
142
143
143
# No exhaustive requests are intended to be able to be used as real requests.
144
144
# 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 .
146
146
147
147
148
148
def base_exhaustive_put_item_request (item ):
149
149
"""
150
150
Base structure for exhaustive put_item requests.
151
151
This is not intended to be able to be used as a real request.
152
152
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 .
154
154
"""
155
155
return {
156
156
# Expected is legacy, but still in the boto3 docs.
@@ -174,7 +174,7 @@ def base_exhaustive_get_item_request(item):
174
174
Base structure for exhaustive get_item requests.
175
175
This is not intended to be able to be used as a real request.
176
176
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 .
178
178
"""
179
179
return {
180
180
"ReturnConsumedCapacity" : "TOTAL" ,
@@ -196,7 +196,7 @@ def base_exhaustive_delete_item_request(item):
196
196
Base structure for exhaustive delete_item requests.
197
197
This is not intended to be able to be used as a real request.
198
198
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 .
200
200
"""
201
201
return {
202
202
"ReturnConsumedCapacity" : "TOTAL" ,
@@ -211,7 +211,7 @@ def base_exhaustive_query_request(item):
211
211
Base structure for exhaustive query requests.
212
212
This is not intended to be able to be used as a real request.
213
213
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 .
215
215
"""
216
216
return {
217
217
"IndexName" : "index_name" ,
@@ -240,7 +240,7 @@ def base_exhaustive_scan_request(item):
240
240
Base structure for exhaustive scan requests.
241
241
This is not intended to be able to be used as a real request.
242
242
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 .
244
244
"""
245
245
return {
246
246
"IndexName" : "index_name" ,
@@ -310,7 +310,7 @@ def exhaustive_query_request_ddb(item):
310
310
Query request with all possible parameters.
311
311
This is not intended to be able to be used as a real request.
312
312
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 .
314
314
"""
315
315
base = basic_query_request_ddb (item )
316
316
additional_keys = base_exhaustive_query_request (item )
@@ -427,7 +427,7 @@ def exhaustive_put_item_request_dict(item):
427
427
Get a put_item request in dict format for any item.
428
428
This is not intended to be able to be used as a real request.
429
429
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 .
431
431
"""
432
432
base = basic_put_item_request_dict (item )
433
433
# Replace the default ConditionExpression string with a ConditionExpression object
@@ -452,7 +452,7 @@ def exhaustive_get_item_request_dict(item):
452
452
Get a get_item request in dict format for any item.
453
453
This is not intended to be able to be used as a real request.
454
454
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 .
456
456
"""
457
457
base = basic_get_item_request_dict (item )
458
458
additional_keys = base_exhaustive_get_item_request (item )
@@ -478,7 +478,7 @@ def exhaustive_query_request_dict(item):
478
478
Get a query request in dict format for any item.
479
479
This is not intended to be able to be used as a real request.
480
480
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 .
482
482
"""
483
483
base = basic_query_request_dict (item )
484
484
additional_keys = base_exhaustive_query_request (item )
@@ -495,7 +495,7 @@ def exhaustive_scan_request_dict(item):
495
495
Get a scan request in dict format for any item.
496
496
This is not intended to be able to be used as a real request.
497
497
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 .
499
499
"""
500
500
base = basic_scan_request_dict (item )
501
501
additional_keys = base_exhaustive_scan_request (item )
0 commit comments