I am trying to get the display name of the owner of a bucket using the following command:
$ aws --profile <profile> s3api get-bucket-acl --bucket <bucket-name>
The response I get back is:
{
"Owner": {
"ID": "b<long-id>e"
},
"Grants": [
{
"Grantee": {
"ID": "b<long-id>e",
"Type": "CanonicalUser"
},
"Permission": "FULL_CONTROL"
…
Top comments (0)