From 53c0d182e93430eda79a272486516272906d80bf Mon Sep 17 00:00:00 2001 From: Michael Wunderlich Date: Thu, 29 Jan 2015 09:53:51 -0800 Subject: [PATCH] update iam example --- awscli/examples/iam/get-account-summary.rst | 39 +++++++++++---------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/awscli/examples/iam/get-account-summary.rst b/awscli/examples/iam/get-account-summary.rst index 6e74770b2e58..1604a0419c9c 100644 --- a/awscli/examples/iam/get-account-summary.rst +++ b/awscli/examples/iam/get-account-summary.rst @@ -1,7 +1,6 @@ -**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 @@ -9,30 +8,32 @@ 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 -