boto3-refresh-session 5.1.6__tar.gz → 5.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/PKG-INFO +4 -4
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/README.md +3 -3
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/__init__.py +1 -1
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/pyproject.toml +1 -1
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/LICENSE +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/NOTICE +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/exceptions.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/__init__.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/custom.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/iot/__init__.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/iot/core.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/iot/x509.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/sts.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/session.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/__init__.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/internal.py +0 -0
- {boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/typing.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: boto3-refresh-session
|
3
|
-
Version: 5.1.
|
3
|
+
Version: 5.1.7
|
4
4
|
Summary: A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically.
|
5
5
|
License: MIT
|
6
6
|
Keywords: boto3,botocore,aws,sts,credentials,token,refresh,iot,x509,mqtt
|
@@ -242,7 +242,7 @@ pip install boto3-refresh-session
|
|
242
242
|
|
243
243
|
### STS
|
244
244
|
|
245
|
-
Most developers use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically. For additional information on the exact parameters that `RefreshableSession` takes for STS, [check this documentation](https://
|
245
|
+
Most developers use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically. For additional information on the exact parameters that `RefreshableSession` takes for STS, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.sts.STSRefreshableSession.html).
|
246
246
|
|
247
247
|
```python
|
248
248
|
import boto3_refresh_session as brs
|
@@ -283,7 +283,7 @@ pip install boto3-refresh-session
|
|
283
283
|
|
284
284
|
### Custom
|
285
285
|
|
286
|
-
If you have a highly sophisticated, novel, or idiosyncratic authentication flow not included in boto3-refresh-session then you will need to provide your own custom temporary credentials callable object. `RefreshableSession` accepts custom credentials callable objects, as shown below. For additional information on the exact parameters that `RefreshableSession` takes for custom authentication flows, [check this documentation](https://
|
286
|
+
If you have a highly sophisticated, novel, or idiosyncratic authentication flow not included in boto3-refresh-session then you will need to provide your own custom temporary credentials callable object. `RefreshableSession` accepts custom credentials callable objects, as shown below. For additional information on the exact parameters that `RefreshableSession` takes for custom authentication flows, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.custom.CustomRefreshableSession.html#boto3_refresh_session.methods.custom.CustomRefreshableSession).
|
287
287
|
|
288
288
|
```python
|
289
289
|
# create (or import) your custom credential method
|
@@ -316,7 +316,7 @@ pip install boto3-refresh-session
|
|
316
316
|
|
317
317
|
AWS IoT Core can vend temporary AWS credentials through the **credentials provider** when you connect with an X.509 certificate and a **role alias**. `boto3-refresh-session` makes this flow seamless by automatically refreshing credentials over **mTLS**.
|
318
318
|
|
319
|
-
For additional information on the exact parameters that `IOTX509RefreshableSession` takes, [check this documentation](https://
|
319
|
+
For additional information on the exact parameters that `IOTX509RefreshableSession` takes, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.iot.IOTX509RefreshableSession.html).
|
320
320
|
|
321
321
|
### PEM file
|
322
322
|
|
@@ -215,7 +215,7 @@ pip install boto3-refresh-session
|
|
215
215
|
|
216
216
|
### STS
|
217
217
|
|
218
|
-
Most developers use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically. For additional information on the exact parameters that `RefreshableSession` takes for STS, [check this documentation](https://
|
218
|
+
Most developers use AWS STS to assume an IAM role and return a set of temporary security credentials. boto3-refresh-session can be used to ensure those temporary credentials refresh automatically. For additional information on the exact parameters that `RefreshableSession` takes for STS, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.sts.STSRefreshableSession.html).
|
219
219
|
|
220
220
|
```python
|
221
221
|
import boto3_refresh_session as brs
|
@@ -256,7 +256,7 @@ pip install boto3-refresh-session
|
|
256
256
|
|
257
257
|
### Custom
|
258
258
|
|
259
|
-
If you have a highly sophisticated, novel, or idiosyncratic authentication flow not included in boto3-refresh-session then you will need to provide your own custom temporary credentials callable object. `RefreshableSession` accepts custom credentials callable objects, as shown below. For additional information on the exact parameters that `RefreshableSession` takes for custom authentication flows, [check this documentation](https://
|
259
|
+
If you have a highly sophisticated, novel, or idiosyncratic authentication flow not included in boto3-refresh-session then you will need to provide your own custom temporary credentials callable object. `RefreshableSession` accepts custom credentials callable objects, as shown below. For additional information on the exact parameters that `RefreshableSession` takes for custom authentication flows, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.custom.CustomRefreshableSession.html#boto3_refresh_session.methods.custom.CustomRefreshableSession).
|
260
260
|
|
261
261
|
```python
|
262
262
|
# create (or import) your custom credential method
|
@@ -289,7 +289,7 @@ pip install boto3-refresh-session
|
|
289
289
|
|
290
290
|
AWS IoT Core can vend temporary AWS credentials through the **credentials provider** when you connect with an X.509 certificate and a **role alias**. `boto3-refresh-session` makes this flow seamless by automatically refreshing credentials over **mTLS**.
|
291
291
|
|
292
|
-
For additional information on the exact parameters that `IOTX509RefreshableSession` takes, [check this documentation](https://
|
292
|
+
For additional information on the exact parameters that `IOTX509RefreshableSession` takes, [check this documentation](https://michaelthomasletts.com/boto3-refresh-session/modules/generated/boto3_refresh_session.methods.iot.IOTX509RefreshableSession.html).
|
293
293
|
|
294
294
|
### PEM file
|
295
295
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "boto3-refresh-session"
|
3
|
-
version = "5.1.
|
3
|
+
version = "5.1.7"
|
4
4
|
description = "A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically."
|
5
5
|
authors = [
|
6
6
|
{name = "Mike Letts",email = "lettsmt@gmail.com"}
|
File without changes
|
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/exceptions.py
RENAMED
File without changes
|
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/custom.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/methods/sts.py
RENAMED
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/session.py
RENAMED
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/__init__.py
RENAMED
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/internal.py
RENAMED
File without changes
|
{boto3_refresh_session-5.1.6 → boto3_refresh_session-5.1.7}/boto3_refresh_session/utils/typing.py
RENAMED
File without changes
|