Class: Aws::CognitoIdentityProvider::Types::GetDeviceRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#access_tokenString

A valid access token that Amazon Cognito issued to the user whose device information you want to request.

Returns:

  • (String)


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_keyString

The device key.

Returns:

  • (String)


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