Class: Aws::CognitoIdentityProvider::Types::ForgetDeviceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Represents the request to forget 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 currently signed-in user. Must include a scope claim for ‘aws.cognito.signin.user.admin`.

Returns:

  • (String)


5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5842

class ForgetDeviceRequest < Struct.new(
  :access_token,
  :device_key)
  SENSITIVE = [:access_token]
  include Aws::Structure
end

#device_keyString

The unique identifier, or device key, of the device that the user wants to forget.

Returns:

  • (String)


5842
5843
5844
5845
5846
5847
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 5842

class ForgetDeviceRequest < Struct.new(
  :access_token,
  :device_key)
  SENSITIVE = [:access_token]
  include Aws::Structure
end