Module Values.JobOutputDataConfigSource

Specifies the path to the S3 location where you want to store hybrid job artifacts and the encryption key used to store them.

Sourcetype nonrec t = {
  1. kmsKeyId : String2048.t option;
    (*

    The AWS Key Management Service (AWS KMS) key that Amazon Braket uses to encrypt the hybrid job training artifacts at rest using Amazon S3 server-side encryption.

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

    Identifies the S3 path where you want Amazon Braket to store the hybrid job training artifacts. For example, s3://bucket-name/key-name-prefix.

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