aws-sdk-healthlake 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-healthlake.rb +1 -1
- data/lib/aws-sdk-healthlake/client.rb +286 -7
- data/lib/aws-sdk-healthlake/client_api.rb +165 -1
- data/lib/aws-sdk-healthlake/types.rb +435 -8
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f34135b671ab9899458965c12c804a6cb43d951e2d35ad2dda7f48aa9c5cfdb
|
4
|
+
data.tar.gz: 3bceee0b6d6846bdb81aca4740196122e1cf6264ab3d8c0ce9f8082126691c7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa41716213b567ca9394ebfefbdff1cf83a5e8defc6b875f526cfb858815a55d2d3f182f8392f9f5dc3409e2c607253c66a7f8701fab550db9cb724d5ed45269
|
7
|
+
data.tar.gz: 30636167ce8ebd00ac29a5f6422d3f398b57e882e3021c7003f972535eb820b4028f0df429cba34c1f291959157ae67f7f480e2c1ae768b55513d53603478af7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2021-07-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - General availability for Amazon HealthLake. StartFHIRImportJob and StartFHIRExportJob APIs now require AWS KMS parameter. For more information, see the Amazon HealthLake Documentation https://docs.aws.amazon.com/healthlake/index.html.
|
8
|
+
|
4
9
|
1.3.0 (2021-03-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
data/lib/aws-sdk-healthlake.rb
CHANGED
@@ -345,6 +345,10 @@ module Aws::HealthLake
|
|
345
345
|
# @option params [required, String] :datastore_type_version
|
346
346
|
# The FHIR version of the Data Store. The only supported version is R4.
|
347
347
|
#
|
348
|
+
# @option params [Types::SseConfiguration] :sse_configuration
|
349
|
+
# The server-side encryption key configuration for a customer provided
|
350
|
+
# encryption key specified for creating a Data Store.
|
351
|
+
#
|
348
352
|
# @option params [Types::PreloadDataConfig] :preload_data_config
|
349
353
|
# Optional parameter to preload data upon creation of the Data Store.
|
350
354
|
# Currently, the only supported preloaded data is synthetic data
|
@@ -356,6 +360,9 @@ module Aws::HealthLake
|
|
356
360
|
# **A suitable default value is auto-generated.** You should normally
|
357
361
|
# not need to pass this option.**
|
358
362
|
#
|
363
|
+
# @option params [Array<Types::Tag>] :tags
|
364
|
+
# Resource tags that are applied to a Data Store when it is created.
|
365
|
+
#
|
359
366
|
# @return [Types::CreateFHIRDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
360
367
|
#
|
361
368
|
# * {Types::CreateFHIRDatastoreResponse#datastore_id #datastore_id} => String
|
@@ -368,10 +375,22 @@ module Aws::HealthLake
|
|
368
375
|
# resp = client.create_fhir_datastore({
|
369
376
|
# datastore_name: "DatastoreName",
|
370
377
|
# datastore_type_version: "R4", # required, accepts R4
|
378
|
+
# sse_configuration: {
|
379
|
+
# kms_encryption_config: { # required
|
380
|
+
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
381
|
+
# kms_key_id: "EncryptionKeyID",
|
382
|
+
# },
|
383
|
+
# },
|
371
384
|
# preload_data_config: {
|
372
385
|
# preload_data_type: "SYNTHEA", # required, accepts SYNTHEA
|
373
386
|
# },
|
374
387
|
# client_token: "ClientTokenString",
|
388
|
+
# tags: [
|
389
|
+
# {
|
390
|
+
# key: "TagKey", # required
|
391
|
+
# value: "TagValue", # required
|
392
|
+
# },
|
393
|
+
# ],
|
375
394
|
# })
|
376
395
|
#
|
377
396
|
# @example Response structure
|
@@ -451,6 +470,8 @@ module Aws::HealthLake
|
|
451
470
|
# resp.datastore_properties.created_at #=> Time
|
452
471
|
# resp.datastore_properties.datastore_type_version #=> String, one of "R4"
|
453
472
|
# resp.datastore_properties.datastore_endpoint #=> String
|
473
|
+
# resp.datastore_properties.sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
|
474
|
+
# resp.datastore_properties.sse_configuration.kms_encryption_config.kms_key_id #=> String
|
454
475
|
# resp.datastore_properties.preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
|
455
476
|
#
|
456
477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DescribeFHIRDatastore AWS API Documentation
|
@@ -487,11 +508,12 @@ module Aws::HealthLake
|
|
487
508
|
#
|
488
509
|
# resp.export_job_properties.job_id #=> String
|
489
510
|
# resp.export_job_properties.job_name #=> String
|
490
|
-
# resp.export_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED", "FAILED"
|
511
|
+
# resp.export_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
491
512
|
# resp.export_job_properties.submit_time #=> Time
|
492
513
|
# resp.export_job_properties.end_time #=> Time
|
493
514
|
# resp.export_job_properties.datastore_id #=> String
|
494
|
-
# resp.export_job_properties.output_data_config.s3_uri #=> String
|
515
|
+
# resp.export_job_properties.output_data_config.s3_configuration.s3_uri #=> String
|
516
|
+
# resp.export_job_properties.output_data_config.s3_configuration.kms_key_id #=> String
|
495
517
|
# resp.export_job_properties.data_access_role_arn #=> String
|
496
518
|
# resp.export_job_properties.message #=> String
|
497
519
|
#
|
@@ -528,11 +550,13 @@ module Aws::HealthLake
|
|
528
550
|
#
|
529
551
|
# resp.import_job_properties.job_id #=> String
|
530
552
|
# resp.import_job_properties.job_name #=> String
|
531
|
-
# resp.import_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED", "FAILED"
|
553
|
+
# resp.import_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
532
554
|
# resp.import_job_properties.submit_time #=> Time
|
533
555
|
# resp.import_job_properties.end_time #=> Time
|
534
556
|
# resp.import_job_properties.datastore_id #=> String
|
535
557
|
# resp.import_job_properties.input_data_config.s3_uri #=> String
|
558
|
+
# resp.import_job_properties.job_output_data_config.s3_configuration.s3_uri #=> String
|
559
|
+
# resp.import_job_properties.job_output_data_config.s3_configuration.kms_key_id #=> String
|
536
560
|
# resp.import_job_properties.data_access_role_arn #=> String
|
537
561
|
# resp.import_job_properties.message #=> String
|
538
562
|
#
|
@@ -588,6 +612,8 @@ module Aws::HealthLake
|
|
588
612
|
# resp.datastore_properties_list[0].created_at #=> Time
|
589
613
|
# resp.datastore_properties_list[0].datastore_type_version #=> String, one of "R4"
|
590
614
|
# resp.datastore_properties_list[0].datastore_endpoint #=> String
|
615
|
+
# resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
|
616
|
+
# resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.kms_key_id #=> String
|
591
617
|
# resp.datastore_properties_list[0].preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
|
592
618
|
# resp.next_token #=> String
|
593
619
|
#
|
@@ -600,6 +626,186 @@ module Aws::HealthLake
|
|
600
626
|
req.send_request(options)
|
601
627
|
end
|
602
628
|
|
629
|
+
# Lists all FHIR export jobs associated with an account and their
|
630
|
+
# statuses.
|
631
|
+
#
|
632
|
+
# @option params [required, String] :datastore_id
|
633
|
+
# This parameter limits the response to the export job with the
|
634
|
+
# specified Data Store ID.
|
635
|
+
#
|
636
|
+
# @option params [String] :next_token
|
637
|
+
# A pagination token used to identify the next page of results to return
|
638
|
+
# for a ListFHIRExportJobs query.
|
639
|
+
#
|
640
|
+
# @option params [Integer] :max_results
|
641
|
+
# This parameter limits the number of results returned for a
|
642
|
+
# ListFHIRExportJobs to a maximum quantity specified by the user.
|
643
|
+
#
|
644
|
+
# @option params [String] :job_name
|
645
|
+
# This parameter limits the response to the export job with the
|
646
|
+
# specified job name.
|
647
|
+
#
|
648
|
+
# @option params [String] :job_status
|
649
|
+
# This parameter limits the response to the export jobs with the
|
650
|
+
# specified job status.
|
651
|
+
#
|
652
|
+
# @option params [Time,DateTime,Date,Integer,String] :submitted_before
|
653
|
+
# This parameter limits the response to FHIR export jobs submitted
|
654
|
+
# before a user specified date.
|
655
|
+
#
|
656
|
+
# @option params [Time,DateTime,Date,Integer,String] :submitted_after
|
657
|
+
# This parameter limits the response to FHIR export jobs submitted after
|
658
|
+
# a user specified date.
|
659
|
+
#
|
660
|
+
# @return [Types::ListFHIRExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
661
|
+
#
|
662
|
+
# * {Types::ListFHIRExportJobsResponse#export_job_properties_list #export_job_properties_list} => Array<Types::ExportJobProperties>
|
663
|
+
# * {Types::ListFHIRExportJobsResponse#next_token #next_token} => String
|
664
|
+
#
|
665
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
666
|
+
#
|
667
|
+
# @example Request syntax with placeholder values
|
668
|
+
#
|
669
|
+
# resp = client.list_fhir_export_jobs({
|
670
|
+
# datastore_id: "DatastoreId", # required
|
671
|
+
# next_token: "NextToken",
|
672
|
+
# max_results: 1,
|
673
|
+
# job_name: "JobName",
|
674
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
675
|
+
# submitted_before: Time.now,
|
676
|
+
# submitted_after: Time.now,
|
677
|
+
# })
|
678
|
+
#
|
679
|
+
# @example Response structure
|
680
|
+
#
|
681
|
+
# resp.export_job_properties_list #=> Array
|
682
|
+
# resp.export_job_properties_list[0].job_id #=> String
|
683
|
+
# resp.export_job_properties_list[0].job_name #=> String
|
684
|
+
# resp.export_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
685
|
+
# resp.export_job_properties_list[0].submit_time #=> Time
|
686
|
+
# resp.export_job_properties_list[0].end_time #=> Time
|
687
|
+
# resp.export_job_properties_list[0].datastore_id #=> String
|
688
|
+
# resp.export_job_properties_list[0].output_data_config.s3_configuration.s3_uri #=> String
|
689
|
+
# resp.export_job_properties_list[0].output_data_config.s3_configuration.kms_key_id #=> String
|
690
|
+
# resp.export_job_properties_list[0].data_access_role_arn #=> String
|
691
|
+
# resp.export_job_properties_list[0].message #=> String
|
692
|
+
# resp.next_token #=> String
|
693
|
+
#
|
694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRExportJobs AWS API Documentation
|
695
|
+
#
|
696
|
+
# @overload list_fhir_export_jobs(params = {})
|
697
|
+
# @param [Hash] params ({})
|
698
|
+
def list_fhir_export_jobs(params = {}, options = {})
|
699
|
+
req = build_request(:list_fhir_export_jobs, params)
|
700
|
+
req.send_request(options)
|
701
|
+
end
|
702
|
+
|
703
|
+
# Lists all FHIR import jobs associated with an account and their
|
704
|
+
# statuses.
|
705
|
+
#
|
706
|
+
# @option params [required, String] :datastore_id
|
707
|
+
# This parameter limits the response to the import job with the
|
708
|
+
# specified Data Store ID.
|
709
|
+
#
|
710
|
+
# @option params [String] :next_token
|
711
|
+
# A pagination token used to identify the next page of results to return
|
712
|
+
# for a ListFHIRImportJobs query.
|
713
|
+
#
|
714
|
+
# @option params [Integer] :max_results
|
715
|
+
# This parameter limits the number of results returned for a
|
716
|
+
# ListFHIRImportJobs to a maximum quantity specified by the user.
|
717
|
+
#
|
718
|
+
# @option params [String] :job_name
|
719
|
+
# This parameter limits the response to the import job with the
|
720
|
+
# specified job name.
|
721
|
+
#
|
722
|
+
# @option params [String] :job_status
|
723
|
+
# This parameter limits the response to the import job with the
|
724
|
+
# specified job status.
|
725
|
+
#
|
726
|
+
# @option params [Time,DateTime,Date,Integer,String] :submitted_before
|
727
|
+
# This parameter limits the response to FHIR import jobs submitted
|
728
|
+
# before a user specified date.
|
729
|
+
#
|
730
|
+
# @option params [Time,DateTime,Date,Integer,String] :submitted_after
|
731
|
+
# This parameter limits the response to FHIR import jobs submitted after
|
732
|
+
# a user specified date.
|
733
|
+
#
|
734
|
+
# @return [Types::ListFHIRImportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
735
|
+
#
|
736
|
+
# * {Types::ListFHIRImportJobsResponse#import_job_properties_list #import_job_properties_list} => Array<Types::ImportJobProperties>
|
737
|
+
# * {Types::ListFHIRImportJobsResponse#next_token #next_token} => String
|
738
|
+
#
|
739
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
740
|
+
#
|
741
|
+
# @example Request syntax with placeholder values
|
742
|
+
#
|
743
|
+
# resp = client.list_fhir_import_jobs({
|
744
|
+
# datastore_id: "DatastoreId", # required
|
745
|
+
# next_token: "NextToken",
|
746
|
+
# max_results: 1,
|
747
|
+
# job_name: "JobName",
|
748
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
749
|
+
# submitted_before: Time.now,
|
750
|
+
# submitted_after: Time.now,
|
751
|
+
# })
|
752
|
+
#
|
753
|
+
# @example Response structure
|
754
|
+
#
|
755
|
+
# resp.import_job_properties_list #=> Array
|
756
|
+
# resp.import_job_properties_list[0].job_id #=> String
|
757
|
+
# resp.import_job_properties_list[0].job_name #=> String
|
758
|
+
# resp.import_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
759
|
+
# resp.import_job_properties_list[0].submit_time #=> Time
|
760
|
+
# resp.import_job_properties_list[0].end_time #=> Time
|
761
|
+
# resp.import_job_properties_list[0].datastore_id #=> String
|
762
|
+
# resp.import_job_properties_list[0].input_data_config.s3_uri #=> String
|
763
|
+
# resp.import_job_properties_list[0].job_output_data_config.s3_configuration.s3_uri #=> String
|
764
|
+
# resp.import_job_properties_list[0].job_output_data_config.s3_configuration.kms_key_id #=> String
|
765
|
+
# resp.import_job_properties_list[0].data_access_role_arn #=> String
|
766
|
+
# resp.import_job_properties_list[0].message #=> String
|
767
|
+
# resp.next_token #=> String
|
768
|
+
#
|
769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRImportJobs AWS API Documentation
|
770
|
+
#
|
771
|
+
# @overload list_fhir_import_jobs(params = {})
|
772
|
+
# @param [Hash] params ({})
|
773
|
+
def list_fhir_import_jobs(params = {}, options = {})
|
774
|
+
req = build_request(:list_fhir_import_jobs, params)
|
775
|
+
req.send_request(options)
|
776
|
+
end
|
777
|
+
|
778
|
+
# Returns a list of all existing tags associated with a Data Store.
|
779
|
+
#
|
780
|
+
# @option params [required, String] :resource_arn
|
781
|
+
# The Amazon Resource Name(ARN) of the Data Store for which tags are
|
782
|
+
# being added.
|
783
|
+
#
|
784
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
785
|
+
#
|
786
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
787
|
+
#
|
788
|
+
# @example Request syntax with placeholder values
|
789
|
+
#
|
790
|
+
# resp = client.list_tags_for_resource({
|
791
|
+
# resource_arn: "AmazonResourceName", # required
|
792
|
+
# })
|
793
|
+
#
|
794
|
+
# @example Response structure
|
795
|
+
#
|
796
|
+
# resp.tags #=> Array
|
797
|
+
# resp.tags[0].key #=> String
|
798
|
+
# resp.tags[0].value #=> String
|
799
|
+
#
|
800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListTagsForResource AWS API Documentation
|
801
|
+
#
|
802
|
+
# @overload list_tags_for_resource(params = {})
|
803
|
+
# @param [Hash] params ({})
|
804
|
+
def list_tags_for_resource(params = {}, options = {})
|
805
|
+
req = build_request(:list_tags_for_resource, params)
|
806
|
+
req.send_request(options)
|
807
|
+
end
|
808
|
+
|
603
809
|
# Begins a FHIR export job.
|
604
810
|
#
|
605
811
|
# @option params [String] :job_name
|
@@ -633,7 +839,10 @@ module Aws::HealthLake
|
|
633
839
|
# resp = client.start_fhir_export_job({
|
634
840
|
# job_name: "JobName",
|
635
841
|
# output_data_config: { # required
|
636
|
-
#
|
842
|
+
# s3_configuration: {
|
843
|
+
# s3_uri: "S3Uri", # required
|
844
|
+
# kms_key_id: "EncryptionKeyID", # required
|
845
|
+
# },
|
637
846
|
# },
|
638
847
|
# datastore_id: "DatastoreId", # required
|
639
848
|
# data_access_role_arn: "IamRoleArn", # required
|
@@ -643,7 +852,7 @@ module Aws::HealthLake
|
|
643
852
|
# @example Response structure
|
644
853
|
#
|
645
854
|
# resp.job_id #=> String
|
646
|
-
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED", "FAILED"
|
855
|
+
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
647
856
|
# resp.datastore_id #=> String
|
648
857
|
#
|
649
858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRExportJob AWS API Documentation
|
@@ -664,6 +873,10 @@ module Aws::HealthLake
|
|
664
873
|
# The input properties of the FHIR Import job in the StartFHIRImport job
|
665
874
|
# request.
|
666
875
|
#
|
876
|
+
# @option params [required, Types::OutputDataConfig] :job_output_data_config
|
877
|
+
# The output data configuration that was supplied when the export job
|
878
|
+
# was created.
|
879
|
+
#
|
667
880
|
# @option params [required, String] :datastore_id
|
668
881
|
# The AWS-generated Data Store ID.
|
669
882
|
#
|
@@ -690,6 +903,12 @@ module Aws::HealthLake
|
|
690
903
|
# input_data_config: { # required
|
691
904
|
# s3_uri: "S3Uri",
|
692
905
|
# },
|
906
|
+
# job_output_data_config: { # required
|
907
|
+
# s3_configuration: {
|
908
|
+
# s3_uri: "S3Uri", # required
|
909
|
+
# kms_key_id: "EncryptionKeyID", # required
|
910
|
+
# },
|
911
|
+
# },
|
693
912
|
# datastore_id: "DatastoreId", # required
|
694
913
|
# data_access_role_arn: "IamRoleArn", # required
|
695
914
|
# client_token: "ClientTokenString", # required
|
@@ -698,7 +917,7 @@ module Aws::HealthLake
|
|
698
917
|
# @example Response structure
|
699
918
|
#
|
700
919
|
# resp.job_id #=> String
|
701
|
-
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED", "FAILED"
|
920
|
+
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
702
921
|
# resp.datastore_id #=> String
|
703
922
|
#
|
704
923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRImportJob AWS API Documentation
|
@@ -710,6 +929,66 @@ module Aws::HealthLake
|
|
710
929
|
req.send_request(options)
|
711
930
|
end
|
712
931
|
|
932
|
+
# Adds a user specifed key and value tag to a Data Store.
|
933
|
+
#
|
934
|
+
# @option params [required, String] :resource_arn
|
935
|
+
# The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
|
936
|
+
# the Data Store which tags are being added to.
|
937
|
+
#
|
938
|
+
# @option params [required, Array<Types::Tag>] :tags
|
939
|
+
# The user specified key and value pair tags being added to a Data
|
940
|
+
# Store.
|
941
|
+
#
|
942
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
943
|
+
#
|
944
|
+
# @example Request syntax with placeholder values
|
945
|
+
#
|
946
|
+
# resp = client.tag_resource({
|
947
|
+
# resource_arn: "AmazonResourceName", # required
|
948
|
+
# tags: [ # required
|
949
|
+
# {
|
950
|
+
# key: "TagKey", # required
|
951
|
+
# value: "TagValue", # required
|
952
|
+
# },
|
953
|
+
# ],
|
954
|
+
# })
|
955
|
+
#
|
956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/TagResource AWS API Documentation
|
957
|
+
#
|
958
|
+
# @overload tag_resource(params = {})
|
959
|
+
# @param [Hash] params ({})
|
960
|
+
def tag_resource(params = {}, options = {})
|
961
|
+
req = build_request(:tag_resource, params)
|
962
|
+
req.send_request(options)
|
963
|
+
end
|
964
|
+
|
965
|
+
# Removes tags from a Data Store.
|
966
|
+
#
|
967
|
+
# @option params [required, String] :resource_arn
|
968
|
+
# "The Amazon Resource Name(ARN) of the Data Store for which tags are
|
969
|
+
# being removed
|
970
|
+
#
|
971
|
+
# @option params [required, Array<String>] :tag_keys
|
972
|
+
# The keys for the tags to be removed from the Healthlake Data Store.
|
973
|
+
#
|
974
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
975
|
+
#
|
976
|
+
# @example Request syntax with placeholder values
|
977
|
+
#
|
978
|
+
# resp = client.untag_resource({
|
979
|
+
# resource_arn: "AmazonResourceName", # required
|
980
|
+
# tag_keys: ["TagKey"], # required
|
981
|
+
# })
|
982
|
+
#
|
983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/UntagResource AWS API Documentation
|
984
|
+
#
|
985
|
+
# @overload untag_resource(params = {})
|
986
|
+
# @param [Hash] params ({})
|
987
|
+
def untag_resource(params = {}, options = {})
|
988
|
+
req = build_request(:untag_resource, params)
|
989
|
+
req.send_request(options)
|
990
|
+
end
|
991
|
+
|
713
992
|
# @!endgroup
|
714
993
|
|
715
994
|
# @param params ({})
|
@@ -723,7 +1002,7 @@ module Aws::HealthLake
|
|
723
1002
|
params: params,
|
724
1003
|
config: config)
|
725
1004
|
context[:gem_name] = 'aws-sdk-healthlake'
|
726
|
-
context[:gem_version] = '1.
|
1005
|
+
context[:gem_version] = '1.4.0'
|
727
1006
|
Seahorse::Client::Request.new(handlers, context)
|
728
1007
|
end
|
729
1008
|
|
@@ -14,8 +14,10 @@ module Aws::HealthLake
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
17
|
+
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
17
18
|
BoundedLengthString = Shapes::StringShape.new(name: 'BoundedLengthString')
|
18
19
|
ClientTokenString = Shapes::StringShape.new(name: 'ClientTokenString')
|
20
|
+
CmkType = Shapes::StringShape.new(name: 'CmkType')
|
19
21
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
20
22
|
CreateFHIRDatastoreRequest = Shapes::StructureShape.new(name: 'CreateFHIRDatastoreRequest')
|
21
23
|
CreateFHIRDatastoreResponse = Shapes::StructureShape.new(name: 'CreateFHIRDatastoreResponse')
|
@@ -34,17 +36,27 @@ module Aws::HealthLake
|
|
34
36
|
DescribeFHIRExportJobResponse = Shapes::StructureShape.new(name: 'DescribeFHIRExportJobResponse')
|
35
37
|
DescribeFHIRImportJobRequest = Shapes::StructureShape.new(name: 'DescribeFHIRImportJobRequest')
|
36
38
|
DescribeFHIRImportJobResponse = Shapes::StructureShape.new(name: 'DescribeFHIRImportJobResponse')
|
39
|
+
EncryptionKeyID = Shapes::StringShape.new(name: 'EncryptionKeyID')
|
37
40
|
ExportJobProperties = Shapes::StructureShape.new(name: 'ExportJobProperties')
|
41
|
+
ExportJobPropertiesList = Shapes::ListShape.new(name: 'ExportJobPropertiesList')
|
38
42
|
FHIRVersion = Shapes::StringShape.new(name: 'FHIRVersion')
|
39
43
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
40
44
|
ImportJobProperties = Shapes::StructureShape.new(name: 'ImportJobProperties')
|
45
|
+
ImportJobPropertiesList = Shapes::ListShape.new(name: 'ImportJobPropertiesList')
|
41
46
|
InputDataConfig = Shapes::StructureShape.new(name: 'InputDataConfig')
|
42
47
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
43
48
|
JobId = Shapes::StringShape.new(name: 'JobId')
|
44
49
|
JobName = Shapes::StringShape.new(name: 'JobName')
|
45
50
|
JobStatus = Shapes::StringShape.new(name: 'JobStatus')
|
51
|
+
KmsEncryptionConfig = Shapes::StructureShape.new(name: 'KmsEncryptionConfig')
|
46
52
|
ListFHIRDatastoresRequest = Shapes::StructureShape.new(name: 'ListFHIRDatastoresRequest')
|
47
53
|
ListFHIRDatastoresResponse = Shapes::StructureShape.new(name: 'ListFHIRDatastoresResponse')
|
54
|
+
ListFHIRExportJobsRequest = Shapes::StructureShape.new(name: 'ListFHIRExportJobsRequest')
|
55
|
+
ListFHIRExportJobsResponse = Shapes::StructureShape.new(name: 'ListFHIRExportJobsResponse')
|
56
|
+
ListFHIRImportJobsRequest = Shapes::StructureShape.new(name: 'ListFHIRImportJobsRequest')
|
57
|
+
ListFHIRImportJobsResponse = Shapes::StructureShape.new(name: 'ListFHIRImportJobsResponse')
|
58
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
59
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
48
60
|
MaxResultsInteger = Shapes::IntegerShape.new(name: 'MaxResultsInteger')
|
49
61
|
Message = Shapes::StringShape.new(name: 'Message')
|
50
62
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
@@ -52,14 +64,25 @@ module Aws::HealthLake
|
|
52
64
|
PreloadDataConfig = Shapes::StructureShape.new(name: 'PreloadDataConfig')
|
53
65
|
PreloadDataType = Shapes::StringShape.new(name: 'PreloadDataType')
|
54
66
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
67
|
+
S3Configuration = Shapes::StructureShape.new(name: 'S3Configuration')
|
55
68
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
69
|
+
SseConfiguration = Shapes::StructureShape.new(name: 'SseConfiguration')
|
56
70
|
StartFHIRExportJobRequest = Shapes::StructureShape.new(name: 'StartFHIRExportJobRequest')
|
57
71
|
StartFHIRExportJobResponse = Shapes::StructureShape.new(name: 'StartFHIRExportJobResponse')
|
58
72
|
StartFHIRImportJobRequest = Shapes::StructureShape.new(name: 'StartFHIRImportJobRequest')
|
59
73
|
StartFHIRImportJobResponse = Shapes::StructureShape.new(name: 'StartFHIRImportJobResponse')
|
60
74
|
String = Shapes::StringShape.new(name: 'String')
|
75
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
76
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
77
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
78
|
+
TagList = Shapes::ListShape.new(name: 'TagList')
|
79
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
80
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
81
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
61
82
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
62
83
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
84
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
85
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
63
86
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
64
87
|
|
65
88
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -70,8 +93,10 @@ module Aws::HealthLake
|
|
70
93
|
|
71
94
|
CreateFHIRDatastoreRequest.add_member(:datastore_name, Shapes::ShapeRef.new(shape: DatastoreName, location_name: "DatastoreName"))
|
72
95
|
CreateFHIRDatastoreRequest.add_member(:datastore_type_version, Shapes::ShapeRef.new(shape: FHIRVersion, required: true, location_name: "DatastoreTypeVersion"))
|
96
|
+
CreateFHIRDatastoreRequest.add_member(:sse_configuration, Shapes::ShapeRef.new(shape: SseConfiguration, location_name: "SseConfiguration"))
|
73
97
|
CreateFHIRDatastoreRequest.add_member(:preload_data_config, Shapes::ShapeRef.new(shape: PreloadDataConfig, location_name: "PreloadDataConfig"))
|
74
98
|
CreateFHIRDatastoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
99
|
+
CreateFHIRDatastoreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
75
100
|
CreateFHIRDatastoreRequest.struct_class = Types::CreateFHIRDatastoreRequest
|
76
101
|
|
77
102
|
CreateFHIRDatastoreResponse.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
@@ -93,6 +118,7 @@ module Aws::HealthLake
|
|
93
118
|
DatastoreProperties.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
94
119
|
DatastoreProperties.add_member(:datastore_type_version, Shapes::ShapeRef.new(shape: FHIRVersion, required: true, location_name: "DatastoreTypeVersion"))
|
95
120
|
DatastoreProperties.add_member(:datastore_endpoint, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DatastoreEndpoint"))
|
121
|
+
DatastoreProperties.add_member(:sse_configuration, Shapes::ShapeRef.new(shape: SseConfiguration, location_name: "SseConfiguration"))
|
96
122
|
DatastoreProperties.add_member(:preload_data_config, Shapes::ShapeRef.new(shape: PreloadDataConfig, location_name: "PreloadDataConfig"))
|
97
123
|
DatastoreProperties.struct_class = Types::DatastoreProperties
|
98
124
|
|
@@ -138,6 +164,8 @@ module Aws::HealthLake
|
|
138
164
|
ExportJobProperties.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
139
165
|
ExportJobProperties.struct_class = Types::ExportJobProperties
|
140
166
|
|
167
|
+
ExportJobPropertiesList.member = Shapes::ShapeRef.new(shape: ExportJobProperties)
|
168
|
+
|
141
169
|
ImportJobProperties.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
|
142
170
|
ImportJobProperties.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
143
171
|
ImportJobProperties.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, required: true, location_name: "JobStatus"))
|
@@ -145,16 +173,23 @@ module Aws::HealthLake
|
|
145
173
|
ImportJobProperties.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTime"))
|
146
174
|
ImportJobProperties.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
147
175
|
ImportJobProperties.add_member(:input_data_config, Shapes::ShapeRef.new(shape: InputDataConfig, required: true, location_name: "InputDataConfig"))
|
176
|
+
ImportJobProperties.add_member(:job_output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, location_name: "JobOutputDataConfig"))
|
148
177
|
ImportJobProperties.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "DataAccessRoleArn"))
|
149
178
|
ImportJobProperties.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
150
179
|
ImportJobProperties.struct_class = Types::ImportJobProperties
|
151
180
|
|
181
|
+
ImportJobPropertiesList.member = Shapes::ShapeRef.new(shape: ImportJobProperties)
|
182
|
+
|
152
183
|
InputDataConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3Uri"))
|
153
184
|
InputDataConfig.struct_class = Types::InputDataConfig
|
154
185
|
|
155
186
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
156
187
|
InternalServerException.struct_class = Types::InternalServerException
|
157
188
|
|
189
|
+
KmsEncryptionConfig.add_member(:cmk_type, Shapes::ShapeRef.new(shape: CmkType, required: true, location_name: "CmkType"))
|
190
|
+
KmsEncryptionConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: EncryptionKeyID, location_name: "KmsKeyId"))
|
191
|
+
KmsEncryptionConfig.struct_class = Types::KmsEncryptionConfig
|
192
|
+
|
158
193
|
ListFHIRDatastoresRequest.add_member(:filter, Shapes::ShapeRef.new(shape: DatastoreFilter, location_name: "Filter"))
|
159
194
|
ListFHIRDatastoresRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
160
195
|
ListFHIRDatastoresRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsInteger, location_name: "MaxResults"))
|
@@ -164,7 +199,39 @@ module Aws::HealthLake
|
|
164
199
|
ListFHIRDatastoresResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
165
200
|
ListFHIRDatastoresResponse.struct_class = Types::ListFHIRDatastoresResponse
|
166
201
|
|
167
|
-
|
202
|
+
ListFHIRExportJobsRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
203
|
+
ListFHIRExportJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
204
|
+
ListFHIRExportJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsInteger, location_name: "MaxResults"))
|
205
|
+
ListFHIRExportJobsRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
206
|
+
ListFHIRExportJobsRequest.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, location_name: "JobStatus"))
|
207
|
+
ListFHIRExportJobsRequest.add_member(:submitted_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SubmittedBefore"))
|
208
|
+
ListFHIRExportJobsRequest.add_member(:submitted_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SubmittedAfter"))
|
209
|
+
ListFHIRExportJobsRequest.struct_class = Types::ListFHIRExportJobsRequest
|
210
|
+
|
211
|
+
ListFHIRExportJobsResponse.add_member(:export_job_properties_list, Shapes::ShapeRef.new(shape: ExportJobPropertiesList, required: true, location_name: "ExportJobPropertiesList"))
|
212
|
+
ListFHIRExportJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
213
|
+
ListFHIRExportJobsResponse.struct_class = Types::ListFHIRExportJobsResponse
|
214
|
+
|
215
|
+
ListFHIRImportJobsRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
216
|
+
ListFHIRImportJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
217
|
+
ListFHIRImportJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsInteger, location_name: "MaxResults"))
|
218
|
+
ListFHIRImportJobsRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
219
|
+
ListFHIRImportJobsRequest.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, location_name: "JobStatus"))
|
220
|
+
ListFHIRImportJobsRequest.add_member(:submitted_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SubmittedBefore"))
|
221
|
+
ListFHIRImportJobsRequest.add_member(:submitted_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SubmittedAfter"))
|
222
|
+
ListFHIRImportJobsRequest.struct_class = Types::ListFHIRImportJobsRequest
|
223
|
+
|
224
|
+
ListFHIRImportJobsResponse.add_member(:import_job_properties_list, Shapes::ShapeRef.new(shape: ImportJobPropertiesList, required: true, location_name: "ImportJobPropertiesList"))
|
225
|
+
ListFHIRImportJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
226
|
+
ListFHIRImportJobsResponse.struct_class = Types::ListFHIRImportJobsResponse
|
227
|
+
|
228
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
229
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
230
|
+
|
231
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
232
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
233
|
+
|
234
|
+
OutputDataConfig.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3Configuration, location_name: "S3Configuration"))
|
168
235
|
OutputDataConfig.struct_class = Types::OutputDataConfig
|
169
236
|
|
170
237
|
PreloadDataConfig.add_member(:preload_data_type, Shapes::ShapeRef.new(shape: PreloadDataType, required: true, location_name: "PreloadDataType"))
|
@@ -173,6 +240,13 @@ module Aws::HealthLake
|
|
173
240
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
174
241
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
175
242
|
|
243
|
+
S3Configuration.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
|
244
|
+
S3Configuration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: EncryptionKeyID, required: true, location_name: "KmsKeyId"))
|
245
|
+
S3Configuration.struct_class = Types::S3Configuration
|
246
|
+
|
247
|
+
SseConfiguration.add_member(:kms_encryption_config, Shapes::ShapeRef.new(shape: KmsEncryptionConfig, required: true, location_name: "KmsEncryptionConfig"))
|
248
|
+
SseConfiguration.struct_class = Types::SseConfiguration
|
249
|
+
|
176
250
|
StartFHIRExportJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
177
251
|
StartFHIRExportJobRequest.add_member(:output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, required: true, location_name: "OutputDataConfig"))
|
178
252
|
StartFHIRExportJobRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
@@ -187,6 +261,7 @@ module Aws::HealthLake
|
|
187
261
|
|
188
262
|
StartFHIRImportJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
189
263
|
StartFHIRImportJobRequest.add_member(:input_data_config, Shapes::ShapeRef.new(shape: InputDataConfig, required: true, location_name: "InputDataConfig"))
|
264
|
+
StartFHIRImportJobRequest.add_member(:job_output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, required: true, location_name: "JobOutputDataConfig"))
|
190
265
|
StartFHIRImportJobRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
191
266
|
StartFHIRImportJobRequest.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "DataAccessRoleArn"))
|
192
267
|
StartFHIRImportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, required: true, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
@@ -197,9 +272,29 @@ module Aws::HealthLake
|
|
197
272
|
StartFHIRImportJobResponse.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, location_name: "DatastoreId"))
|
198
273
|
StartFHIRImportJobResponse.struct_class = Types::StartFHIRImportJobResponse
|
199
274
|
|
275
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
276
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
277
|
+
Tag.struct_class = Types::Tag
|
278
|
+
|
279
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
280
|
+
|
281
|
+
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
282
|
+
|
283
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
284
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
285
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
286
|
+
|
287
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
288
|
+
|
200
289
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
201
290
|
ThrottlingException.struct_class = Types::ThrottlingException
|
202
291
|
|
292
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
293
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
294
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
295
|
+
|
296
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
297
|
+
|
203
298
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
204
299
|
ValidationException.struct_class = Types::ValidationException
|
205
300
|
|
@@ -231,6 +326,7 @@ module Aws::HealthLake
|
|
231
326
|
o.output = Shapes::ShapeRef.new(shape: CreateFHIRDatastoreResponse)
|
232
327
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
233
328
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
329
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
234
330
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
235
331
|
end)
|
236
332
|
|
@@ -301,6 +397,54 @@ module Aws::HealthLake
|
|
301
397
|
)
|
302
398
|
end)
|
303
399
|
|
400
|
+
api.add_operation(:list_fhir_export_jobs, Seahorse::Model::Operation.new.tap do |o|
|
401
|
+
o.name = "ListFHIRExportJobs"
|
402
|
+
o.http_method = "POST"
|
403
|
+
o.http_request_uri = "/"
|
404
|
+
o.input = Shapes::ShapeRef.new(shape: ListFHIRExportJobsRequest)
|
405
|
+
o.output = Shapes::ShapeRef.new(shape: ListFHIRExportJobsResponse)
|
406
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
407
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
408
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
409
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
410
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
411
|
+
o[:pager] = Aws::Pager.new(
|
412
|
+
limit_key: "max_results",
|
413
|
+
tokens: {
|
414
|
+
"next_token" => "next_token"
|
415
|
+
}
|
416
|
+
)
|
417
|
+
end)
|
418
|
+
|
419
|
+
api.add_operation(:list_fhir_import_jobs, Seahorse::Model::Operation.new.tap do |o|
|
420
|
+
o.name = "ListFHIRImportJobs"
|
421
|
+
o.http_method = "POST"
|
422
|
+
o.http_request_uri = "/"
|
423
|
+
o.input = Shapes::ShapeRef.new(shape: ListFHIRImportJobsRequest)
|
424
|
+
o.output = Shapes::ShapeRef.new(shape: ListFHIRImportJobsResponse)
|
425
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
426
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
427
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
428
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
429
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
430
|
+
o[:pager] = Aws::Pager.new(
|
431
|
+
limit_key: "max_results",
|
432
|
+
tokens: {
|
433
|
+
"next_token" => "next_token"
|
434
|
+
}
|
435
|
+
)
|
436
|
+
end)
|
437
|
+
|
438
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
439
|
+
o.name = "ListTagsForResource"
|
440
|
+
o.http_method = "POST"
|
441
|
+
o.http_request_uri = "/"
|
442
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
443
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
444
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
445
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
446
|
+
end)
|
447
|
+
|
304
448
|
api.add_operation(:start_fhir_export_job, Seahorse::Model::Operation.new.tap do |o|
|
305
449
|
o.name = "StartFHIRExportJob"
|
306
450
|
o.http_method = "POST"
|
@@ -326,6 +470,26 @@ module Aws::HealthLake
|
|
326
470
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
327
471
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
328
472
|
end)
|
473
|
+
|
474
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
475
|
+
o.name = "TagResource"
|
476
|
+
o.http_method = "POST"
|
477
|
+
o.http_request_uri = "/"
|
478
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
479
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
480
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
481
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
482
|
+
end)
|
483
|
+
|
484
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
485
|
+
o.name = "UntagResource"
|
486
|
+
o.http_method = "POST"
|
487
|
+
o.http_request_uri = "/"
|
488
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
489
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
490
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
491
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
492
|
+
end)
|
329
493
|
end
|
330
494
|
|
331
495
|
end
|
@@ -44,10 +44,22 @@ module Aws::HealthLake
|
|
44
44
|
# {
|
45
45
|
# datastore_name: "DatastoreName",
|
46
46
|
# datastore_type_version: "R4", # required, accepts R4
|
47
|
+
# sse_configuration: {
|
48
|
+
# kms_encryption_config: { # required
|
49
|
+
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
50
|
+
# kms_key_id: "EncryptionKeyID",
|
51
|
+
# },
|
52
|
+
# },
|
47
53
|
# preload_data_config: {
|
48
54
|
# preload_data_type: "SYNTHEA", # required, accepts SYNTHEA
|
49
55
|
# },
|
50
56
|
# client_token: "ClientTokenString",
|
57
|
+
# tags: [
|
58
|
+
# {
|
59
|
+
# key: "TagKey", # required
|
60
|
+
# value: "TagValue", # required
|
61
|
+
# },
|
62
|
+
# ],
|
51
63
|
# }
|
52
64
|
#
|
53
65
|
# @!attribute [rw] datastore_name
|
@@ -59,6 +71,11 @@ module Aws::HealthLake
|
|
59
71
|
# R4.
|
60
72
|
# @return [String]
|
61
73
|
#
|
74
|
+
# @!attribute [rw] sse_configuration
|
75
|
+
# The server-side encryption key configuration for a customer provided
|
76
|
+
# encryption key specified for creating a Data Store.
|
77
|
+
# @return [Types::SseConfiguration]
|
78
|
+
#
|
62
79
|
# @!attribute [rw] preload_data_config
|
63
80
|
# Optional parameter to preload data upon creation of the Data Store.
|
64
81
|
# Currently, the only supported preloaded data is synthetic data
|
@@ -72,13 +89,19 @@ module Aws::HealthLake
|
|
72
89
|
# not need to pass this option.
|
73
90
|
# @return [String]
|
74
91
|
#
|
92
|
+
# @!attribute [rw] tags
|
93
|
+
# Resource tags that are applied to a Data Store when it is created.
|
94
|
+
# @return [Array<Types::Tag>]
|
95
|
+
#
|
75
96
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/CreateFHIRDatastoreRequest AWS API Documentation
|
76
97
|
#
|
77
98
|
class CreateFHIRDatastoreRequest < Struct.new(
|
78
99
|
:datastore_name,
|
79
100
|
:datastore_type_version,
|
101
|
+
:sse_configuration,
|
80
102
|
:preload_data_config,
|
81
|
-
:client_token
|
103
|
+
:client_token,
|
104
|
+
:tags)
|
82
105
|
SENSITIVE = []
|
83
106
|
include Aws::Structure
|
84
107
|
end
|
@@ -191,6 +214,11 @@ module Aws::HealthLake
|
|
191
214
|
# own endpoint with Data Store ID in the endpoint URL.
|
192
215
|
# @return [String]
|
193
216
|
#
|
217
|
+
# @!attribute [rw] sse_configuration
|
218
|
+
# The server-side encryption key configuration for a customer provided
|
219
|
+
# encryption key (CMK).
|
220
|
+
# @return [Types::SseConfiguration]
|
221
|
+
#
|
194
222
|
# @!attribute [rw] preload_data_config
|
195
223
|
# The preloaded data configuration for the Data Store. Only data
|
196
224
|
# preloaded from Synthea is supported.
|
@@ -206,6 +234,7 @@ module Aws::HealthLake
|
|
206
234
|
:created_at,
|
207
235
|
:datastore_type_version,
|
208
236
|
:datastore_endpoint,
|
237
|
+
:sse_configuration,
|
209
238
|
:preload_data_config)
|
210
239
|
SENSITIVE = []
|
211
240
|
include Aws::Structure
|
@@ -463,6 +492,11 @@ module Aws::HealthLake
|
|
463
492
|
# was created.
|
464
493
|
# @return [Types::InputDataConfig]
|
465
494
|
#
|
495
|
+
# @!attribute [rw] job_output_data_config
|
496
|
+
# The output data configuration that was supplied when the export job
|
497
|
+
# was created.
|
498
|
+
# @return [Types::OutputDataConfig]
|
499
|
+
#
|
466
500
|
# @!attribute [rw] data_access_role_arn
|
467
501
|
# The Amazon Resource Name (ARN) that gives Amazon HealthLake access
|
468
502
|
# to your input data.
|
@@ -483,6 +517,7 @@ module Aws::HealthLake
|
|
483
517
|
:end_time,
|
484
518
|
:datastore_id,
|
485
519
|
:input_data_config,
|
520
|
+
:job_output_data_config,
|
486
521
|
:data_access_role_arn,
|
487
522
|
:message)
|
488
523
|
SENSITIVE = []
|
@@ -524,6 +559,37 @@ module Aws::HealthLake
|
|
524
559
|
include Aws::Structure
|
525
560
|
end
|
526
561
|
|
562
|
+
# The customer-managed-key(CMK) used when creating a Data Store. If a
|
563
|
+
# customer owned key is not specified, an AWS owned key will be used for
|
564
|
+
# encryption.
|
565
|
+
#
|
566
|
+
# @note When making an API call, you may pass KmsEncryptionConfig
|
567
|
+
# data as a hash:
|
568
|
+
#
|
569
|
+
# {
|
570
|
+
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
571
|
+
# kms_key_id: "EncryptionKeyID",
|
572
|
+
# }
|
573
|
+
#
|
574
|
+
# @!attribute [rw] cmk_type
|
575
|
+
# The type of customer-managed-key(CMK) used for encyrption. The two
|
576
|
+
# types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
577
|
+
# @return [String]
|
578
|
+
#
|
579
|
+
# @!attribute [rw] kms_key_id
|
580
|
+
# The KMS encryption key id/alias used to encrypt the Data Store
|
581
|
+
# contents at rest.
|
582
|
+
# @return [String]
|
583
|
+
#
|
584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/KmsEncryptionConfig AWS API Documentation
|
585
|
+
#
|
586
|
+
class KmsEncryptionConfig < Struct.new(
|
587
|
+
:cmk_type,
|
588
|
+
:kms_key_id)
|
589
|
+
SENSITIVE = []
|
590
|
+
include Aws::Structure
|
591
|
+
end
|
592
|
+
|
527
593
|
# @note When making an API call, you may pass ListFHIRDatastoresRequest
|
528
594
|
# data as a hash:
|
529
595
|
#
|
@@ -579,6 +645,200 @@ module Aws::HealthLake
|
|
579
645
|
include Aws::Structure
|
580
646
|
end
|
581
647
|
|
648
|
+
# @note When making an API call, you may pass ListFHIRExportJobsRequest
|
649
|
+
# data as a hash:
|
650
|
+
#
|
651
|
+
# {
|
652
|
+
# datastore_id: "DatastoreId", # required
|
653
|
+
# next_token: "NextToken",
|
654
|
+
# max_results: 1,
|
655
|
+
# job_name: "JobName",
|
656
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
657
|
+
# submitted_before: Time.now,
|
658
|
+
# submitted_after: Time.now,
|
659
|
+
# }
|
660
|
+
#
|
661
|
+
# @!attribute [rw] datastore_id
|
662
|
+
# This parameter limits the response to the export job with the
|
663
|
+
# specified Data Store ID.
|
664
|
+
# @return [String]
|
665
|
+
#
|
666
|
+
# @!attribute [rw] next_token
|
667
|
+
# A pagination token used to identify the next page of results to
|
668
|
+
# return for a ListFHIRExportJobs query.
|
669
|
+
# @return [String]
|
670
|
+
#
|
671
|
+
# @!attribute [rw] max_results
|
672
|
+
# This parameter limits the number of results returned for a
|
673
|
+
# ListFHIRExportJobs to a maximum quantity specified by the user.
|
674
|
+
# @return [Integer]
|
675
|
+
#
|
676
|
+
# @!attribute [rw] job_name
|
677
|
+
# This parameter limits the response to the export job with the
|
678
|
+
# specified job name.
|
679
|
+
# @return [String]
|
680
|
+
#
|
681
|
+
# @!attribute [rw] job_status
|
682
|
+
# This parameter limits the response to the export jobs with the
|
683
|
+
# specified job status.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @!attribute [rw] submitted_before
|
687
|
+
# This parameter limits the response to FHIR export jobs submitted
|
688
|
+
# before a user specified date.
|
689
|
+
# @return [Time]
|
690
|
+
#
|
691
|
+
# @!attribute [rw] submitted_after
|
692
|
+
# This parameter limits the response to FHIR export jobs submitted
|
693
|
+
# after a user specified date.
|
694
|
+
# @return [Time]
|
695
|
+
#
|
696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRExportJobsRequest AWS API Documentation
|
697
|
+
#
|
698
|
+
class ListFHIRExportJobsRequest < Struct.new(
|
699
|
+
:datastore_id,
|
700
|
+
:next_token,
|
701
|
+
:max_results,
|
702
|
+
:job_name,
|
703
|
+
:job_status,
|
704
|
+
:submitted_before,
|
705
|
+
:submitted_after)
|
706
|
+
SENSITIVE = []
|
707
|
+
include Aws::Structure
|
708
|
+
end
|
709
|
+
|
710
|
+
# @!attribute [rw] export_job_properties_list
|
711
|
+
# The properties of listed FHIR export jobs, including the ID, ARN,
|
712
|
+
# name, and the status of the job.
|
713
|
+
# @return [Array<Types::ExportJobProperties>]
|
714
|
+
#
|
715
|
+
# @!attribute [rw] next_token
|
716
|
+
# A pagination token used to identify the next page of results to
|
717
|
+
# return for a ListFHIRExportJobs query.
|
718
|
+
# @return [String]
|
719
|
+
#
|
720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRExportJobsResponse AWS API Documentation
|
721
|
+
#
|
722
|
+
class ListFHIRExportJobsResponse < Struct.new(
|
723
|
+
:export_job_properties_list,
|
724
|
+
:next_token)
|
725
|
+
SENSITIVE = []
|
726
|
+
include Aws::Structure
|
727
|
+
end
|
728
|
+
|
729
|
+
# @note When making an API call, you may pass ListFHIRImportJobsRequest
|
730
|
+
# data as a hash:
|
731
|
+
#
|
732
|
+
# {
|
733
|
+
# datastore_id: "DatastoreId", # required
|
734
|
+
# next_token: "NextToken",
|
735
|
+
# max_results: 1,
|
736
|
+
# job_name: "JobName",
|
737
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
738
|
+
# submitted_before: Time.now,
|
739
|
+
# submitted_after: Time.now,
|
740
|
+
# }
|
741
|
+
#
|
742
|
+
# @!attribute [rw] datastore_id
|
743
|
+
# This parameter limits the response to the import job with the
|
744
|
+
# specified Data Store ID.
|
745
|
+
# @return [String]
|
746
|
+
#
|
747
|
+
# @!attribute [rw] next_token
|
748
|
+
# A pagination token used to identify the next page of results to
|
749
|
+
# return for a ListFHIRImportJobs query.
|
750
|
+
# @return [String]
|
751
|
+
#
|
752
|
+
# @!attribute [rw] max_results
|
753
|
+
# This parameter limits the number of results returned for a
|
754
|
+
# ListFHIRImportJobs to a maximum quantity specified by the user.
|
755
|
+
# @return [Integer]
|
756
|
+
#
|
757
|
+
# @!attribute [rw] job_name
|
758
|
+
# This parameter limits the response to the import job with the
|
759
|
+
# specified job name.
|
760
|
+
# @return [String]
|
761
|
+
#
|
762
|
+
# @!attribute [rw] job_status
|
763
|
+
# This parameter limits the response to the import job with the
|
764
|
+
# specified job status.
|
765
|
+
# @return [String]
|
766
|
+
#
|
767
|
+
# @!attribute [rw] submitted_before
|
768
|
+
# This parameter limits the response to FHIR import jobs submitted
|
769
|
+
# before a user specified date.
|
770
|
+
# @return [Time]
|
771
|
+
#
|
772
|
+
# @!attribute [rw] submitted_after
|
773
|
+
# This parameter limits the response to FHIR import jobs submitted
|
774
|
+
# after a user specified date.
|
775
|
+
# @return [Time]
|
776
|
+
#
|
777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRImportJobsRequest AWS API Documentation
|
778
|
+
#
|
779
|
+
class ListFHIRImportJobsRequest < Struct.new(
|
780
|
+
:datastore_id,
|
781
|
+
:next_token,
|
782
|
+
:max_results,
|
783
|
+
:job_name,
|
784
|
+
:job_status,
|
785
|
+
:submitted_before,
|
786
|
+
:submitted_after)
|
787
|
+
SENSITIVE = []
|
788
|
+
include Aws::Structure
|
789
|
+
end
|
790
|
+
|
791
|
+
# @!attribute [rw] import_job_properties_list
|
792
|
+
# The properties of a listed FHIR import jobs, including the ID, ARN,
|
793
|
+
# name, and the status of the job.
|
794
|
+
# @return [Array<Types::ImportJobProperties>]
|
795
|
+
#
|
796
|
+
# @!attribute [rw] next_token
|
797
|
+
# A pagination token used to identify the next page of results to
|
798
|
+
# return for a ListFHIRImportJobs query.
|
799
|
+
# @return [String]
|
800
|
+
#
|
801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRImportJobsResponse AWS API Documentation
|
802
|
+
#
|
803
|
+
class ListFHIRImportJobsResponse < Struct.new(
|
804
|
+
:import_job_properties_list,
|
805
|
+
:next_token)
|
806
|
+
SENSITIVE = []
|
807
|
+
include Aws::Structure
|
808
|
+
end
|
809
|
+
|
810
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
811
|
+
# data as a hash:
|
812
|
+
#
|
813
|
+
# {
|
814
|
+
# resource_arn: "AmazonResourceName", # required
|
815
|
+
# }
|
816
|
+
#
|
817
|
+
# @!attribute [rw] resource_arn
|
818
|
+
# The Amazon Resource Name(ARN) of the Data Store for which tags are
|
819
|
+
# being added.
|
820
|
+
# @return [String]
|
821
|
+
#
|
822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListTagsForResourceRequest AWS API Documentation
|
823
|
+
#
|
824
|
+
class ListTagsForResourceRequest < Struct.new(
|
825
|
+
:resource_arn)
|
826
|
+
SENSITIVE = []
|
827
|
+
include Aws::Structure
|
828
|
+
end
|
829
|
+
|
830
|
+
# @!attribute [rw] tags
|
831
|
+
# Returns a list of tags associated with a Data Store.
|
832
|
+
# @return [Array<Types::Tag>]
|
833
|
+
#
|
834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListTagsForResourceResponse AWS API Documentation
|
835
|
+
#
|
836
|
+
class ListTagsForResourceResponse < Struct.new(
|
837
|
+
:tags)
|
838
|
+
SENSITIVE = []
|
839
|
+
include Aws::Structure
|
840
|
+
end
|
841
|
+
|
582
842
|
# The output data configuration that was supplied when the export job
|
583
843
|
# was created.
|
584
844
|
#
|
@@ -586,18 +846,21 @@ module Aws::HealthLake
|
|
586
846
|
# data as a hash:
|
587
847
|
#
|
588
848
|
# {
|
589
|
-
#
|
849
|
+
# s3_configuration: {
|
850
|
+
# s3_uri: "S3Uri", # required
|
851
|
+
# kms_key_id: "EncryptionKeyID", # required
|
852
|
+
# },
|
590
853
|
# }
|
591
854
|
#
|
592
|
-
# @!attribute [rw]
|
593
|
-
# The
|
594
|
-
#
|
595
|
-
# @return [
|
855
|
+
# @!attribute [rw] s3_configuration
|
856
|
+
# The output data configuration that was supplied when the export job
|
857
|
+
# was created.
|
858
|
+
# @return [Types::S3Configuration]
|
596
859
|
#
|
597
860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/OutputDataConfig AWS API Documentation
|
598
861
|
#
|
599
862
|
class OutputDataConfig < Struct.new(
|
600
|
-
:
|
863
|
+
:s3_configuration)
|
601
864
|
SENSITIVE = []
|
602
865
|
include Aws::Structure
|
603
866
|
end
|
@@ -638,13 +901,71 @@ module Aws::HealthLake
|
|
638
901
|
include Aws::Structure
|
639
902
|
end
|
640
903
|
|
904
|
+
# The configuration of the S3 bucket for either an import or export job.
|
905
|
+
# This includes assigning permissions for access.
|
906
|
+
#
|
907
|
+
# @note When making an API call, you may pass S3Configuration
|
908
|
+
# data as a hash:
|
909
|
+
#
|
910
|
+
# {
|
911
|
+
# s3_uri: "S3Uri", # required
|
912
|
+
# kms_key_id: "EncryptionKeyID", # required
|
913
|
+
# }
|
914
|
+
#
|
915
|
+
# @!attribute [rw] s3_uri
|
916
|
+
# The S3Uri is the user specified S3 location of the FHIR data to be
|
917
|
+
# imported into Amazon HealthLake.
|
918
|
+
# @return [String]
|
919
|
+
#
|
920
|
+
# @!attribute [rw] kms_key_id
|
921
|
+
# The KMS key ID used to access the S3 bucket.
|
922
|
+
# @return [String]
|
923
|
+
#
|
924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/S3Configuration AWS API Documentation
|
925
|
+
#
|
926
|
+
class S3Configuration < Struct.new(
|
927
|
+
:s3_uri,
|
928
|
+
:kms_key_id)
|
929
|
+
SENSITIVE = []
|
930
|
+
include Aws::Structure
|
931
|
+
end
|
932
|
+
|
933
|
+
# The server-side encryption key configuration for a customer provided
|
934
|
+
# encryption key.
|
935
|
+
#
|
936
|
+
# @note When making an API call, you may pass SseConfiguration
|
937
|
+
# data as a hash:
|
938
|
+
#
|
939
|
+
# {
|
940
|
+
# kms_encryption_config: { # required
|
941
|
+
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
942
|
+
# kms_key_id: "EncryptionKeyID",
|
943
|
+
# },
|
944
|
+
# }
|
945
|
+
#
|
946
|
+
# @!attribute [rw] kms_encryption_config
|
947
|
+
# The KMS encryption configuration used to provide details for data
|
948
|
+
# encryption.
|
949
|
+
# @return [Types::KmsEncryptionConfig]
|
950
|
+
#
|
951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/SseConfiguration AWS API Documentation
|
952
|
+
#
|
953
|
+
class SseConfiguration < Struct.new(
|
954
|
+
:kms_encryption_config)
|
955
|
+
SENSITIVE = []
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
958
|
+
|
641
959
|
# @note When making an API call, you may pass StartFHIRExportJobRequest
|
642
960
|
# data as a hash:
|
643
961
|
#
|
644
962
|
# {
|
645
963
|
# job_name: "JobName",
|
646
964
|
# output_data_config: { # required
|
647
|
-
#
|
965
|
+
# s3_configuration: {
|
966
|
+
# s3_uri: "S3Uri", # required
|
967
|
+
# kms_key_id: "EncryptionKeyID", # required
|
968
|
+
# },
|
648
969
|
# },
|
649
970
|
# datastore_id: "DatastoreId", # required
|
650
971
|
# data_access_role_arn: "IamRoleArn", # required
|
@@ -720,6 +1041,12 @@ module Aws::HealthLake
|
|
720
1041
|
# input_data_config: { # required
|
721
1042
|
# s3_uri: "S3Uri",
|
722
1043
|
# },
|
1044
|
+
# job_output_data_config: { # required
|
1045
|
+
# s3_configuration: {
|
1046
|
+
# s3_uri: "S3Uri", # required
|
1047
|
+
# kms_key_id: "EncryptionKeyID", # required
|
1048
|
+
# },
|
1049
|
+
# },
|
723
1050
|
# datastore_id: "DatastoreId", # required
|
724
1051
|
# data_access_role_arn: "IamRoleArn", # required
|
725
1052
|
# client_token: "ClientTokenString", # required
|
@@ -734,6 +1061,11 @@ module Aws::HealthLake
|
|
734
1061
|
# job request.
|
735
1062
|
# @return [Types::InputDataConfig]
|
736
1063
|
#
|
1064
|
+
# @!attribute [rw] job_output_data_config
|
1065
|
+
# The output data configuration that was supplied when the export job
|
1066
|
+
# was created.
|
1067
|
+
# @return [Types::OutputDataConfig]
|
1068
|
+
#
|
737
1069
|
# @!attribute [rw] datastore_id
|
738
1070
|
# The AWS-generated Data Store ID.
|
739
1071
|
# @return [String]
|
@@ -755,6 +1087,7 @@ module Aws::HealthLake
|
|
755
1087
|
class StartFHIRImportJobRequest < Struct.new(
|
756
1088
|
:job_name,
|
757
1089
|
:input_data_config,
|
1090
|
+
:job_output_data_config,
|
758
1091
|
:datastore_id,
|
759
1092
|
:data_access_role_arn,
|
760
1093
|
:client_token)
|
@@ -784,6 +1117,70 @@ module Aws::HealthLake
|
|
784
1117
|
include Aws::Structure
|
785
1118
|
end
|
786
1119
|
|
1120
|
+
# A tag is a label consisting of a user-defined key and value. The form
|
1121
|
+
# for tags is \\\{"Key", "Value"\\}
|
1122
|
+
#
|
1123
|
+
# @note When making an API call, you may pass Tag
|
1124
|
+
# data as a hash:
|
1125
|
+
#
|
1126
|
+
# {
|
1127
|
+
# key: "TagKey", # required
|
1128
|
+
# value: "TagValue", # required
|
1129
|
+
# }
|
1130
|
+
#
|
1131
|
+
# @!attribute [rw] key
|
1132
|
+
# The key portion of a tag. Tag keys are case sensitive.
|
1133
|
+
# @return [String]
|
1134
|
+
#
|
1135
|
+
# @!attribute [rw] value
|
1136
|
+
# The value portion of tag. Tag values are case sensitive.
|
1137
|
+
# @return [String]
|
1138
|
+
#
|
1139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/Tag AWS API Documentation
|
1140
|
+
#
|
1141
|
+
class Tag < Struct.new(
|
1142
|
+
:key,
|
1143
|
+
:value)
|
1144
|
+
SENSITIVE = []
|
1145
|
+
include Aws::Structure
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1149
|
+
# data as a hash:
|
1150
|
+
#
|
1151
|
+
# {
|
1152
|
+
# resource_arn: "AmazonResourceName", # required
|
1153
|
+
# tags: [ # required
|
1154
|
+
# {
|
1155
|
+
# key: "TagKey", # required
|
1156
|
+
# value: "TagValue", # required
|
1157
|
+
# },
|
1158
|
+
# ],
|
1159
|
+
# }
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] resource_arn
|
1162
|
+
# The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
|
1163
|
+
# the Data Store which tags are being added to.
|
1164
|
+
# @return [String]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] tags
|
1167
|
+
# The user specified key and value pair tags being added to a Data
|
1168
|
+
# Store.
|
1169
|
+
# @return [Array<Types::Tag>]
|
1170
|
+
#
|
1171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/TagResourceRequest AWS API Documentation
|
1172
|
+
#
|
1173
|
+
class TagResourceRequest < Struct.new(
|
1174
|
+
:resource_arn,
|
1175
|
+
:tags)
|
1176
|
+
SENSITIVE = []
|
1177
|
+
include Aws::Structure
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/TagResourceResponse AWS API Documentation
|
1181
|
+
#
|
1182
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
1183
|
+
|
787
1184
|
# The user has exceeded their maximum number of allowed calls to the
|
788
1185
|
# given API.
|
789
1186
|
#
|
@@ -798,6 +1195,36 @@ module Aws::HealthLake
|
|
798
1195
|
include Aws::Structure
|
799
1196
|
end
|
800
1197
|
|
1198
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1199
|
+
# data as a hash:
|
1200
|
+
#
|
1201
|
+
# {
|
1202
|
+
# resource_arn: "AmazonResourceName", # required
|
1203
|
+
# tag_keys: ["TagKey"], # required
|
1204
|
+
# }
|
1205
|
+
#
|
1206
|
+
# @!attribute [rw] resource_arn
|
1207
|
+
# "The Amazon Resource Name(ARN) of the Data Store for which tags are
|
1208
|
+
# being removed
|
1209
|
+
# @return [String]
|
1210
|
+
#
|
1211
|
+
# @!attribute [rw] tag_keys
|
1212
|
+
# The keys for the tags to be removed from the Healthlake Data Store.
|
1213
|
+
# @return [Array<String>]
|
1214
|
+
#
|
1215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/UntagResourceRequest AWS API Documentation
|
1216
|
+
#
|
1217
|
+
class UntagResourceRequest < Struct.new(
|
1218
|
+
:resource_arn,
|
1219
|
+
:tag_keys)
|
1220
|
+
SENSITIVE = []
|
1221
|
+
include Aws::Structure
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/UntagResourceResponse AWS API Documentation
|
1225
|
+
#
|
1226
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
1227
|
+
|
801
1228
|
# The user input parameter was invalid.
|
802
1229
|
#
|
803
1230
|
# @!attribute [rw] message
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-healthlake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-healthlake
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-healthlake/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - HealthLake
|