Module Values_1.ProfileConfigurationSource

Specifies the job and session values that an admin configures in an Glue usage profile.

Sourcetype nonrec t = {
  1. sessionConfiguration : ConfigurationMap.t option;
    (*

    A key-value map of configuration parameters for Glue sessions.

    *)
  2. jobConfiguration : ConfigurationMap.t option;
    (*

    A key-value map of configuration parameters for Glue jobs.

    *)
}
Sourceval make : ?sessionConfiguration:??? -> ?jobConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of Values_0.NameString.t ] * [> `Structure of (string * [> `List of [> `String of string ] list | `String of Values_0.ConfigValueString.t ]) list ]) 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