Module Values.InteractiveConfigurationSource

The configuration to use to enable the different types of interactive use cases in an application.

Sourcetype nonrec t = {
  1. studioEnabled : Boolean.t option;
    (*

    Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.

    *)
  2. livyEndpointEnabled : Boolean.t option;
    (*

    Enables an Apache Livy endpoint that you can connect to and run interactive jobs.

    *)
  3. sessionEnabled : Boolean.t option;
    (*

    Enables interactive sessions on the application. When set to true, you can start interactive sessions using the StartSession operation.

    *)
}
Sourceval make : ?studioEnabled:??? -> ?livyEndpointEnabled:??? -> ?sessionEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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