Module Values.CreateOutputSource

Contains configuration information about one output in a feed. It is used in the AssociateFeed and the CreateFeed actions.

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    A name for the output.

    *)
  2. outputConfig : OutputConfig.t;
    (*

    A typed property for an output in a feed. It is used in the CreateFeed and AssociateFeed actions. It identifies the action for Elemental Inference to perform. It also provides a repository for the results of that action. For example, CroppingConfig output will contain the metadata for the crop feature.

    *)
  3. status : OutputStatus.t;
    (*

    The status to assign to the output.

    *)
  4. description : ResourceDescription.t option;
    (*

    A description for the output.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> name:ResourceName.t -> outputConfig:OutputConfig.t -> status:OutputStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceName.t | `Structure of (string * [> `Structure of (string * [> `String of ResourceDescription.t ]) 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