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
When you make a call using temporary security credentials, the call must include a session token, which is returned along with those temporary credentials. AWS uses the session token to validate the temporary security credentials.
The only accepted keys are:
/// Following are arguments for [s3 file io](https://py.iceberg.apache.org/configuration/#s3)./// S3 endpoint.pubconstS3_ENDPOINT:&str = "s3.endpoint";/// S3 access key id.pubconstS3_ACCESS_KEY_ID:&str = "s3.access-key-id";/// S3 secret access key.pubconstS3_SECRET_ACCESS_KEY:&str = "s3.secret-access-key";/// S3 region.pubconstS3_REGION:&str = "s3.region";
We should add support for s3.session-token.
The text was updated successfully, but these errors were encountered:
Currently, FileIO does not work with temporary credentials obtained via aws sts, this is likely due to it not accepting the session token:
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html
The only accepted keys are:
We should add support for
s3.session-token
.The text was updated successfully, but these errors were encountered: