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)


8491
8492
8493
8494
8495
8496
8497
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8491

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)


8491
8492
8493
8494
8495
8496
8497
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8491

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)


8491
8492
8493
8494
8495
8496
8497
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8491

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