Module Values_0.CreateActionRequestSource

Creates an action. An action is a lineage tracking entity that represents an action or activity. For example, a model deployment or an HPO job. Generally, an action involves at least one input or output artifact. For more information, see Amazon SageMaker ML Lineage Tracking.

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

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

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

    The source type, ID, and URI.

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

    The action type.

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

    The description of the action.

    *)
  5. status : ActionStatus.t option;
    (*

    The status of the action.

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

    A list of properties to add to the action.

    *)
  7. metadataProperties : MetadataProperties.t option;
  8. tags : TagList.t option;
    (*

    A list of tags to apply to the action.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?status:??? -> ?properties:??? -> ?metadataProperties:??? -> ?tags:??? -> actionName:ExperimentEntityName.t -> source:ActionSource.t -> actionType:String256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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 ExperimentEntityName.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