Module Values.SessionActionDefinitionSource

The definition of the session action.

Sourcetype nonrec t = {
  1. envEnter : EnvironmentEnterSessionActionDefinition.t option;
    (*

    The environment to enter into.

    *)
  2. envExit : EnvironmentExitSessionActionDefinition.t option;
    (*

    The environment to exit from.

    *)
  3. taskRun : TaskRunSessionActionDefinition.t option;
    (*

    The task run in the session.

    *)
  4. syncInputJobAttachments : SyncInputJobAttachmentsSessionActionDefinition.t option;
    (*

    The session action definition for syncing input job attachments.

    *)
}
Sourceval make : ?envEnter:??? -> ?envExit:??? -> ?taskRun:??? -> ?syncInputJobAttachments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of IntString.t ]) list ]) list | `String of EnvironmentId.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