Module Values.CreateFeedRequestSource

Creates a feed. The feed is the target for live streams being sent by the calling application. An example of a calling application is AWS Elemental MediaLive. After you create the feed, you can associate a resource with the feed.

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

    A name for this feed.

    *)
  2. outputs : CreateOutputList.t;
    (*

    An array of outputs for this feed. Each output represents a specific Elemental Inference feature. For example, an output might represent the crop feature.

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

    If you want to include tags, add them now. You won't be able to add them later.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:ResourceName.t -> outputs:CreateOutputList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ResourceName.t | `Structure of (string * [> `Structure of (string * [> `String of ResourceDescription.t ]) list ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) 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