Module Values.EndpointSettingSource

Endpoint settings.

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

    The name that you want to give the endpoint settings.

    *)
  2. type_ : EndpointSettingTypeValue.t option;
    (*

    The type of endpoint. Valid values are source and target.

    *)
  3. enumValues : EndpointSettingEnumValues.t option;
    (*

    Enumerated values to use for this endpoint.

    *)
  4. sensitive : BooleanOptional.t option;
    (*

    A value that marks this endpoint setting as sensitive.

    *)
  5. units : String_.t option;
    (*

    The unit of measure for this endpoint setting.

    *)
  6. applicability : String_.t option;
    (*

    The relevance or validity of an endpoint setting for an engine name and its endpoint type.

    *)
  7. intValueMin : IntegerOptional.t option;
    (*

    The minimum value of an endpoint setting that is of type int.

    *)
  8. intValueMax : IntegerOptional.t option;
    (*

    The maximum value of an endpoint setting that is of type int.

    *)
  9. defaultValue : String_.t option;
    (*

    The default value of the endpoint setting if no value is specified using CreateEndpoint or ModifyEndpoint.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?enumValues:??? -> ?sensitive:??? -> ?units:??? -> ?applicability:??? -> ?intValueMin:??? -> ?intValueMax:??? -> ?defaultValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `Integer of IntegerOptional.t | `List of [> `String of String_.t ] list | `String of String_.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