diff options
author | 2024-03-11 10:51:13 +0000 | |
---|---|---|
committer | 2024-03-11 10:51:13 +0000 | |
commit | 8e88ee8d9c3740a76139566837199831dabdf997 (patch) | |
tree | e331d9e0acfb1c975a72aee3105e0f1fba6ca128 /vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go | |
parent | [chore]: Bump github.com/go-jose/go-jose/v3 from 3.0.1 to 3.0.3 (#2733) (diff) | |
download | gotosocial-8e88ee8d9c3740a76139566837199831dabdf997.tar.xz |
[chore]: Bump github.com/minio/minio-go/v7 from 7.0.67 to 7.0.69 (#2748)
Diffstat (limited to 'vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go')
-rw-r--r-- | vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go b/vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go index af6104967..68f9b3815 100644 --- a/vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go +++ b/vendor/github.com/minio/minio-go/v7/pkg/credentials/credentials.go @@ -30,17 +30,20 @@ const ( defaultExpiryWindow = 0.8 ) -// A Value is the AWS credentials value for individual credential fields. +// A Value is the S3 credentials value for individual credential fields. type Value struct { - // AWS Access key ID + // S3 Access key ID AccessKeyID string - // AWS Secret Access Key + // S3 Secret Access Key SecretAccessKey string - // AWS Session Token + // S3 Session Token SessionToken string + // Expiration of this credentials - null means no expiration associated + Expiration time.Time + // Signature Type. SignerType SignatureType } |