Awso_cognito_idp.UpdateDeviceStatusRequestSourceRepresents the request to update the device status.
type nonrec t = {accessToken : TokenModelType.t;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.
*)deviceKey : DeviceKeyType.t;The device key of the device you want to update, for example us-west-2_a1b2c3d4-5678-90ab-cdef-EXAMPLE11111.
*)deviceRememberedStatus : DeviceRememberedStatusType.t option;To enable device authentication with the specified device, set to remembered.To disable, set to not_remembered.
*)}val make :
?deviceRememberedStatus:??? ->
accessToken:TokenModelType.t ->
deviceKey:DeviceKeyType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of TokenModelType.t ]) list ]