Module Values_2.ModelCardVersionSummarySource

A summary of a specific version of the model card.

Sourcetype nonrec t = {
  1. modelCardName : Values_0.EntityName.t option;
    (*

    The name of the model card.

    *)
  2. modelCardArn : Values_1.ModelCardArn.t option;
    (*

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

    *)
  3. modelCardStatus : Values_1.ModelCardStatus.t option;
    (*

    The approval status of the model card version within your organization. Different organizations might have different criteria for model card review and approval. Draft: The model card is a work in progress. PendingReview: The model card is pending review. Approved: The model card is approved. Archived: The model card is archived. No more updates should be made to the model card, but it can still be exported.

    *)
  4. modelCardVersion : Values_0.Integer.t option;
    (*

    A version of the model card.

    *)
  5. creationTime : Values_0.Timestamp.t option;
    (*

    The date and time that the model card version was created.

    *)
  6. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time date and time that the model card version was last modified.

    *)
}
Sourceval make : ?modelCardName:??? -> ?modelCardArn:??? -> ?modelCardStatus:??? -> ?modelCardVersion:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.EntityName.t | `Timestamp of Values_0.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