Module Values.DeliverySourceConfigurationSchemaSource

A structure that describes a single configuration for a log type, including its name, value type, default value, and the range of supported values.

Sourcetype nonrec t = {
  1. keyName : DeliverySourceConfigurationSchemaField.t option;
    (*

    The name of the configuration.

    *)
  2. valueType : DeliverySourceConfigurationSchemaValueType.t option;
    (*

    The data type of the configuration value. Valid values are string, boolean, int, double, and long.

    *)
  3. defaultValue : DeliverySourceConfigurationSchemaField.t option;
    (*

    The default value of the configuration that is used when a value is not specified in a PutDeliverySource request.

    *)
  4. supportedValues : DeliverySourceConfigurationSupportedValues.t option;
    (*

    The list of allowed values for the configuration. Empty for free-form configuration.

    *)
  5. minValue : DeliverySourceConfigurationNumericValue.t option;
    (*

    The minimum numeric value allowed for the configuration. This applies only when the valueType is a numeric type.

    *)
  6. maxValue : DeliverySourceConfigurationNumericValue.t option;
    (*

    The maximum numeric value allowed for the configuration. This applies only when the valueType is a numeric type.

    *)
}
Sourceval make : ?keyName:??? -> ?valueType:??? -> ?defaultValue:??? -> ?supportedValues:??? -> ?minValue:??? -> ?maxValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DeliverySourceConfigurationNumericValue.t | `Enum of string | `List of [> `String of DeliverySourceConfigurationSchemaField.t ] list | `String of DeliverySourceConfigurationSchemaField.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