Module Values_0.CreateArtifactRequestSource

Creates an artifact. An artifact is a lineage tracking entity that represents a URI addressable object or data. Some examples are the S3 URI of a dataset and the ECR registry path of an image. For more information, see Amazon SageMaker ML Lineage Tracking.

Sourcetype nonrec t = {
  1. artifactName : ExperimentEntityName.t option;
    (*

    The name of the artifact. Must be unique to your account in an Amazon Web Services Region.

    *)
  2. source : ArtifactSource.t;
    (*

    The ID, ID type, and URI of the source.

    *)
  3. artifactType : String256.t;
    (*

    The artifact type.

    *)
  4. properties : ArtifactProperties.t option;
    (*

    A list of properties to add to the artifact.

    *)
  5. metadataProperties : MetadataProperties.t option;
  6. tags : TagList.t option;
    (*

    A list of tags to apply to the artifact.

    *)
}
Sourceval context_ : string
Sourceval make : ?artifactName:??? -> ?properties:??? -> ?metadataProperties:??? -> ?tags:??? -> source:ArtifactSource.t -> artifactType:String256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Map of ([> `String of StringParameterValue.t ] * [> `String of ArtifactPropertyValue.t ]) list | `String of ExperimentEntityName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String256.t ]) list ] list | `String of SourceUri.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