Module Values_1.EndpointOutputConfigurationSource

The endpoint configuration made by Inference Recommender during a recommendation job.

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

    The name of the endpoint made during a recommendation job.

    *)
  2. variantName : Values_0.String_.t option;
    (*

    The name of the production variant (deployed model) made during a recommendation job.

    *)
  3. instanceType : Values_0.ProductionVariantInstanceType.t option;
    (*

    The instance type recommended by Amazon SageMaker Inference Recommender.

    *)
  4. initialInstanceCount : InitialInstanceCount.t option;
    (*

    The number of instances recommended to launch initially.

    *)
  5. serverlessConfig : Values_0.ProductionVariantServerlessConfig.t option;
}
Sourceval make : ?endpointName:??? -> ?variantName:??? -> ?instanceType:??? -> ?initialInstanceCount:??? -> ?serverlessConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of InitialInstanceCount.t | `String of Values_0.String_.t | `Structure of (string * [> `Integer of int ]) 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