Module Values_0.ModelDeployConfigSource

Specifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.

Sourcetype nonrec t = {
  1. autoGenerateEndpointName : AutoGenerateEndpointName.t option;
    (*

    Set to True to automatically generate an endpoint name for a one-click Autopilot model deployment; set to False otherwise. The default value is False. If you set AutoGenerateEndpointName to True, do not specify the EndpointName; otherwise a 400 error is thrown.

    *)
  2. endpointName : EndpointName.t option;
    (*

    Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically. Specify the EndpointName if and only if you set AutoGenerateEndpointName to False; otherwise a 400 error is thrown.

    *)
}
Sourceval make : ?autoGenerateEndpointName:??? -> ?endpointName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AutoGenerateEndpointName.t | `String of EndpointName.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