Module Values_2.ModelCardSource

An Amazon SageMaker Model Card.

Sourcetype nonrec t = {
  1. modelCardArn : Values_1.ModelCardArn.t option;
    (*

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

    *)
  2. modelCardName : Values_0.EntityName.t option;
    (*

    The unique name of the model card.

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

    The version of the model card.

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

    The content of the model card. Content uses the model card JSON schema and provided as a string.

    *)
  5. 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.

    *)
  6. securityConfig : Values_1.ModelCardSecurityConfig.t option;
    (*

    The security configuration used to protect model card data.

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

    The date and time that the model card was created.

    *)
  8. createdBy : Values_0.UserContext.t option;
  9. lastModifiedTime : Values_0.Timestamp.t option;
    (*

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

    *)
  10. lastModifiedBy : Values_0.UserContext.t option;
  11. tags : Values_0.TagList.t option;
    (*

    Key-value pairs used to manage metadata for the model card.

    *)
  12. modelId : Values_0.String_.t option;
    (*

    The unique name (ID) of the model.

    *)
  13. riskRating : Values_0.String_.t option;
    (*

    The risk rating of the model. Different organizations might have different criteria for model card risk ratings. For more information, see Risk ratings.

    *)
  14. modelPackageGroupName : Values_0.String_.t option;
    (*

    The model package group that contains the model package. Only relevant for model cards created for model packages in the Amazon SageMaker Model Registry.

    *)
}
Sourceval make : ?modelCardArn:??? -> ?modelCardName:??? -> ?modelCardVersion:??? -> ?content:??? -> ?modelCardStatus:??? -> ?securityConfig:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> ?tags:??? -> ?modelId:??? -> ?riskRating:??? -> ?modelPackageGroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.ModelCardArn.t | `Structure of (string * [> `String of Values_0.KmsKeyId.t | `Structure of (string * [> `String of string ]) list ]) list | `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