Class: Aws::CognitoIdentityProvider::Types::AdminGetUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminGetUserRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminGetUserRequest data as a hash:
{
user_pool_id: "UserPoolIdType", # required
username: "UsernameType", # required
}
Represents the request to get the specified user as an administrator.
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to get information about the user.
-
#username ⇒ String
The user name of the user you want to retrieve.
Instance Attribute Details
#user_pool_id ⇒ String
The user pool ID for the user pool where you want to get information about the user.
879 880 881 882 883 884 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 879 class AdminGetUserRequest < Struct.new( :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The user name of the user you want to retrieve.
879 880 881 882 883 884 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 879 class AdminGetUserRequest < Struct.new( :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |