Module Values.JobCheckpointConfigSource

Contains information about the output locations for hybrid job checkpoint data.

Sourcetype nonrec t = {
  1. localPath : String4096.t option;
    (*

    (Optional) The local directory where checkpoint data is stored. The default directory is /opt/braket/checkpoints/.

    *)
  2. s3Uri : S3Path.t;
    (*

    Identifies the S3 path where you want Amazon Braket to store checkpoint data. For example, s3://bucket-name/key-name-prefix.

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