Module Values.TransferringInputDeviceSummarySource

Details about the input device that is being transferred.

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

    The unique ID of the input device.

    *)
  2. message : string option;
    (*

    The optional message that the sender has attached to the transfer.

    *)
  3. targetCustomerId : string option;
    (*

    The AWS account ID for the recipient of the input device transfer.

    *)
  4. transferType : InputDeviceTransferType.t option;
    (*

    The type (direction) of the input device transfer.

    *)
}
Sourceval make : ?id:??? -> ?message:??? -> ?targetCustomerId:??? -> ?transferType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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