Module Values.ScriptModeConfigSource

Contains information about algorithm scripts used for the Amazon Braket hybrid job.

Sourcetype nonrec t = {
  1. entryPoint : String_.t;
    (*

    The entry point in the algorithm scripts from where the execution begins in the hybrid job.

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

    The URI that specifies the S3 path to the algorithm scripts used by an Amazon Braket hybrid job.

    *)
  3. compressionType : CompressionType.t option;
    (*

    The type of compression used to store the algorithm scripts in Amazon S3 storage.

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