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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/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 user whose registered device you want to forget.

Returns:

  • (String)


4622
4623
4624
4625
4626
4627
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4622

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

#device_keyString

The device key.

Returns:

  • (String)


4622
4623
4624
4625
4626
4627
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4622

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