CachedCredentials fetches short-lived credentials that grant access to the user's private cache.
(ctx context.Context)
| 63 | // CachedCredentials fetches short-lived credentials that grant access to the user's |
| 64 | // private cache. |
| 65 | func CachedCredentials(ctx context.Context) (AWSCredentials, error) { |
| 66 | return cachedCredentials.Do(ctx) |
| 67 | } |
| 68 | |
| 69 | // Caches return the list of caches the user has access to. If user is not |
| 70 | // logged in, it returns nil, nil. (no error). |
no test coverage detected