Module Values.GetOutputSource

Contains configuration information about one output in a feed. It is used in the GetFeed action.

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

    The ARN of the output.

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

    A typed property for an output in a feed. It is used in the GetFeed action. 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 option;
    (*

    The status of the output.

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

    The description of the output.

    *)
  5. fromAssociation : Boolean.t option;
    (*

    True means that the output was originally created in the feed by the AssociateFeed operation. False means it was created using CreateFeed or UpdateFeed. You will need this value if you use the UpdateFeed operation to modify the list of outputs in the feed.

    *)
}
Sourceval make : ?name:??? -> ?outputConfig:??? -> ?status:??? -> ?description:??? -> ?fromAssociation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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