A low-level client representing Amazon HealthLake
Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud.
client = session.create_client('healthlake')
These are the available methods:
Check if an operation can be paginated.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
True
if the operation can be paginated,
False
otherwise.
Closes underlying endpoint connections.
Creates a Data Store that can ingest and export FHIR formatted data.
See also: AWS API Documentation
Request Syntax
response = client.create_fhir_datastore(
DatastoreName='string',
DatastoreTypeVersion='R4',
SseConfiguration={
'KmsEncryptionConfig': {
'CmkType': 'CUSTOMER_MANAGED_KMS_KEY'|'AWS_OWNED_KMS_KEY',
'KmsKeyId': 'string'
}
},
PreloadDataConfig={
'PreloadDataType': 'SYNTHEA'
},
ClientToken='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
DatastoreName (string) – The user generated name for the Data Store.
DatastoreTypeVersion (string) –
[REQUIRED]
The FHIR version of the Data Store. The only supported version is R4.
SseConfiguration (dict) –
The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
KmsEncryptionConfig (dict) – [REQUIRED]
The KMS encryption configuration used to provide details for data encryption.
CmkType (string) – [REQUIRED]
The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
KmsKeyId (string) –
The KMS encryption key id/alias used to encrypt the Data Store contents at rest.
PreloadDataConfig (dict) –
Optional parameter to preload data upon creation of the Data Store. Currently, the only supported preloaded data is synthetic data generated from Synthea.
PreloadDataType (string) – [REQUIRED]
The type of preloaded data. Only Synthea preloaded data is supported.
ClientToken (string) –
Optional user provided token used for ensuring idempotency.
This field is autopopulated if not provided.
Tags (list) –
Resource tags that are applied to a Data Store when it is created.
(dict) –
A tag is a label consisting of a user-defined key and value. The form for tags is {“Key”, “Value”}
Key (string) – [REQUIRED]
The key portion of a tag. Tag keys are case sensitive.
Value (string) – [REQUIRED]
The value portion of tag. Tag values are case sensitive.
dict
Response Syntax
{
'DatastoreId': 'string',
'DatastoreArn': 'string',
'DatastoreStatus': 'CREATING'|'ACTIVE'|'DELETING'|'DELETED',
'DatastoreEndpoint': 'string'
}
Response Structure
(dict) –
DatastoreId (string) –
The AWS-generated Data Store id. This id is in the output from the initial Data Store creation call.
DatastoreArn (string) –
The datastore ARN is generated during the creation of the Data Store and can be found in the output from the initial Data Store creation call.
DatastoreStatus (string) –
The status of the FHIR Data Store. Possible statuses are ‘CREATING’, ‘ACTIVE’, ‘DELETING’, ‘DELETED’.
DatastoreEndpoint (string) –
The AWS endpoint for the created Data Store. For preview, only US-east-1 endpoints are supported.
Exceptions
Deletes a Data Store.
See also: AWS API Documentation
Request Syntax
response = client.delete_fhir_datastore(
DatastoreId='string'
)
DatastoreId (string) – The AWS-generated ID for the Data Store to be deleted.
dict
Response Syntax
{
'DatastoreId': 'string',
'DatastoreArn': 'string',
'DatastoreStatus': 'CREATING'|'ACTIVE'|'DELETING'|'DELETED',
'DatastoreEndpoint': 'string'
}
Response Structure
(dict) –
DatastoreId (string) –
The AWS-generated ID for the Data Store to be deleted.
DatastoreArn (string) –
The Amazon Resource Name (ARN) that gives Amazon HealthLake access permission.
DatastoreStatus (string) –
The status of the Data Store that the user has requested to be deleted.
DatastoreEndpoint (string) –
The AWS endpoint for the Data Store the user has requested to be deleted.
Exceptions
Gets the properties associated with the FHIR Data Store, including the Data Store ID, Data Store ARN, Data Store name, Data Store status, created at, Data Store type version, and Data Store endpoint.
See also: AWS API Documentation
Request Syntax
response = client.describe_fhir_datastore(
DatastoreId='string'
)
DatastoreId (string) – The AWS-generated Data Store id. This is part of the ‘CreateFHIRDatastore’ output.
dict
Response Syntax
{
'DatastoreProperties': {
'DatastoreId': 'string',
'DatastoreArn': 'string',
'DatastoreName': 'string',
'DatastoreStatus': 'CREATING'|'ACTIVE'|'DELETING'|'DELETED',
'CreatedAt': datetime(2015, 1, 1),
'DatastoreTypeVersion': 'R4',
'DatastoreEndpoint': 'string',
'SseConfiguration': {
'KmsEncryptionConfig': {
'CmkType': 'CUSTOMER_MANAGED_KMS_KEY'|'AWS_OWNED_KMS_KEY',
'KmsKeyId': 'string'
}
},
'PreloadDataConfig': {
'PreloadDataType': 'SYNTHEA'
}
}
}
Response Structure
(dict) –
DatastoreProperties (dict) –
All properties associated with a Data Store, including the Data Store ID, Data Store ARN, Data Store name, Data Store status, created at, Data Store type version, and Data Store endpoint.
DatastoreId (string) –
The AWS-generated ID number for the Data Store.
DatastoreArn (string) –
The Amazon Resource Name used in the creation of the Data Store.
DatastoreName (string) –
The user-generated name for the Data Store.
DatastoreStatus (string) –
The status of the Data Store. Possible statuses are ‘CREATING’, ‘ACTIVE’, ‘DELETING’, or ‘DELETED’.
CreatedAt (datetime) –
The time that a Data Store was created.
DatastoreTypeVersion (string) –
The FHIR version. Only R4 version data is supported.
DatastoreEndpoint (string) –
The AWS endpoint for the Data Store. Each Data Store will have it’s own endpoint with Data Store ID in the endpoint URL.
SseConfiguration (dict) –
The server-side encryption key configuration for a customer provided encryption key (CMK).
KmsEncryptionConfig (dict) –
The KMS encryption configuration used to provide details for data encryption.
CmkType (string) –
The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
KmsKeyId (string) –
The KMS encryption key id/alias used to encrypt the Data Store contents at rest.
PreloadDataConfig (dict) –
The preloaded data configuration for the Data Store. Only data preloaded from Synthea is supported.
PreloadDataType (string) –
The type of preloaded data. Only Synthea preloaded data is supported.
Exceptions
Displays the properties of a FHIR export job, including the ID, ARN, name, and the status of the job.
See also: AWS API Documentation
Request Syntax
response = client.describe_fhir_export_job(
DatastoreId='string',
JobId='string'
)
DatastoreId (string) –
[REQUIRED]
The AWS generated ID for the Data Store from which files are being exported from for an export job.
JobId (string) –
[REQUIRED]
The AWS generated ID for an export job.
dict
Response Syntax
{
'ExportJobProperties': {
'JobId': 'string',
'JobName': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'SubmitTime': datetime(2015, 1, 1),
'EndTime': datetime(2015, 1, 1),
'DatastoreId': 'string',
'OutputDataConfig': {
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
'DataAccessRoleArn': 'string',
'Message': 'string'
}
}
Response Structure
(dict) –
ExportJobProperties (dict) –
Displays the properties of the export job, including the ID, Arn, Name, and the status of the job.
JobId (string) –
The AWS generated ID for an export job.
JobName (string) –
The user generated name for an export job.
JobStatus (string) –
The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.
SubmitTime (datetime) –
The time an export job was initiated.
EndTime (datetime) –
The time an export job completed.
DatastoreId (string) –
The AWS generated ID for the Data Store from which files are being exported for an export job.
OutputDataConfig (dict) –
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Configuration
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) –
The KMS key ID used to access the S3 bucket.
DataAccessRoleArn (string) –
The Amazon Resource Name used during the initiation of the job.
Message (string) –
An explanation of any errors that may have occurred during the export job.
Exceptions
Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.
See also: AWS API Documentation
Request Syntax
response = client.describe_fhir_import_job(
DatastoreId='string',
JobId='string'
)
DatastoreId (string) –
[REQUIRED]
The AWS-generated ID of the Data Store.
JobId (string) –
[REQUIRED]
The AWS-generated job ID.
dict
Response Syntax
{
'ImportJobProperties': {
'JobId': 'string',
'JobName': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'SubmitTime': datetime(2015, 1, 1),
'EndTime': datetime(2015, 1, 1),
'DatastoreId': 'string',
'InputDataConfig': {
'S3Uri': 'string'
},
'JobOutputDataConfig': {
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
'DataAccessRoleArn': 'string',
'Message': 'string'
}
}
Response Structure
(dict) –
ImportJobProperties (dict) –
The properties of the Import job request, including the ID, ARN, name, and the status of the job.
JobId (string) –
The AWS-generated id number for the Import job.
JobName (string) –
The user-generated name for an Import job.
JobStatus (string) –
The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, FAILED.
SubmitTime (datetime) –
The time that the Import job was submitted for processing.
EndTime (datetime) –
The time that the Import job was completed.
DatastoreId (string) –
The datastore id used when the Import job was created.
InputDataConfig (dict) –
The input data configuration that was supplied when the Import job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Uri
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
JobOutputDataConfig (dict) –
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Configuration
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) –
The KMS key ID used to access the S3 bucket.
DataAccessRoleArn (string) –
The Amazon Resource Name (ARN) that gives Amazon HealthLake access to your input data.
Message (string) –
An explanation of any errors that may have occurred during the FHIR import job.
Exceptions
Create a paginator for an operation.
operation_name (string) – The operation name. This is the same name
as the method name on the client. For example, if the
method name is create_foo
, and you’d normally invoke the
operation as client.create_foo(**kwargs)
, if the
create_foo
operation can be paginated, you can use the
call client.get_paginator("create_foo")
.
OperationNotPageableError – Raised if the operation is not
pageable. You can use the client.can_paginate
method to
check if an operation is pageable.
L{botocore.paginate.Paginator}
A paginator object.
Returns an object that can wait for some condition.
waiter_name (str) – The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
The specified waiter object.
botocore.waiter.Waiter
Lists all FHIR Data Stores that are in the user’s account, regardless of Data Store status.
See also: AWS API Documentation
Request Syntax
response = client.list_fhir_datastores(
Filter={
'DatastoreName': 'string',
'DatastoreStatus': 'CREATING'|'ACTIVE'|'DELETING'|'DELETED',
'CreatedBefore': datetime(2015, 1, 1),
'CreatedAfter': datetime(2015, 1, 1)
},
NextToken='string',
MaxResults=123
)
Filter (dict) –
Lists all filters associated with a FHIR Data Store request.
DatastoreName (string) –
Allows the user to filter Data Store results by name.
DatastoreStatus (string) –
Allows the user to filter Data Store results by status.
CreatedBefore (datetime) –
A filter that allows the user to set cutoff dates for records. All Data Stores created before the specified date will be included in the results.
CreatedAfter (datetime) –
A filter that allows the user to set cutoff dates for records. All Data Stores created after the specified date will be included in the results.
NextToken (string) – Fetches the next page of Data Stores when results are paginated.
MaxResults (integer) – The maximum number of Data Stores returned in a single page of a ListFHIRDatastoresRequest call.
dict
Response Syntax
{
'DatastorePropertiesList': [
{
'DatastoreId': 'string',
'DatastoreArn': 'string',
'DatastoreName': 'string',
'DatastoreStatus': 'CREATING'|'ACTIVE'|'DELETING'|'DELETED',
'CreatedAt': datetime(2015, 1, 1),
'DatastoreTypeVersion': 'R4',
'DatastoreEndpoint': 'string',
'SseConfiguration': {
'KmsEncryptionConfig': {
'CmkType': 'CUSTOMER_MANAGED_KMS_KEY'|'AWS_OWNED_KMS_KEY',
'KmsKeyId': 'string'
}
},
'PreloadDataConfig': {
'PreloadDataType': 'SYNTHEA'
}
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
DatastorePropertiesList (list) –
All properties associated with the listed Data Stores.
(dict) –
Displays the properties of the Data Store, including the ID, Arn, name, and the status of the Data Store.
DatastoreId (string) –
The AWS-generated ID number for the Data Store.
DatastoreArn (string) –
The Amazon Resource Name used in the creation of the Data Store.
DatastoreName (string) –
The user-generated name for the Data Store.
DatastoreStatus (string) –
The status of the Data Store. Possible statuses are ‘CREATING’, ‘ACTIVE’, ‘DELETING’, or ‘DELETED’.
CreatedAt (datetime) –
The time that a Data Store was created.
DatastoreTypeVersion (string) –
The FHIR version. Only R4 version data is supported.
DatastoreEndpoint (string) –
The AWS endpoint for the Data Store. Each Data Store will have it’s own endpoint with Data Store ID in the endpoint URL.
SseConfiguration (dict) –
The server-side encryption key configuration for a customer provided encryption key (CMK).
KmsEncryptionConfig (dict) –
The KMS encryption configuration used to provide details for data encryption.
CmkType (string) –
The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
KmsKeyId (string) –
The KMS encryption key id/alias used to encrypt the Data Store contents at rest.
PreloadDataConfig (dict) –
The preloaded data configuration for the Data Store. Only data preloaded from Synthea is supported.
PreloadDataType (string) –
The type of preloaded data. Only Synthea preloaded data is supported.
NextToken (string) –
Pagination token that can be used to retrieve the next page of results.
Exceptions
Lists all FHIR export jobs associated with an account and their statuses.
See also: AWS API Documentation
Request Syntax
response = client.list_fhir_export_jobs(
DatastoreId='string',
NextToken='string',
MaxResults=123,
JobName='string',
JobStatus='SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
SubmittedBefore=datetime(2015, 1, 1),
SubmittedAfter=datetime(2015, 1, 1)
)
DatastoreId (string) –
[REQUIRED]
This parameter limits the response to the export job with the specified Data Store ID.
NextToken (string) – A pagination token used to identify the next page of results to return for a ListFHIRExportJobs query.
MaxResults (integer) – This parameter limits the number of results returned for a ListFHIRExportJobs to a maximum quantity specified by the user.
JobName (string) – This parameter limits the response to the export job with the specified job name.
JobStatus (string) – This parameter limits the response to the export jobs with the specified job status.
SubmittedBefore (datetime) – This parameter limits the response to FHIR export jobs submitted before a user specified date.
SubmittedAfter (datetime) – This parameter limits the response to FHIR export jobs submitted after a user specified date.
dict
Response Syntax
{
'ExportJobPropertiesList': [
{
'JobId': 'string',
'JobName': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'SubmitTime': datetime(2015, 1, 1),
'EndTime': datetime(2015, 1, 1),
'DatastoreId': 'string',
'OutputDataConfig': {
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
'DataAccessRoleArn': 'string',
'Message': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
ExportJobPropertiesList (list) –
The properties of listed FHIR export jobs, including the ID, ARN, name, and the status of the job.
(dict) –
The properties of a FHIR export job, including the ID, ARN, name, and the status of the job.
JobId (string) –
The AWS generated ID for an export job.
JobName (string) –
The user generated name for an export job.
JobStatus (string) –
The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.
SubmitTime (datetime) –
The time an export job was initiated.
EndTime (datetime) –
The time an export job completed.
DatastoreId (string) –
The AWS generated ID for the Data Store from which files are being exported for an export job.
OutputDataConfig (dict) –
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Configuration
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) –
The KMS key ID used to access the S3 bucket.
DataAccessRoleArn (string) –
The Amazon Resource Name used during the initiation of the job.
Message (string) –
An explanation of any errors that may have occurred during the export job.
NextToken (string) –
A pagination token used to identify the next page of results to return for a ListFHIRExportJobs query.
Exceptions
Lists all FHIR import jobs associated with an account and their statuses.
See also: AWS API Documentation
Request Syntax
response = client.list_fhir_import_jobs(
DatastoreId='string',
NextToken='string',
MaxResults=123,
JobName='string',
JobStatus='SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
SubmittedBefore=datetime(2015, 1, 1),
SubmittedAfter=datetime(2015, 1, 1)
)
DatastoreId (string) –
[REQUIRED]
This parameter limits the response to the import job with the specified Data Store ID.
NextToken (string) – A pagination token used to identify the next page of results to return for a ListFHIRImportJobs query.
MaxResults (integer) – This parameter limits the number of results returned for a ListFHIRImportJobs to a maximum quantity specified by the user.
JobName (string) – This parameter limits the response to the import job with the specified job name.
JobStatus (string) – This parameter limits the response to the import job with the specified job status.
SubmittedBefore (datetime) – This parameter limits the response to FHIR import jobs submitted before a user specified date.
SubmittedAfter (datetime) – This parameter limits the response to FHIR import jobs submitted after a user specified date.
dict
Response Syntax
{
'ImportJobPropertiesList': [
{
'JobId': 'string',
'JobName': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'SubmitTime': datetime(2015, 1, 1),
'EndTime': datetime(2015, 1, 1),
'DatastoreId': 'string',
'InputDataConfig': {
'S3Uri': 'string'
},
'JobOutputDataConfig': {
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
'DataAccessRoleArn': 'string',
'Message': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) –
ImportJobPropertiesList (list) –
The properties of a listed FHIR import jobs, including the ID, ARN, name, and the status of the job.
(dict) –
Displays the properties of the import job, including the ID, Arn, Name, and the status of the Data Store.
JobId (string) –
The AWS-generated id number for the Import job.
JobName (string) –
The user-generated name for an Import job.
JobStatus (string) –
The job status for an Import job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, FAILED.
SubmitTime (datetime) –
The time that the Import job was submitted for processing.
EndTime (datetime) –
The time that the Import job was completed.
DatastoreId (string) –
The datastore id used when the Import job was created.
InputDataConfig (dict) –
The input data configuration that was supplied when the Import job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Uri
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
JobOutputDataConfig (dict) –
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: S3Configuration
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) –
The KMS key ID used to access the S3 bucket.
DataAccessRoleArn (string) –
The Amazon Resource Name (ARN) that gives Amazon HealthLake access to your input data.
Message (string) –
An explanation of any errors that may have occurred during the FHIR import job.
NextToken (string) –
A pagination token used to identify the next page of results to return for a ListFHIRImportJobs query.
Exceptions
Returns a list of all existing tags associated with a Data Store.
See also: AWS API Documentation
Request Syntax
response = client.list_tags_for_resource(
ResourceARN='string'
)
ResourceARN (string) –
[REQUIRED]
The Amazon Resource Name(ARN) of the Data Store for which tags are being added.
dict
Response Syntax
{
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
]
}
Response Structure
(dict) –
Tags (list) –
Returns a list of tags associated with a Data Store.
(dict) –
A tag is a label consisting of a user-defined key and value. The form for tags is {“Key”, “Value”}
Key (string) –
The key portion of a tag. Tag keys are case sensitive.
Value (string) –
The value portion of tag. Tag values are case sensitive.
Exceptions
Begins a FHIR export job.
See also: AWS API Documentation
Request Syntax
response = client.start_fhir_export_job(
JobName='string',
OutputDataConfig={
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
DatastoreId='string',
DataAccessRoleArn='string',
ClientToken='string'
)
JobName (string) – The user generated name for an export job.
OutputDataConfig (dict) –
[REQUIRED]
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: S3Configuration
.
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) – [REQUIRED]
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) – [REQUIRED]
The KMS key ID used to access the S3 bucket.
DatastoreId (string) –
[REQUIRED]
The AWS generated ID for the Data Store from which files are being exported for an export job.
DataAccessRoleArn (string) –
[REQUIRED]
The Amazon Resource Name used during the initiation of the job.
ClientToken (string) –
[REQUIRED]
An optional user provided token used for ensuring idempotency.
This field is autopopulated if not provided.
dict
Response Syntax
{
'JobId': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'DatastoreId': 'string'
}
Response Structure
(dict) –
JobId (string) –
The AWS generated ID for an export job.
JobStatus (string) –
The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.
DatastoreId (string) –
The AWS generated ID for the Data Store from which files are being exported for an export job.
Exceptions
Begins a FHIR Import job.
See also: AWS API Documentation
Request Syntax
response = client.start_fhir_import_job(
JobName='string',
InputDataConfig={
'S3Uri': 'string'
},
JobOutputDataConfig={
'S3Configuration': {
'S3Uri': 'string',
'KmsKeyId': 'string'
}
},
DatastoreId='string',
DataAccessRoleArn='string',
ClientToken='string'
)
JobName (string) – The name of the FHIR Import job in the StartFHIRImport job request.
InputDataConfig (dict) –
[REQUIRED]
The input properties of the FHIR Import job in the StartFHIRImport job request.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: S3Uri
.
S3Uri (string) –
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
JobOutputDataConfig (dict) –
[REQUIRED]
The output data configuration that was supplied when the export job was created.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: S3Configuration
.
S3Configuration (dict) –
The output data configuration that was supplied when the export job was created.
S3Uri (string) – [REQUIRED]
The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
KmsKeyId (string) – [REQUIRED]
The KMS key ID used to access the S3 bucket.
DatastoreId (string) –
[REQUIRED]
The AWS-generated Data Store ID.
DataAccessRoleArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) that gives Amazon HealthLake access permission.
ClientToken (string) –
[REQUIRED]
Optional user provided token used for ensuring idempotency.
This field is autopopulated if not provided.
dict
Response Syntax
{
'JobId': 'string',
'JobStatus': 'SUBMITTED'|'IN_PROGRESS'|'COMPLETED_WITH_ERRORS'|'COMPLETED'|'FAILED',
'DatastoreId': 'string'
}
Response Structure
(dict) –
JobId (string) –
The AWS-generated job ID.
JobStatus (string) –
The status of an import job.
DatastoreId (string) –
The AWS-generated Data Store ID.
Exceptions
Adds a user specifed key and value tag to a Data Store.
See also: AWS API Documentation
Request Syntax
response = client.tag_resource(
ResourceARN='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
ResourceARN (string) –
[REQUIRED]
The Amazon Resource Name(ARN)that gives Amazon HealthLake access to the Data Store which tags are being added to.
Tags (list) –
[REQUIRED]
The user specified key and value pair tags being added to a Data Store.
(dict) –
A tag is a label consisting of a user-defined key and value. The form for tags is {“Key”, “Value”}
Key (string) – [REQUIRED]
The key portion of a tag. Tag keys are case sensitive.
Value (string) – [REQUIRED]
The value portion of tag. Tag values are case sensitive.
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
Removes tags from a Data Store.
See also: AWS API Documentation
Request Syntax
response = client.untag_resource(
ResourceARN='string',
TagKeys=[
'string',
]
)
ResourceARN (string) –
[REQUIRED]
”The Amazon Resource Name(ARN) of the Data Store for which tags are being removed
TagKeys (list) –
[REQUIRED]
The keys for the tags to be removed from the Healthlake Data Store.
(string) –
dict
Response Syntax
{}
Response Structure
(dict) –
Exceptions
Client exceptions are available on a client instance via the exceptions
property. For more detailed instructions and examples on the exact usage of client exceptions, see the error handling user guide.
The available client exceptions are:
Access is denied. Your account is not authorized to perform this operation.
Example
try:
...
except client.exceptions.AccessDeniedException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Access is denied. Your account is not authorized to perform this operation.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The Data Store is in a transition state and the user requested action can not be performed.
Example
try:
...
except client.exceptions.ConflictException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The Data Store is in a transition state and the user requested action can not be performed.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
Unknown error occurs in the service.
Example
try:
...
except client.exceptions.InternalServerException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
Unknown error occurs in the service.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The requested Data Store was not found.
Example
try:
...
except client.exceptions.ResourceNotFoundException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The requested Data Store was not found.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The user has exceeded their maximum number of allowed calls to the given API.
Example
try:
...
except client.exceptions.ThrottlingException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The user has exceeded their maximum number of allowed calls to the given API.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The user input parameter was invalid.
Example
try:
...
except client.exceptions.ValidationException as e:
print(e.response)
The parsed error response. All exceptions have a top level Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.
Syntax
{
'Message': 'string',
'Error': {
'Code': 'string',
'Message': 'string'
}
}
Structure
(dict) –
The user input parameter was invalid.
Message (string) –
Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.
The available paginators are: