Module Values_1.ModelVariantConfigSummarySource

Summary of the deployment configuration of a model.

Sourcetype nonrec t = {
  1. modelName : Values_0.ModelName.t option;
    (*

    The name of the Amazon SageMaker Model entity.

    *)
  2. variantName : ModelVariantName.t option;
    (*

    The name of the variant.

    *)
  3. infrastructureConfig : ModelInfrastructureConfig.t option;
    (*

    The configuration of the infrastructure that the model has been deployed to.

    *)
  4. status : ModelVariantStatus.t option;
    (*

    The status of deployment for the model variant on the hosted inference endpoint. Creating - Amazon SageMaker is preparing the model variant on the hosted inference endpoint. InService - The model variant is running on the hosted inference endpoint. Updating - Amazon SageMaker is updating the model variant on the hosted inference endpoint. Deleting - Amazon SageMaker is deleting the model variant on the hosted inference endpoint. Deleted - The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.

    *)
}
Sourceval make : ?modelName:??? -> ?variantName:??? -> ?infrastructureConfig:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.ModelName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of TaskCount.t ]) list ]) 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