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 permissions to multiple Kingsoft Cloud accounts
Last updated:2021-04-28 11:04:15
The following policy grants the ks3:PutObject and ks3:PutObjectAcl operation permissions on all objects in the example_bucket bucket to Kingsoft Cloud accounts whose user IDs are 12345 and 23648.
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"ks3:PutObject",
"ks3:PutObjectAcl"
],
"Principal": {
"KSC": [
"krn:ksc:iam::12345:root",
"krn:ksc:iam::23648:root"
]
},
"Resource": [
"krn:ksc:ks3:::example_bucket/*"
]
}
]
}
Pure Mode