Module Values.S3ConfigurationSource

The configuration of the S3 bucket for either an import or export job. This includes assigning access permissions.

Sourcetype nonrec t = {
  1. s3Uri : S3Uri.t;
    (*

    The S3Uri is the user-specified S3 location of the FHIR data to be imported into AWS HealthLake.

    *)
  2. kmsKeyId : EncryptionKeyID.t;
    (*

    The Key Management Service (KMS) key ID used to access the S3 bucket.

    *)
}
Sourceval context_ : string
Sourceval make : s3Uri:S3Uri.t -> kmsKeyId:EncryptionKeyID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Uri.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