Skip to content

Commit 7db2114

Browse files
authored
fix(docs): update broken links (#572)
1 parent 5e963f3 commit 7db2114

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: src/dynamodb_encryption_sdk/encrypted/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class EncryptedClient(object):
134134
This class provides a superset of the boto3 DynamoDB client API, so should work as
135135
a drop-in replacement once configured.
136136
137-
https://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#client
137+
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb.html#client
138138
139139
If you want to provide per-request cryptographic details, the ``put_item``, ``get_item``,
140140
``query``, ``scan``, ``batch_write_item``, and ``batch_get_item`` methods will also

Diff for: src/dynamodb_encryption_sdk/encrypted/resource.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class EncryptedTablesCollectionManager(object):
4444
# pylint: disable=too-few-public-methods,too-many-instance-attributes
4545
"""Tables collection manager that provides :class:`EncryptedTable` objects.
4646
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
4848
4949
:param collection: Pre-configured boto3 DynamoDB table collection manager
5050
:type collection: boto3.resources.collection.CollectionManager
@@ -137,7 +137,7 @@ class EncryptedResource(object):
137137
This class provides a superset of the boto3 DynamoDB service resource API, so should
138138
work as a drop-in replacement once configured.
139139
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
141141
142142
If you want to provide per-request cryptographic details, the ``batch_write_item``
143143
and ``batch_get_item`` methods will also accept a ``crypto_config`` parameter, defining
@@ -217,7 +217,7 @@ def Table(self, name, **kwargs):
217217
If any of the optional configuration values are not provided, the corresponding values
218218
for this ``EncryptedResource`` will be used.
219219
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
221221
222222
:param name: The table name.
223223
:param CryptographicMaterialsProvider materials_provider: Cryptographic materials

Diff for: src/dynamodb_encryption_sdk/encrypted/table.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class EncryptedTable(object):
6060
This class provides a superset of the boto3 DynamoDB Table API, so should work as
6161
a drop-in replacement once configured.
6262
63-
https://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#table
63+
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/table/index.html#DynamoDB.Table
6464
6565
If you want to provide per-request cryptographic details, the ``put_item``, ``get_item``,
6666
``query``, and ``scan`` methods will also accept a ``crypto_config`` parameter, defining
@@ -158,7 +158,7 @@ def update_item(self, **kwargs):
158158
def batch_writer(self, overwrite_by_pkeys=None):
159159
"""Create a batch writer object.
160160
161-
https://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#DynamoDB.Table.batch_writer
161+
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/table/batch_writer.html
162162
163163
:type overwrite_by_pkeys: list(string)
164164
:param overwrite_by_pkeys: De-duplicate request items in buffer if match new request

0 commit comments

Comments
 (0)