Module Values.CreatePartnerInputRequestSource

A request to create a partner input

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

    Unique ID of the input.

    *)
  2. requestId : string option;
    (*

    Unique identifier of the request to ensure the request is handled exactly once in case of retries.

    *)
  3. tags : Tags.t option;
    (*

    A collection of key-value pairs.

    *)
}
Sourceval context_ : string
Sourceval make : ?requestId:??? -> ?tags:??? -> inputId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `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