Module Values_0.AssociationSummarySource

Lists a summary of the properties of an association. An association is an entity that links other lineage or experiment entities. An example would be an association between a training job and a model.

Sourcetype nonrec t = {
  1. sourceArn : AssociationEntityArn.t option;
    (*

    The ARN of the source.

    *)
  2. destinationArn : AssociationEntityArn.t option;
    (*

    The Amazon Resource Name (ARN) of the destination.

    *)
  3. sourceType : String256.t option;
    (*

    The source type.

    *)
  4. destinationType : String256.t option;
    (*

    The destination type.

    *)
  5. associationType : AssociationEdgeType.t option;
    (*

    The type of the association.

    *)
  6. sourceName : ExperimentEntityName.t option;
    (*

    The name of the source.

    *)
  7. destinationName : ExperimentEntityName.t option;
    (*

    The name of the destination.

    *)
  8. creationTime : Timestamp.t option;
    (*

    When the association was created.

    *)
  9. createdBy : UserContext.t option;
}
Sourceval make : ?sourceArn:??? -> ?destinationArn:??? -> ?sourceType:??? -> ?destinationType:??? -> ?associationType:??? -> ?sourceName:??? -> ?destinationName:??? -> ?creationTime:??? -> ?createdBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AssociationEntityArn.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list | `Timestamp of 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