You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
AWS4Auth library only supports static credentials IE: AccessKey, SecretKey credentials. Temporary credentials are better to use than static credentials because they expire after a specified interval. To support temporary credentials, the AWS4Auth library needs to support the SessionToken parameter as well.
Describe the solution you'd like
Instead of only having the AWS4Auth method:
public void setCredentials(String accessKey, String secretKey)
to add the method
public void setCredentials(String accessKey, String secretKey, String sessionToken)
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
AWS4Auth library only supports static credentials IE: AccessKey, SecretKey credentials. Temporary credentials are better to use than static credentials because they expire after a specified interval. To support temporary credentials, the AWS4Auth library needs to support the SessionToken parameter as well.
Describe the solution you'd like
Instead of only having the AWS4Auth method:
public void setCredentials(String accessKey, String secretKey)
to add the method
public void setCredentials(String accessKey, String secretKey, String sessionToken)
The text was updated successfully, but these errors were encountered: