boto3-refresh-session 3.0.2__tar.gz → 3.0.3__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-3.0.2 → boto3_refresh_session-3.0.3}/PKG-INFO +4 -4
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/README.md +3 -3
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/__init__.py +1 -1
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/pyproject.toml +1 -1
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/LICENSE +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/NOTICE +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/exceptions.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/__init__.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/custom.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/ecs.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/iot/__init__.typed +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/iot/certificate.typed +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/iot/cognito.typed +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/iot/core.typed +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/sts.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/session.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/utils/__init__.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/utils/internal.py +0 -0
- {boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/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: 3.0.
|
3
|
+
Version: 3.0.3
|
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,ecs,credentials,token,refresh
|
@@ -233,7 +233,7 @@ pip install boto3-refresh-session
|
|
233
233
|
|
234
234
|
### STS
|
235
235
|
|
236
|
-
Most
|
236
|
+
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://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/sts.py).
|
237
237
|
|
238
238
|
```python
|
239
239
|
import boto3_refresh_session as brs
|
@@ -274,7 +274,7 @@ pip install boto3-refresh-session
|
|
274
274
|
|
275
275
|
### ECS
|
276
276
|
|
277
|
-
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
|
277
|
+
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials. For additional information on the exact parameters that `RefreshableSession` takes for ECS, [check this documentation](https://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/ecs.py).
|
278
278
|
|
279
279
|
```python
|
280
280
|
session = RefreshableSession(
|
@@ -292,7 +292,7 @@ pip install boto3-refresh-session
|
|
292
292
|
|
293
293
|
### Custom
|
294
294
|
|
295
|
-
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.
|
295
|
+
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://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/custom.py).
|
296
296
|
|
297
297
|
```python
|
298
298
|
# create (or import) your custom credential method
|
@@ -208,7 +208,7 @@ pip install boto3-refresh-session
|
|
208
208
|
|
209
209
|
### STS
|
210
210
|
|
211
|
-
Most
|
211
|
+
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://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/sts.py).
|
212
212
|
|
213
213
|
```python
|
214
214
|
import boto3_refresh_session as brs
|
@@ -249,7 +249,7 @@ pip install boto3-refresh-session
|
|
249
249
|
|
250
250
|
### ECS
|
251
251
|
|
252
|
-
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
|
252
|
+
You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials. For additional information on the exact parameters that `RefreshableSession` takes for ECS, [check this documentation](https://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/ecs.py).
|
253
253
|
|
254
254
|
```python
|
255
255
|
session = RefreshableSession(
|
@@ -267,7 +267,7 @@ pip install boto3-refresh-session
|
|
267
267
|
|
268
268
|
### Custom
|
269
269
|
|
270
|
-
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.
|
270
|
+
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://github.com/michaelthomasletts/boto3-refresh-session/blob/main/boto3_refresh_session/methods/custom.py).
|
271
271
|
|
272
272
|
```python
|
273
273
|
# create (or import) your custom credential method
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "boto3-refresh-session"
|
3
|
-
version = "3.0.
|
3
|
+
version = "3.0.3"
|
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-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/exceptions.py
RENAMED
File without changes
|
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/custom.py
RENAMED
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/ecs.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/methods/sts.py
RENAMED
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/session.py
RENAMED
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/utils/__init__.py
RENAMED
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/utils/internal.py
RENAMED
File without changes
|
{boto3_refresh_session-3.0.2 → boto3_refresh_session-3.0.3}/boto3_refresh_session/utils/typing.py
RENAMED
File without changes
|