Module Values_0.ArtifactSummarySource

Lists a summary of the properties of an artifact. An artifact represents a URI addressable object or data. Some examples are a dataset and a model.

Sourcetype nonrec t = {
  1. artifactArn : ArtifactArn.t option;
    (*

    The Amazon Resource Name (ARN) of the artifact.

    *)
  2. artifactName : ExperimentEntityName.t option;
    (*

    The name of the artifact.

    *)
  3. source : ArtifactSource.t option;
    (*

    The source of the artifact.

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

    The type of the artifact.

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

    When the artifact was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    When the artifact was last modified.

    *)
}
Sourceval make : ?artifactArn:??? -> ?artifactName:??? -> ?source:??? -> ?artifactType:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArtifactArn.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String256.t ]) list ] list | `String of SourceUri.t ]) 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