Module Values.UpdateFeedRequestSource

Updates the name and/or outputs in a feed.

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

    Required. You can specify the existing name (to leave it unchanged) or a new name.

    *)
  2. id : FeedId.t;
    (*

    The ID of the feed to update.

    *)
  3. outputs : UpdateOutputList.t;
    (*

    Required. You can specify the existing array of outputs (to leave outputs unchanged) or you can specify a new array.

    *)
}
Sourceval context_ : string
Sourceval make : name:ResourceName.t -> id:FeedId.t -> outputs:UpdateOutputList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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 ] list | `String of ResourceName.t ]) 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