Module Values_2.UpdateModelCardRequestSource

Update an Amazon SageMaker Model Card. You cannot update both model card content and model card status in a single call.

Sourcetype nonrec t = {
  1. modelCardName : Values_1.ModelCardNameOrArn.t;
    (*

    The name or Amazon Resource Name (ARN) of the model card to update.

    *)
  2. content : Values_1.ModelCardContent.t option;
    (*

    The updated model card content. Content must be in model card JSON schema and provided as a string. When updating model card content, be sure to include the full content and not just updated content.

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

    The approval status of the model card 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?content:??? -> ?modelCardStatus:??? -> modelCardName:Values_1.ModelCardNameOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.ModelCardNameOrArn.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