@@ -44,7 +44,7 @@ class EncryptedTablesCollectionManager(object):
44
44
# pylint: disable=too-few-public-methods,too-many-instance-attributes
45
45
"""Tables collection manager that provides :class:`EncryptedTable` objects.
46
46
47
- https://boto3.readthedocs.io/en/ latest/reference/services/dynamodb.html#DynamoDB.ServiceResource.tables
47
+ https://boto3.amazonaws.com/v1/documentation/api/ latest/reference/services/dynamodb/service-resource/tables .html
48
48
49
49
:param collection: Pre-configured boto3 DynamoDB table collection manager
50
50
:type collection: boto3.resources.collection.CollectionManager
@@ -137,7 +137,7 @@ class EncryptedResource(object):
137
137
This class provides a superset of the boto3 DynamoDB service resource API, so should
138
138
work as a drop-in replacement once configured.
139
139
140
- https://boto3.readthedocs.io/en/ latest/reference/services/dynamodb.html# service-resource
140
+ https://boto3.amazonaws.com/v1/documentation/api/ latest/reference/services/dynamodb/ service-resource/index.html
141
141
142
142
If you want to provide per-request cryptographic details, the ``batch_write_item``
143
143
and ``batch_get_item`` methods will also accept a ``crypto_config`` parameter, defining
@@ -217,7 +217,7 @@ def Table(self, name, **kwargs):
217
217
If any of the optional configuration values are not provided, the corresponding values
218
218
for this ``EncryptedResource`` will be used.
219
219
220
- https://boto3.readthedocs.io/en/ latest/reference/services/dynamodb.html#DynamoDB.ServiceResource .Table
220
+ https://boto3.amazonaws.com/v1/documentation/api/ latest/reference/services/dynamodb/table/index .html#DynamoDB.Table
221
221
222
222
:param name: The table name.
223
223
:param CryptographicMaterialsProvider materials_provider: Cryptographic materials
0 commit comments