We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Most AWS Commands support pagination via enumerators, this SSM command seems to be missing that.
[20] pry(main)> ssm = Aws::SSM::Client.new [21] pry(main)> ssm.describe_instance_information.map(&:instance_information_list) NoMethodError: undefined method `each' for #<Aws::SSM::Types::DescribeInstanceInformationResult:0x00000101602a00> from /Users/drosenbloom/.rvm/gems/ruby-2.1.1/gems/aws-sdk-core-2.3.21/lib/seahorse/client/response.rb:85:in `map'
The text was updated successfully, but these errors were encountered:
Correct, I do not see a pagination definition for that method, but the :next_token member is present in the response.
:next_token
Sorry, something went wrong.
426ed5a
I've added the missing paginator configuration. This should go out with our next release.
Tag release v2.4.1
de81a2b
References: #1237, #1238, #1246, #1248, #1249, #1250
Tag release v2.4.2
14754fe
References: #1235, #1237, #1238, #1246, #1248, #1249, #1250
No branches or pull requests
Most AWS Commands support pagination via enumerators, this SSM command seems to be missing that.
The text was updated successfully, but these errors were encountered: