Module Values_2.LineageMetadataSource

The metadata that tracks relationships between ML artifacts, actions, and contexts.

Sourcetype nonrec t = {
  1. actionArns : MapString2048.t option;
    (*

    The Amazon Resource Name (ARN) of the lineage action.

    *)
  2. artifactArns : MapString2048.t option;
    (*

    The Amazon Resource Name (ARN) of the lineage artifact.

    *)
  3. contextArns : MapString2048.t option;
    (*

    The Amazon Resource Name (ARN) of the lineage context.

    *)
  4. associations : Values_0.AssociationInfoList.t option;
    (*

    The lineage associations.

    *)
}
Sourceval make : ?actionArns:??? -> ?artifactArns:??? -> ?contextArns:??? -> ?associations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `Map of ([> `String of Values_0.String2048.t ] * [> `String of Values_0.String2048.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