Module Values.CreateInputRequestSource

Creates an input.

Sourcetype nonrec t = {
  1. inputName : InputName.t;
    (*

    The name you want to give to the input.

    *)
  2. inputDescription : InputDescription.t option;
    (*

    A brief description of the input.

    *)
  3. inputDefinition : InputDefinition.t;
    (*

    The definition of the input.

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

    Metadata that can be used to manage the input.

    *)
}
Sourceval context_ : string
Sourceval make : ?inputDescription:??? -> ?tags:??? -> inputName:InputName.t -> inputDefinition:InputDefinition.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of InputName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of AttributeJsonPath.t ]) list ] list ]) list ]) 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