You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug ListTagsForResource return NextMarker as empty string instead of nil.
I have a single CloudFront WAF IP Set which I am trying to retrieve with ListTagsForResource and I expect NextMarker to return nil as described here but instead it returns as empty string and causes the following error on next iteration:
InvalidParameter: 1 validation error(s) found.
- minimum field size of 1, ListTagsForResourceInput.NextMarker.
P.S: just in case this may collide somehow, I have some IP match conditions on "classic" (v1) WAF
When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, AWS WAF returns a NextMarker value in the response.
The text was updated successfully, but these errors were encountered:
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
Confirm by changing [ ] to [x] below to ensure that it's a bug:
Describe the bug
ListTagsForResource
returnNextMarker
as empty string instead of nil.I have a single CloudFront WAF IP Set which I am trying to retrieve with
ListTagsForResource
and I expectNextMarker
to return nil as described here but instead it returns as empty string and causes the following error on next iteration:P.S: just in case this may collide somehow, I have some IP match conditions on "classic" (v1) WAF
Version of AWS SDK for Go?
Version of Go (
go version
)?To Reproduce (observed behavior)
Expected behavior
NextMarker
should be returned only if there are more resources to retrieve, otherwise nil.Quote from docs:
The text was updated successfully, but these errors were encountered: