Method: AWS::IAM::UserCollection#each
- Defined in:
- lib/aws/iam/user_collection.rb
#each(options = {}) {|user| ... } ⇒ nil
Yields once for each user.
You can limit the number of users yielded using :limit and :path_prefix.
101 102 103 |
# File 'lib/aws/iam/user_collection.rb', line 101 def each = {}, &block super(, &block) end |