boto3-refresh-session 1.3.17__tar.gz → 1.3.18__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 1.3.17
3
+ Version: 1.3.18
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
@@ -118,6 +118,8 @@ pip install boto3-refresh-session
118
118
 
119
119
  ## Usage (STS)
120
120
 
121
+ Most users 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.
122
+
121
123
  ```python
122
124
  import boto3_refresh_session as brs
123
125
 
@@ -152,6 +154,8 @@ session = brs.RefreshableSession(
152
154
 
153
155
  ## Usage (ECS)
154
156
 
157
+ You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
158
+
155
159
  ```python
156
160
  session = RefreshableSession(
157
161
  method="ecs",
@@ -94,6 +94,8 @@ pip install boto3-refresh-session
94
94
 
95
95
  ## Usage (STS)
96
96
 
97
+ Most users 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.
98
+
97
99
  ```python
98
100
  import boto3_refresh_session as brs
99
101
 
@@ -128,6 +130,8 @@ session = brs.RefreshableSession(
128
130
 
129
131
  ## Usage (ECS)
130
132
 
133
+ You can use boto3-refresh-session in an ECS container to automatically refresh temporary security credentials.
134
+
131
135
  ```python
132
136
  session = RefreshableSession(
133
137
  method="ecs",
@@ -4,7 +4,7 @@ from .session import RefreshableSession
4
4
  from .sts import STSRefreshableSession
5
5
 
6
6
  __all__ = ["RefreshableSession"]
7
- __version__ = "1.3.17"
7
+ __version__ = "1.3.18"
8
8
  __title__ = "boto3-refresh-session"
9
9
  __author__ = "Mike Letts"
10
10
  __maintainer__ = "Mike Letts"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "1.3.17"
3
+ version = "1.3.18"
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"}