Class: Aws::CognitoIdentityProvider::Types::GetUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::GetUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to get information about the user.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A non-expired access token for the user whose information you want to query.
Instance Attribute Details
#access_token ⇒ String
A non-expired access token for the user whose information you want to query.
5222 5223 5224 5225 5226 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5222 class GetUserRequest < Struct.new( :access_token) SENSITIVE = [:access_token] include Aws::Structure end |