Skip to content

Commit 64acb4a

Browse files
author
Lucas McDonald
committed
m
1 parent 78b7f61 commit 64acb4a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/paginator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def paginate(self, **kwargs) -> Generator[dict, None, None]:
7373
7474
Args:
7575
**kwargs: Keyword arguments passed directly to the underlying DynamoDB paginator.
76+
7677
For a Scan operation, structure these arguments according to:
7778
7879
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/paginator/Scan.html

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/resource.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class EncryptedTablesCollectionManager(EncryptedBotoInterface):
3434
3535
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/service-resource/tables.html
3636
37-
All operations on this class will yield EncryptedTable objects.
37+
All operations on this class will yield ``EncryptedTable`` objects.
3838
"""
3939

4040
def __init__(
@@ -44,7 +44,7 @@ def __init__(
4444
encryption_config: DynamoDbTablesEncryptionConfig,
4545
):
4646
"""
47-
Create an EncryptedTablesCollectionManager object.
47+
Create an ``EncryptedTablesCollectionManager`` object.
4848
4949
Args:
5050
collection (CollectionManager): Pre-configured boto3 DynamoDB table collection manager
@@ -136,6 +136,7 @@ class EncryptedResource(EncryptedBotoInterface):
136136
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/service-resource/index.html
137137
138138
This class will encrypt/decrypt items for the following operations:
139+
139140
* ``batch_get_item``
140141
* ``batch_write_item``
141142

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/table.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class EncryptedTable(EncryptedBotoInterface):
4242
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/table/index.html
4343
4444
This class will encrypt/decrypt items for the following operations:
45+
4546
* ``put_item``
4647
* ``get_item``
4748
* ``query``
@@ -52,7 +53,7 @@ class EncryptedTable(EncryptedBotoInterface):
5253
Calling ``batch_writer()`` will return a ``BatchWriter`` that transparently encrypts batch write requests.
5354
5455
Any other operations on this class will defer to the underlying boto3 DynamoDB Table's implementation
55-
and will not be encrypted/decrypted.
56+
and will not be encrypted/decrypted.
5657
"""
5758

5859
def __init__(

0 commit comments

Comments
 (0)