Module Values.CollaborationTrainedModelSummarySource

Provides summary information about a trained model in a collaboration.

Sourcetype nonrec t = {
  1. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the trained model was created.

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

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

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

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

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

    The name of the trained model.

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

    The version identifier of this trained model version.

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

    Information about the incremental training data channels used to create this version of the trained model.

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

    The description of the trained model.

    *)
  8. membershipIdentifier : UUID.t option;
    (*

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

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

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

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

    The status of the trained model.

    *)
  11. configuredModelAlgorithmAssociationArn : ConfiguredModelAlgorithmAssociationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the configured model algorithm association that is used for this trained model.

    *)
  12. creatorAccountId : AccountId.t option;
    (*

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

    *)
}
Sourceval make : ?createTime:??? -> ?updateTime:??? -> ?trainedModelArn:??? -> ?name:??? -> ?versionIdentifier:??? -> ?incrementalTrainingDataChannels:??? -> ?description:??? -> ?membershipIdentifier:??? -> ?collaborationIdentifier:??? -> ?status:??? -> ?configuredModelAlgorithmAssociationArn:??? -> ?creatorAccountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ModelTrainingDataChannelName.t ]) list ] list | `String of TrainedModelArn.t | `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