Module Values_0.KernelGatewayAppSettingsSource

The KernelGateway 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 KernelGateway app. The Amazon SageMaker AI Studio UI does not use the default instance type value set here. The default instance type set here is used when Apps are created using the CLI or CloudFormation and the instance type parameter value is not passed.

    *)
  2. customImages : CustomImages.t option;
    (*

    A list of custom SageMaker AI images that are configured to run as a KernelGateway app. The maximum number of custom images are as follows. On a domain level: 200 On a space level: 5 On a user profile level: 5

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

    The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the the user profile or domain. To remove a Lifecycle Config, you must set LifecycleConfigArns to an empty list.

    *)
}
Sourceval make : ?defaultResourceSpec:??? -> ?customImages:??? -> ?lifecycleConfigArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of StudioLifecycleConfigArn.t | `Structure of (string * [> `Integer of ImageVersionNumber.t | `String of ImageName.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