Module Values_1.CreateModelCardRequestSource

Creates an Amazon SageMaker Model Card. For information about how to use model cards, see Amazon SageMaker Model Card.

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

    The unique name of the model card.

    *)
  2. securityConfig : ModelCardSecurityConfig.t option;
    (*

    An optional Key Management Service key to encrypt, decrypt, and re-encrypt model card content for regulated workloads with highly sensitive data.

    *)
  3. content : ModelCardContent.t;
    (*

    The content of the model card. Content must be in model card JSON schema and provided as a string.

    *)
  4. modelCardStatus : ModelCardStatus.t;
    (*

    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.

    *)
  5. tags : Values_0.TagList.t option;
    (*

    Key-value pairs used to manage metadata for model cards.

    *)
}
Sourceval context_ : string
Sourceval make : ?securityConfig:??? -> ?tags:??? -> modelCardName:Values_0.EntityName.t -> content:ModelCardContent.t -> modelCardStatus:ModelCardStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.EntityName.t | `Structure of (string * [> `String of Values_0.KmsKeyId.t ]) list ]) 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