Class: Aws::IAM::Types::GetUserResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetUserResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains the response to a successful GetUser request.
Instance Attribute Summary collapse
-
#user ⇒ Types::User
A structure containing details about the IAM user.
Instance Attribute Details
#user ⇒ Types::User
A structure containing details about the IAM user.
Due to a service issue, password last used data does not include password use from May 3rd 2018 22:50 PDT to May 23rd 2018 14:08 PDT. This affects [last sign-in] dates shown in the IAM console and password last used dates in the [IAM credential report], and returned by this GetUser API. If users signed in during the affected time, the password last used date that is returned is the date the user last signed in before May 3rd 2018. For users that signed in after May 23rd 2018 14:08 PDT, the returned password last used date is accurate.
If you use password last used information to identify unused
credentials for deletion, such as deleting users who did not sign in to AWS in the last 90 days, we recommend that you adjust your evaluation window to include dates after May 23rd 2018. Alternatively, if your users use access keys to access AWS programmatically you can refer to access key last used information because it is accurate for all dates.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_finding-unused.html [2]: docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html
3665 3666 3667 3668 |
# File 'lib/aws-sdk-iam/types.rb', line 3665 class GetUserResponse < Struct.new( :user) include Aws::Structure end |