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.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :path_prefix (String) — default: '/'

    A path prefix that filters according to the path of the user.

  • :limit (Integer)

    The maximum number of users to yield.

  • :batch_size (Integer)

    The maximum number of users to retrieve with each service request.

Yield Parameters:

Returns:

  • (nil)


101
102
103
# File 'lib/aws/iam/user_collection.rb', line 101

def each options = {}, &block
  super(options, &block)
end