lib/aws/iam/group.rb in aws-sdk-1.8.5 vs lib/aws/iam/group.rb in aws-sdk-1.9.0

- old
+ new

@@ -70,29 +70,29 @@ nil end # Provides access to the users in the group. For example: # - # # get the names of all the users in the group - # group.users.map(&:name) + # # get the names of all the users in the group + # group.users.map(&:name) # - # # remove all users from the group - # group.users.clear + # # remove all users from the group + # group.users.clear # # @return [GroupUserCollection] An object representing all the # users in the group. def users GroupUserCollection.new(self) end # Provides access to the policies associated with the group. # For example: # - # # get the policy named "ReadOnly" - # group.policies["ReadOnly"] + # # get the policy named "ReadOnly" + # group.policies["ReadOnly"] # - # # remove all policies associated with the group - # group.policies.clear + # # remove all policies associated with the group + # group.policies.clear # # @return [GroupPolicyCollection] An object representing all the # policies associated with the group. def policies GroupPolicyCollection.new(self)