Question
Spaces/buckets ACL: what is the ID of a user and where can I find them?
Hi there!
I’m new to Object Storage. I’m trying to set ACL on a bucket, following this documentation.
But I don’t know what is this ID, since it is not an accessKey, and there is no mention of my own ID anywhere on the website.
Also, why the DisplayName is the same than this ID?
Here is the output of a .getBucketAcl()
done with the AWS SDK:
{
"Owner": {
"DisplayName": "2802192",
"ID": "2802192"
},
"Grants": [
{
"Grantee": {
"DisplayName": "2802192",
"ID": "2802192",
"Type": "CanonicalUser"
},
"Permission": "FULL_CONTROL"
}
]
}
How can I grant some permission to someone else by space access key?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×