Module Values_2.PartnerAppSummarySource

A subset of information related to a SageMaker Partner AI App. This information is used as part of the ListPartnerApps API response.

Sourcetype nonrec t = {
  1. arn : Values_1.PartnerAppArn.t option;
    (*

    The ARN of the SageMaker Partner AI App.

    *)
  2. name : Values_1.PartnerAppName.t option;
    (*

    The name of the SageMaker Partner AI App.

    *)
  3. type_ : Values_1.PartnerAppType.t option;
    (*

    The type of SageMaker Partner AI App to create. Must be one of the following: lakera-guard, comet, deepchecks-llm-evaluation, or fiddler.

    *)
  4. status : Values_1.PartnerAppStatus.t option;
    (*

    The status of the SageMaker Partner AI App.

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

    The creation time of the SageMaker Partner AI App.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?status:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.PartnerAppArn.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