Class: Aws::CognitoIdentityProvider::Types::UpdateDeviceStatusRequest

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

Overview

Represents the request to update the device status.

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 status you want to update.

Returns:

  • (String)


8779
8780
8781
8782
8783
8784
8785
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8779

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

#device_keyString

The device key.

Returns:

  • (String)


8779
8780
8781
8782
8783
8784
8785
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8779

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

#device_remembered_statusString

The status of whether a device is remembered.

Returns:

  • (String)


8779
8780
8781
8782
8783
8784
8785
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8779

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