Module Values.CustomModelSummarySource

Summary information for a custom model.

Sourcetype nonrec t = {
  1. modelArn : CustomModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the custom model.

    *)
  2. modelName : CustomModelName.t option;
    (*

    The name of the custom model.

    *)
  3. creationTime : Timestamp.t option;
    (*

    Creation time of the model.

    *)
  4. baseModelArn : ModelArn.t option;
    (*

    The base model Amazon Resource Name (ARN).

    *)
  5. baseModelName : ModelName.t option;
    (*

    The base model name.

    *)
  6. customizationType : CustomizationType.t option;
    (*

    Specifies whether to carry out continued pre-training of a model or whether to fine-tune it. For more information, see Custom models.

    *)
  7. ownerAccountId : AccountId.t option;
    (*

    The unique identifier of the account that owns the model.

    *)
  8. modelStatus : ModelStatus.t option;
    (*

    The current status of the custom model. Possible values include: Creating - The model is being created and validated. Active - The model has been successfully created and is ready for use. Failed - The model creation process failed.

    *)
}
Sourceval make : ?modelArn:??? -> ?modelName:??? -> ?creationTime:??? -> ?baseModelArn:??? -> ?baseModelName:??? -> ?customizationType:??? -> ?ownerAccountId:??? -> ?modelStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CustomModelArn.t | `Timestamp of Timestamp.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