Module Values_0.JupyterServerAppSettingsSource

The JupyterServer app settings.

Sourcetype nonrec t = {
  1. defaultResourceSpec : ResourceSpec.t option;
    (*

    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker AI image used by the JupyterServer app. If you use the LifecycleConfigArns parameter, then this parameter is also required.

    *)
  2. lifecycleConfigArns : LifecycleConfigArns.t option;
    (*

    The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the JupyterServerApp. If you use this parameter, the DefaultResourceSpec parameter is also required. To remove a Lifecycle Config, you must set LifecycleConfigArns to an empty list.

    *)
  3. codeRepositories : CodeRepositories.t option;
    (*

    A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application.

    *)
}
Sourceval make : ?defaultResourceSpec:??? -> ?lifecycleConfigArns:??? -> ?codeRepositories:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of StudioLifecycleConfigArn.t | `Structure of (string * [> `String of RepositoryUrl.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of ImageArn.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