StartExportJob

StartExportJob

Certified

Start an Amazon HealthLake FHIR bulk export job

yaml
type: io.kestra.plugin.aws.healthlake.StartExportJob
yaml
id: healthlake_start_export
namespace: company.team

inputs:
  - id: datastore_id
    type: STRING

tasks:
  - id: start_export
    type: io.kestra.plugin.aws.healthlake.StartExportJob
    region: "{{ secret('AWS_REGION') }}"
    accessKeyId: "{{ secret('AWS_ACCESS_KEY_ID') }}"
    secretKeyId: "{{ secret('AWS_SECRET_ACCESS_KEY') }}"
    datastoreId: "{{ inputs.datastore_id }}"
    outputS3Uri: "s3://my-bucket/healthlake-export/"
    dataAccessRoleArn: "{{ secret('HEALTHLAKE_ROLE_ARN') }}"

  - id: log_job
    type: io.kestra.plugin.core.log.Log
    message: "Export job started: {{ outputs.start_export.jobId }}"
Properties
DefaultPT15M