Skip to content

Commit

Permalink
Merge branch 'awsdocs-get-account-summary' into develop
Browse files Browse the repository at this point in the history
* awsdocs-get-account-summary:
  update iam example
  • Loading branch information
jamesls committed Jan 29, 2015
2 parents 46e4f6e + 53c0d18 commit a5c8468
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions awscli/examples/iam/get-account-summary.rst
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
**To get information about IAM entities in the current account**
**To get information about IAM entity usage and IAM quotas in the current account**

The following ``get-account-summary`` command returns information about the current IAM entities and current IAM entity
limitations in the account::
The following ``get-account-summary`` command returns information about the current IAM entity usage and current IAM entity quotas in the account::

aws iam get-account-summary

Output::

{
"SummaryMap": {
"AccessKeysPerUserQuota": 2,
"AssumeRolePolicySizeQuota": 2048,
"UsersQuota": 5000,
"GroupsPerUserQuota": 10,
"GroupsQuota": 100,
"InstanceProfiles": 6,
"SigningCertificatesPerUserQuota": 2,
"AccountAccessKeysPresent": 0,
"RolesQuota": 250,
"RolePolicySizeQuota": 10240,
"AccountSigningCertificatesPresent": 0,
"Users": 27,
"Roles": 7,
"MFADevices": 3,
"InstanceProfilesQuota": 100,
"AccountMFAEnabled": 0,
"ServerCertificatesQuota": 20,
"ServerCertificates": 0,
"UserPolicySizeQuota": 2048,
"RolePolicySizeQuota": 10240,
"AssumeRolePolicySizeQuota": 2048,
"Groups": 7,
"MFADevicesInUse": 1,
"GroupsQuota": 100,
"Groups": 24,
"InstanceProfiles": 6,
"Roles": 3,
"AccountMFAEnabled": 1,
"MFADevices": 3,
"GroupsPerUserQuota": 10,
"GroupPolicySizeQuota": 5120,
"SigningCertificatesPerUserQuota": 2,
"ServerCertificatesQuota": 10,
"RolesQuota": 250
"InstanceProfilesQuota": 100,
"AccessKeysPerUserQuota": 2,
"Providers": 0,
"UserPolicySizeQuota": 2048
}
}

For more information about entity limitations, see `Limitations on IAM Entities`_ in the *Using IAM* guide.

.. _`Limitations on IAM Entities`: http://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html

0 comments on commit a5c8468

Please sign in to comment.