Found 0 result in total

Content is empty
If you don't find the content you expect, please try another search term
Standard Storage Service (KS3)
Access Control Management
Examples of bucket policies
Grant read-only permissions to anonymous users
Last updated:2021-04-28 11:04:15
The following policy grants the ks3:GetObject and ks3.ListBucket operation permissions on the example_bucket bucket to any public anonymous users. The permissions allow any users to list and read the objects in the example_bucket bucket.
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"ks3:GetObject",
"ks3:ListBucket"
],
"Principal": {
"KSC": [
"*"
]
},
"Resource": [
"krn:ksc:ks3:::example_bucket",
"krn:ksc:ks3:::example_bucket/*"
]
}
]
}
Pure Mode