-
Notifications
You must be signed in to change notification settings - Fork 754
Closed
Labels
guidanceQuestion that needs advice or information.Question that needs advice or information.service-apiThis issue is due to a problem in a service API, not the SDK implementation.This issue is due to a problem in a service API, not the SDK implementation.
Description
Confirm by changing [ ] to [x] below:
- I've gone though Developer Guide and API reference
- I've checked AWS Forums and StackOverflow for answers
- [ ]
Hi while working with aws-sdk-go v2 I have noticed that GetBucketAcl is returning array of duplicate Grants where Grantee type/displayname/emailaddress/id/uri/permission is identical. Is there a reason for this ? In the console I can see only one Grant which is current account. (some fields redacted)
example:
Getting bucket acl for: <some_bucket>
{
"Grants": [
{
"Grantee": {
"Type": "CanonicalUser",
"DisplayName": null,
"EmailAddress": null,
"ID": "0b1_____91b",
"URI": null
},
"Permission": "FULL_CONTROL"
},
{
"Grantee": {
"Type": "CanonicalUser",
"DisplayName": null,
"EmailAddress": null,
"ID": "0b1_____91b",
"URI": null
},
"Permission": "FULL_CONTROL"
},
{
"Grantee": {
"Type": "CanonicalUser",
"DisplayName": null,
"EmailAddress": null,
"ID": "0b1_____91b",
"URI": null
},
"Permission": "FULL_CONTROL"
},
{
"Grantee": {
"Type": "CanonicalUser",
"DisplayName": null,
"EmailAddress": null,
"ID": "0b1_____91b",
"URI": null
},
"Permission": "FULL_CONTROL"
},
{
"Grantee": {
"Type": "CanonicalUser",
"DisplayName": null,
"EmailAddress": null,
"ID": "0b1_____91b",
"URI": null
},
"Permission": "FULL_CONTROL"
}
],
"Owner": {
"DisplayName": null,
"ID": "0b1_____91b"
},
"ResultMetadata": {}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
guidanceQuestion that needs advice or information.Question that needs advice or information.service-apiThis issue is due to a problem in a service API, not the SDK implementation.This issue is due to a problem in a service API, not the SDK implementation.