Module Values.InputPrepareScheduleActionSettingsSource

Action to prepare an input for a future immediate input switch.

Sourcetype nonrec t = {
  1. inputAttachmentNameReference : string option;
    (*

    The name of the input attachment that should be prepared by this action. If no name is provided, the action will stop the most recent prepare (if any) when activated.

    *)
  2. inputClippingSettings : InputClippingSettings.t option;
    (*

    Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.

    *)
  3. urlPath : string list option;
    (*

    The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.

    *)
}
Sourceval make : ?inputAttachmentNameReference:??? -> ?inputClippingSettings:??? -> ?urlPath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of string ]) 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