Module Values.StorageConfigSource

The storage configuration for a notebook run in Amazon SageMaker Unified Studio.

Sourcetype nonrec t = {
  1. projectS3Path : S3Path.t option;
    (*

    The Amazon Simple Storage Service path for the project storage.

    *)
  2. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN of the KMS key used for encryption.

    *)
}
Sourceval make : ?projectS3Path:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Path.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