Module Values.TransferInputDeviceSource

The transfer details of the input device.

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

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

    *)
  2. targetRegion : string option;
    (*

    The target AWS region to transfer the device.

    *)
  3. transferMessage : string option;
    (*

    An optional message for the recipient. Maximum 280 characters.

    *)
}
Sourceval make : ?targetCustomerId:??? -> ?targetRegion:??? -> ?transferMessage:??? -> 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