Module Values_0.ActionSummarySource

Lists the properties of an action. An action represents an action or activity. Some examples are a workflow step and a model deployment. Generally, an action involves at least one input artifact or output artifact.

Sourcetype nonrec t = {
  1. actionArn : ActionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the action.

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

    The name of the action.

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

    The source of the action.

    *)
  4. actionType : String64.t option;
    (*

    The type of the action.

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

    The status of the action.

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

    When the action was created.

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

    When the action was last modified.

    *)
}
Sourceval make : ?actionArn:??? -> ?actionName:??? -> ?source:??? -> ?actionType:??? -> ?status:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ActionArn.t | `Structure of (string * [> `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