Class: Aws::CognitoIdentityProvider::Types::GetDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::GetDeviceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to get the device.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose device information you want to request.
-
#device_key ⇒ String
The device key.
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose device information you want to request.
4918 4919 4920 4921 4922 4923 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4918 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |
#device_key ⇒ String
The device key.
4918 4919 4920 4921 4922 4923 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4918 class GetDeviceRequest < Struct.new( :device_key, :access_token) SENSITIVE = [:access_token] include Aws::Structure end |