Warning: Using this property can lead to race conditions if you access another property subsequently along the refresh boundary. Please use get_frozen_credentials instead.
(self)
| 465 | |
| 466 | @property |
| 467 | def access_key(self): |
| 468 | """Warning: Using this property can lead to race conditions if you |
| 469 | access another property subsequently along the refresh boundary. |
| 470 | Please use get_frozen_credentials instead. |
| 471 | """ |
| 472 | self._refresh() |
| 473 | return self._access_key |
| 474 | |
| 475 | @access_key.setter |
| 476 | def access_key(self, value): |