Module Values.StartProjectSessionRequestSource

Creates an interactive session, enabling you to manipulate data in a DataBrew project.

Sourcetype nonrec t = {
  1. name : ProjectName.t;
    (*

    The name of the project to act upon.

    *)
  2. assumeControl : AssumeControl.t option;
    (*

    A value that, if true, enables you to take control of a session, even if a different client is currently accessing the project.

    *)
}
Sourceval context_ : string
Sourceval make : ?assumeControl:??? -> name:ProjectName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AssumeControl.t | `String of ProjectName.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