Module Values.GetTrainedModelResponseSource

Returns information about a trained model.

Sourcetype nonrec t = {
  1. membershipIdentifier : UUID.t option;
    (*

    The membership ID of the member that created the trained model.

    *)
  2. collaborationIdentifier : UUID.t option;
    (*

    The collaboration ID of the collaboration that contains the trained model.

    *)
  3. trainedModelArn : TrainedModelArn.t option;
    (*

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

    *)
  4. versionIdentifier : UUID.t option;
    (*

    The version identifier of the trained model. This unique identifier distinguishes this version from other versions of the same trained model.

    *)
  5. incrementalTrainingDataChannels : IncrementalTrainingDataChannelsOutput.t option;
    (*

    Information about the incremental training data channels used to create this version of the trained model. This includes details about the base model that was used for incremental training and the channel configuration.

    *)
  6. name : NameString.t option;
    (*

    The name of the trained model.

    *)
  7. description : ResourceDescription.t option;
    (*

    The description of the trained model.

    *)
  8. status : TrainedModelStatus.t option;
    (*

    The status of the trained model.

    *)
  9. statusDetails : StatusDetails.t option;
  10. configuredModelAlgorithmAssociationArn : ConfiguredModelAlgorithmAssociationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create the trained model.

    *)
  11. resourceConfig : ResourceConfig.t option;
    (*

    The EC2 resource configuration that was used to create the trained model.

    *)
  12. trainingInputMode : TrainingInputMode.t option;
    (*

    The input mode that was used for accessing the training data when this trained model was created. This indicates how the training data was made available to the training algorithm.

    *)
  13. stoppingCondition : StoppingCondition.t option;
    (*

    The stopping condition that was used to terminate model training.

    *)
  14. metricsStatus : MetricsStatus.t option;
    (*

    The status of the model metrics.

    *)
  15. metricsStatusDetails : String_.t option;
    (*

    Details about the metrics status for the trained model.

    *)
  16. logsStatus : LogsStatus.t option;
    (*

    The logs status for the trained model.

    *)
  17. logsStatusDetails : String_.t option;
    (*

    Details about the logs status for the trained model.

    *)
  18. trainingContainerImageDigest : String_.t option;
    (*

    Information about the training image container.

    *)
  19. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the trained model was created.

    *)
  20. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The most recent time at which the trained model was updated.

    *)
  21. hyperparameters : HyperParameters.t option;
    (*

    The hyperparameters that were used to create the trained model.

    *)
  22. environment : Environment.t option;
    (*

    The EC2 environment that was used to create the trained model.

    *)
  23. kmsKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and associated data.

    *)
  24. tags : TagMap.t option;
    (*

    The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags: Maximum number of tags per resource - 50. For each resource, each tag key must be unique, and each tag key can have only one value. Maximum key length - 128 Unicode characters in UTF-8. Maximum value length - 256 Unicode characters in UTF-8. If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case sensitive. Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.

    *)
  25. dataChannels : ModelTrainingDataChannels.t option;
    (*

    The data channels that were used for the trained model.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?membershipIdentifier:??? -> ?collaborationIdentifier:??? -> ?trainedModelArn:??? -> ?versionIdentifier:??? -> ?incrementalTrainingDataChannels:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?statusDetails:??? -> ?configuredModelAlgorithmAssociationArn:??? -> ?resourceConfig:??? -> ?trainingInputMode:??? -> ?stoppingCondition:??? -> ?metricsStatus:??? -> ?metricsStatusDetails:??? -> ?logsStatus:??? -> ?logsStatusDetails:??? -> ?trainingContainerImageDigest:??? -> ?createTime:??? -> ?updateTime:??? -> ?hyperparameters:??? -> ?environment:??? -> ?kmsKeyArn:??? -> ?tags:??? -> ?dataChannels:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ModelTrainingDataChannelName.t ]) list ] list | `Map of ([> `String of HyperParametersKeyString.t ] * [> `String of HyperParametersValueString.t ]) list | `String of UUID.t | `Structure of (string * [> `Enum of string | `Integer of ResourceConfigInstanceCountInteger.t | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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