generated from TrueCloudLab/basic
Denis Kirillov
67cf09f51d
All checks were successful
Tests and linters / Tests (1.21) (pull_request) Successful in 1m21s
DCO action / DCO (pull_request) Successful in 1m13s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m34s
Tests and linters / Tests with -race (pull_request) Successful in 1m44s
Tests and linters / Staticcheck (pull_request) Successful in 1m46s
Tests and linters / Lint (pull_request) Successful in 2m34s
Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
21 lines
642 B
Go
21 lines
642 B
Go
package s3
|
|
|
|
const (
|
|
PropertyKeyOwner = "Owner"
|
|
|
|
PropertyKeyDelimiter = "s3:delimiter"
|
|
PropertyKeyPrefix = "s3:prefix"
|
|
PropertyKeyVersionID = "s3:VersionId"
|
|
PropertyKeyMaxKeys = "s3:max-keys"
|
|
|
|
PropertyKeyFormatResourceTag = "aws:ResourceTag/%s"
|
|
PropertyKeyFormatRequestTag = "aws:RequestTag/%s"
|
|
|
|
ResourceFormatS3All = "arn:aws:s3:::*"
|
|
ResourceFormatS3Bucket = "arn:aws:s3:::%s"
|
|
ResourceFormatS3BucketObjects = "arn:aws:s3:::%s/*"
|
|
ResourceFormatS3BucketObject = "arn:aws:s3:::%s/%s"
|
|
|
|
ResourceFormatIAMNamespaceUser = "arn:aws:iam::%s:user/%s"
|
|
ResourceFormatIAMNamespaceGroup = "arn:aws:iam::%s:group/%s"
|
|
)
|