Module Values_2.ModelPackageSummarySource

Provides summary information about a model package.

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

    The name of the model package.

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

    If the model package is a versioned model, the model group that the versioned model belongs to.

    *)
  3. modelPackageVersion : Values_0.ModelPackageVersion.t option;
    (*

    If the model package is a versioned model, the version of the model.

    *)
  4. modelPackageArn : Values_0.ModelPackageArn.t option;
    (*

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

    *)
  5. modelPackageDescription : Values_0.EntityDescription.t option;
    (*

    A brief description of the model package.

    *)
  6. creationTime : Values_0.CreationTime.t option;
    (*

    A timestamp that shows when the model package was created.

    *)
  7. modelPackageStatus : Values_0.ModelPackageStatus.t option;
    (*

    The overall status of the model package.

    *)
  8. modelApprovalStatus : Values_0.ModelApprovalStatus.t option;
    (*

    The approval status of the model. This can be one of the following values. APPROVED - The model is approved REJECTED - The model is rejected. PENDING_MANUAL_APPROVAL - The model is waiting for manual approval.

    *)
  9. modelLifeCycle : Values_1.ModelLifeCycle.t option;
  10. modelPackageRegistrationType : Values_0.ModelPackageRegistrationType.t option;
    (*

    The package registration type of the model package summary.

    *)
}
Sourceval make : ?modelPackageName:??? -> ?modelPackageGroupName:??? -> ?modelPackageVersion:??? -> ?modelPackageArn:??? -> ?modelPackageDescription:??? -> ?creationTime:??? -> ?modelPackageStatus:??? -> ?modelApprovalStatus:??? -> ?modelLifeCycle:??? -> ?modelPackageRegistrationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.ModelPackageVersion.t | `String of Values_0.EntityName.t | `Structure of (string * [> `String of Values_0.EntityName.t ]) list | `Timestamp of Values_0.CreationTime.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