Module Values.TransferInputDeviceRequestSource

A request to transfer an input device.

Sourcetype nonrec t = {
  1. inputDeviceId : string;
    (*

    The unique ID of this input device. For example, hd-123456789abcdef.

    *)
  2. targetCustomerId : string option;
    (*

    The AWS account ID (12 digits) for the recipient of the device transfer.

    *)
  3. targetRegion : string option;
    (*

    The target AWS region to transfer the device.

    *)
  4. transferMessage : string option;
    (*

    An optional message for the recipient. Maximum 280 characters.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetCustomerId:??? -> ?targetRegion:??? -> ?transferMessage:??? -> inputDeviceId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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