Module Values.GetDeviceRequestSource

Represents the request to get the device.

Sourcetype nonrec t = {
  1. deviceKey : DeviceKeyType.t;
    (*

    The key of the device that you want to get information about.

    *)
  2. accessToken : TokenModelType.t option;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?accessToken:??? -> deviceKey:DeviceKeyType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeviceKeyType.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