Module Awso_cognito_idp.UpdateDeviceStatusRequestSource

Represents the request to update the device status.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. deviceKey : DeviceKeyType.t;
    (*

    The device key of the device you want to update, for example us-west-2_a1b2c3d4-5678-90ab-cdef-EXAMPLE11111.

    *)
  3. deviceRememberedStatus : DeviceRememberedStatusType.t option;
    (*

    To enable device authentication with the specified device, set to remembered.To disable, set to not_remembered.

    *)
}
Sourceval context_ : string
Sourceval make : ?deviceRememberedStatus:??? -> accessToken:TokenModelType.t -> deviceKey:DeviceKeyType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TokenModelType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t