Class: Aws::CognitoIdentityProvider::Types::AdminGetDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminGetDeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminGetDeviceRequest data as a hash:
{
device_key: "DeviceKeyType", # required
user_pool_id: "UserPoolIdType", # required
username: "UsernameType", # required
}
Represents the request to get the device, as an administrator.
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#device_key ⇒ String
The device key.
-
#user_pool_id ⇒ String
The user pool ID.
-
#username ⇒ String
The user name.
Instance Attribute Details
#device_key ⇒ String
The device key.
835 836 837 838 839 840 841 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 835 class AdminGetDeviceRequest < Struct.new( :device_key, :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
835 836 837 838 839 840 841 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 835 class AdminGetDeviceRequest < Struct.new( :device_key, :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The user name.
835 836 837 838 839 840 841 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 835 class AdminGetDeviceRequest < Struct.new( :device_key, :user_pool_id, :username) SENSITIVE = [:username] include Aws::Structure end |