Module Values.StartFHIRImportJobRequestSource

Start importing bulk FHIR data into an ACTIVE data store. The import job imports FHIR data found in the InputDataConfig object and stores processing results in the JobOutputDataConfig object.

Sourcetype nonrec t = {
  1. jobName : JobName.t option;
    (*

    The import job name.

    *)
  2. inputDataConfig : InputDataConfig.t;
    (*

    The input properties for the import job request.

    *)
  3. jobOutputDataConfig : OutputDataConfig.t;
  4. datastoreId : DatastoreId.t;
    (*

    The data store identifier.

    *)
  5. dataAccessRoleArn : IamRoleArn.t;
    (*

    The Amazon Resource Name (ARN) that grants access permission to AWS HealthLake.

    *)
  6. clientToken : ClientTokenString.t option;
    (*

    The optional user-provided token used for ensuring API idempotency.

    *)
  7. validationLevel : ValidationLevel.t option;
    (*

    The validation level of the import job.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobName:??? -> ?clientToken:??? -> ?validationLevel:??? -> inputDataConfig:InputDataConfig.t -> jobOutputDataConfig:OutputDataConfig.t -> datastoreId:DatastoreId.t -> dataAccessRoleArn:IamRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobName.t | `Structure of (string * [> `String of S3Uri.t | `Structure of (string * [> `String of S3Uri.t ]) list ]) list ]) 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