forked from aws/aws-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'awsdocs-get-account-summary' into develop
* awsdocs-get-account-summary: update iam example
- Loading branch information
Showing
1 changed file
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|