Module Values.ProcessorParameterSource

Describes the processor parameter.

Sourcetype nonrec t = {
  1. parameterName : ProcessorParameterName.t;
    (*

    The name of the parameter. Currently the following default values are supported: 3 for NumberOfRetries and 60 for the BufferIntervalInSeconds. The BufferSizeInMBs ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB.

    *)
  2. parameterValue : ProcessorParameterValue.t;
    (*

    The parameter value.

    *)
}
Sourceval context_ : string
Sourceval make : parameterName:ProcessorParameterName.t -> parameterValue:ProcessorParameterValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProcessorParameterValue.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