Module Values_0.CreateContextRequestSource

Creates a context. A context is a lineage tracking entity that represents a logical grouping of other tracking or experiment entities. Some examples are an endpoint and a model package. For more information, see Amazon SageMaker ML Lineage Tracking.

Sourcetype nonrec t = {
  1. contextName : ContextName.t;
    (*

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

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

    The source type, ID, and URI.

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

    The context type.

    *)
  4. description : ExperimentDescription.t option;
    (*

    The description of the context.

    *)
  5. properties : LineageEntityParameters.t option;
    (*

    A list of properties to add to the context.

    *)
  6. tags : TagList.t option;
    (*

    A list of tags to apply to the context.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?properties:??? -> ?tags:??? -> contextName:ContextName.t -> source:ContextSource.t -> contextType: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 StringParameterValue.t ]) list | `String of ContextName.t | `Structure of (string * [> `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