aws-sdk-healthlake 1.14.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-healthlake/client.rb +38 -16
- data/lib/aws-sdk-healthlake/client_api.rb +15 -2
- data/lib/aws-sdk-healthlake/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-healthlake/types.rb +81 -220
- data/lib/aws-sdk-healthlake.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1618cd17de79f7e20300bb343448fff1471fe98c3fc192a7f62820efe05c5412
|
4
|
+
data.tar.gz: 0f8666e3353b7e4cce7ff883b78f5e42f061093ff62e3053b2f79f4c372a0942
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43a919a1f6848bf7d0318453e19174d6bc8d5b19f5656f4d6bd941344701132a9110798e42f998a896369e31e7313ab0f3ed234106586a6dc35adb070bac755c
|
7
|
+
data.tar.gz: 2b22f779019ca74b4150dc188bd35430cb8107a9d7d0f0015b514f7eba9bbf7a0caad0cf5fd16a29aab9e30ebb2cf66d6de1d5d6a54dabff56dae91e6a04c5e1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.16.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds a new request parameter to the CreateFHIRDatastore API operation. IdentityProviderConfiguration specifies how you want to authenticate incoming requests to your Healthlake Data Store.
|
8
|
+
|
9
|
+
1.15.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.14.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -275,6 +275,11 @@ module Aws::HealthLake
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -404,6 +409,10 @@ module Aws::HealthLake
|
|
404
409
|
# @option params [Array<Types::Tag>] :tags
|
405
410
|
# Resource tags that are applied to a Data Store when it is created.
|
406
411
|
#
|
412
|
+
# @option params [Types::IdentityProviderConfiguration] :identity_provider_configuration
|
413
|
+
# The configuration of the identity provider that you want to use for
|
414
|
+
# your Data Store.
|
415
|
+
#
|
407
416
|
# @return [Types::CreateFHIRDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
408
417
|
#
|
409
418
|
# * {Types::CreateFHIRDatastoreResponse#datastore_id #datastore_id} => String
|
@@ -432,6 +441,12 @@ module Aws::HealthLake
|
|
432
441
|
# value: "TagValue", # required
|
433
442
|
# },
|
434
443
|
# ],
|
444
|
+
# identity_provider_configuration: {
|
445
|
+
# authorization_strategy: "SMART_ON_FHIR_V1", # required, accepts SMART_ON_FHIR_V1, AWS_AUTH
|
446
|
+
# fine_grained_authorization_enabled: false,
|
447
|
+
# metadata: "ConfigurationMetadata",
|
448
|
+
# idp_lambda_arn: "LambdaArn",
|
449
|
+
# },
|
435
450
|
# })
|
436
451
|
#
|
437
452
|
# @example Response structure
|
@@ -452,7 +467,7 @@ module Aws::HealthLake
|
|
452
467
|
|
453
468
|
# Deletes a Data Store.
|
454
469
|
#
|
455
|
-
# @option params [String] :datastore_id
|
470
|
+
# @option params [required, String] :datastore_id
|
456
471
|
# The AWS-generated ID for the Data Store to be deleted.
|
457
472
|
#
|
458
473
|
# @return [Types::DeleteFHIRDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -465,7 +480,7 @@ module Aws::HealthLake
|
|
465
480
|
# @example Request syntax with placeholder values
|
466
481
|
#
|
467
482
|
# resp = client.delete_fhir_datastore({
|
468
|
-
# datastore_id: "DatastoreId",
|
483
|
+
# datastore_id: "DatastoreId", # required
|
469
484
|
# })
|
470
485
|
#
|
471
486
|
# @example Response structure
|
@@ -488,9 +503,8 @@ module Aws::HealthLake
|
|
488
503
|
# Data Store ID, Data Store ARN, Data Store name, Data Store status,
|
489
504
|
# created at, Data Store type version, and Data Store endpoint.
|
490
505
|
#
|
491
|
-
# @option params [String] :datastore_id
|
492
|
-
# The AWS-generated Data Store
|
493
|
-
# ‘CreateFHIRDatastore’ output.
|
506
|
+
# @option params [required, String] :datastore_id
|
507
|
+
# The AWS-generated Data Store ID.
|
494
508
|
#
|
495
509
|
# @return [Types::DescribeFHIRDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
496
510
|
#
|
@@ -499,7 +513,7 @@ module Aws::HealthLake
|
|
499
513
|
# @example Request syntax with placeholder values
|
500
514
|
#
|
501
515
|
# resp = client.describe_fhir_datastore({
|
502
|
-
# datastore_id: "DatastoreId",
|
516
|
+
# datastore_id: "DatastoreId", # required
|
503
517
|
# })
|
504
518
|
#
|
505
519
|
# @example Response structure
|
@@ -514,6 +528,10 @@ module Aws::HealthLake
|
|
514
528
|
# resp.datastore_properties.sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
|
515
529
|
# resp.datastore_properties.sse_configuration.kms_encryption_config.kms_key_id #=> String
|
516
530
|
# resp.datastore_properties.preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
|
531
|
+
# resp.datastore_properties.identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "AWS_AUTH"
|
532
|
+
# resp.datastore_properties.identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
|
533
|
+
# resp.datastore_properties.identity_provider_configuration.metadata #=> String
|
534
|
+
# resp.datastore_properties.identity_provider_configuration.idp_lambda_arn #=> String
|
517
535
|
#
|
518
536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DescribeFHIRDatastore AWS API Documentation
|
519
537
|
#
|
@@ -549,7 +567,7 @@ module Aws::HealthLake
|
|
549
567
|
#
|
550
568
|
# resp.export_job_properties.job_id #=> String
|
551
569
|
# resp.export_job_properties.job_name #=> String
|
552
|
-
# resp.export_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
570
|
+
# resp.export_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
553
571
|
# resp.export_job_properties.submit_time #=> Time
|
554
572
|
# resp.export_job_properties.end_time #=> Time
|
555
573
|
# resp.export_job_properties.datastore_id #=> String
|
@@ -591,7 +609,7 @@ module Aws::HealthLake
|
|
591
609
|
#
|
592
610
|
# resp.import_job_properties.job_id #=> String
|
593
611
|
# resp.import_job_properties.job_name #=> String
|
594
|
-
# resp.import_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
612
|
+
# resp.import_job_properties.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
595
613
|
# resp.import_job_properties.submit_time #=> Time
|
596
614
|
# resp.import_job_properties.end_time #=> Time
|
597
615
|
# resp.import_job_properties.datastore_id #=> String
|
@@ -656,6 +674,10 @@ module Aws::HealthLake
|
|
656
674
|
# resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
|
657
675
|
# resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.kms_key_id #=> String
|
658
676
|
# resp.datastore_properties_list[0].preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
|
677
|
+
# resp.datastore_properties_list[0].identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "AWS_AUTH"
|
678
|
+
# resp.datastore_properties_list[0].identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
|
679
|
+
# resp.datastore_properties_list[0].identity_provider_configuration.metadata #=> String
|
680
|
+
# resp.datastore_properties_list[0].identity_provider_configuration.idp_lambda_arn #=> String
|
659
681
|
# resp.next_token #=> String
|
660
682
|
#
|
661
683
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRDatastores AWS API Documentation
|
@@ -712,7 +734,7 @@ module Aws::HealthLake
|
|
712
734
|
# next_token: "NextToken",
|
713
735
|
# max_results: 1,
|
714
736
|
# job_name: "JobName",
|
715
|
-
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
737
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
|
716
738
|
# submitted_before: Time.now,
|
717
739
|
# submitted_after: Time.now,
|
718
740
|
# })
|
@@ -722,7 +744,7 @@ module Aws::HealthLake
|
|
722
744
|
# resp.export_job_properties_list #=> Array
|
723
745
|
# resp.export_job_properties_list[0].job_id #=> String
|
724
746
|
# resp.export_job_properties_list[0].job_name #=> String
|
725
|
-
# resp.export_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
747
|
+
# resp.export_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
726
748
|
# resp.export_job_properties_list[0].submit_time #=> Time
|
727
749
|
# resp.export_job_properties_list[0].end_time #=> Time
|
728
750
|
# resp.export_job_properties_list[0].datastore_id #=> String
|
@@ -786,7 +808,7 @@ module Aws::HealthLake
|
|
786
808
|
# next_token: "NextToken",
|
787
809
|
# max_results: 1,
|
788
810
|
# job_name: "JobName",
|
789
|
-
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
811
|
+
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
|
790
812
|
# submitted_before: Time.now,
|
791
813
|
# submitted_after: Time.now,
|
792
814
|
# })
|
@@ -796,7 +818,7 @@ module Aws::HealthLake
|
|
796
818
|
# resp.import_job_properties_list #=> Array
|
797
819
|
# resp.import_job_properties_list[0].job_id #=> String
|
798
820
|
# resp.import_job_properties_list[0].job_name #=> String
|
799
|
-
# resp.import_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
821
|
+
# resp.import_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
800
822
|
# resp.import_job_properties_list[0].submit_time #=> Time
|
801
823
|
# resp.import_job_properties_list[0].end_time #=> Time
|
802
824
|
# resp.import_job_properties_list[0].datastore_id #=> String
|
@@ -893,7 +915,7 @@ module Aws::HealthLake
|
|
893
915
|
# @example Response structure
|
894
916
|
#
|
895
917
|
# resp.job_id #=> String
|
896
|
-
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
918
|
+
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
897
919
|
# resp.datastore_id #=> String
|
898
920
|
#
|
899
921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRExportJob AWS API Documentation
|
@@ -958,7 +980,7 @@ module Aws::HealthLake
|
|
958
980
|
# @example Response structure
|
959
981
|
#
|
960
982
|
# resp.job_id #=> String
|
961
|
-
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED"
|
983
|
+
# resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
|
962
984
|
# resp.datastore_id #=> String
|
963
985
|
#
|
964
986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRImportJob AWS API Documentation
|
@@ -970,7 +992,7 @@ module Aws::HealthLake
|
|
970
992
|
req.send_request(options)
|
971
993
|
end
|
972
994
|
|
973
|
-
# Adds a user
|
995
|
+
# Adds a user specified key and value tag to a Data Store.
|
974
996
|
#
|
975
997
|
# @option params [required, String] :resource_arn
|
976
998
|
# The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
|
@@ -1043,7 +1065,7 @@ module Aws::HealthLake
|
|
1043
1065
|
params: params,
|
1044
1066
|
config: config)
|
1045
1067
|
context[:gem_name] = 'aws-sdk-healthlake'
|
1046
|
-
context[:gem_version] = '1.
|
1068
|
+
context[:gem_version] = '1.16.0'
|
1047
1069
|
Seahorse::Client::Request.new(handlers, context)
|
1048
1070
|
end
|
1049
1071
|
|
@@ -15,9 +15,12 @@ module Aws::HealthLake
|
|
15
15
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
17
17
|
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
18
|
+
AuthorizationStrategy = Shapes::StringShape.new(name: 'AuthorizationStrategy')
|
19
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
18
20
|
BoundedLengthString = Shapes::StringShape.new(name: 'BoundedLengthString')
|
19
21
|
ClientTokenString = Shapes::StringShape.new(name: 'ClientTokenString')
|
20
22
|
CmkType = Shapes::StringShape.new(name: 'CmkType')
|
23
|
+
ConfigurationMetadata = Shapes::StringShape.new(name: 'ConfigurationMetadata')
|
21
24
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
22
25
|
CreateFHIRDatastoreRequest = Shapes::StructureShape.new(name: 'CreateFHIRDatastoreRequest')
|
23
26
|
CreateFHIRDatastoreResponse = Shapes::StructureShape.new(name: 'CreateFHIRDatastoreResponse')
|
@@ -41,6 +44,7 @@ module Aws::HealthLake
|
|
41
44
|
ExportJobPropertiesList = Shapes::ListShape.new(name: 'ExportJobPropertiesList')
|
42
45
|
FHIRVersion = Shapes::StringShape.new(name: 'FHIRVersion')
|
43
46
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
47
|
+
IdentityProviderConfiguration = Shapes::StructureShape.new(name: 'IdentityProviderConfiguration')
|
44
48
|
ImportJobProperties = Shapes::StructureShape.new(name: 'ImportJobProperties')
|
45
49
|
ImportJobPropertiesList = Shapes::ListShape.new(name: 'ImportJobPropertiesList')
|
46
50
|
InputDataConfig = Shapes::UnionShape.new(name: 'InputDataConfig')
|
@@ -49,6 +53,7 @@ module Aws::HealthLake
|
|
49
53
|
JobName = Shapes::StringShape.new(name: 'JobName')
|
50
54
|
JobStatus = Shapes::StringShape.new(name: 'JobStatus')
|
51
55
|
KmsEncryptionConfig = Shapes::StructureShape.new(name: 'KmsEncryptionConfig')
|
56
|
+
LambdaArn = Shapes::StringShape.new(name: 'LambdaArn')
|
52
57
|
ListFHIRDatastoresRequest = Shapes::StructureShape.new(name: 'ListFHIRDatastoresRequest')
|
53
58
|
ListFHIRDatastoresResponse = Shapes::StructureShape.new(name: 'ListFHIRDatastoresResponse')
|
54
59
|
ListFHIRExportJobsRequest = Shapes::StructureShape.new(name: 'ListFHIRExportJobsRequest')
|
@@ -97,6 +102,7 @@ module Aws::HealthLake
|
|
97
102
|
CreateFHIRDatastoreRequest.add_member(:preload_data_config, Shapes::ShapeRef.new(shape: PreloadDataConfig, location_name: "PreloadDataConfig"))
|
98
103
|
CreateFHIRDatastoreRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
99
104
|
CreateFHIRDatastoreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
105
|
+
CreateFHIRDatastoreRequest.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "IdentityProviderConfiguration"))
|
100
106
|
CreateFHIRDatastoreRequest.struct_class = Types::CreateFHIRDatastoreRequest
|
101
107
|
|
102
108
|
CreateFHIRDatastoreResponse.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
@@ -120,11 +126,12 @@ module Aws::HealthLake
|
|
120
126
|
DatastoreProperties.add_member(:datastore_endpoint, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DatastoreEndpoint"))
|
121
127
|
DatastoreProperties.add_member(:sse_configuration, Shapes::ShapeRef.new(shape: SseConfiguration, location_name: "SseConfiguration"))
|
122
128
|
DatastoreProperties.add_member(:preload_data_config, Shapes::ShapeRef.new(shape: PreloadDataConfig, location_name: "PreloadDataConfig"))
|
129
|
+
DatastoreProperties.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "IdentityProviderConfiguration"))
|
123
130
|
DatastoreProperties.struct_class = Types::DatastoreProperties
|
124
131
|
|
125
132
|
DatastorePropertiesList.member = Shapes::ShapeRef.new(shape: DatastoreProperties)
|
126
133
|
|
127
|
-
DeleteFHIRDatastoreRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, location_name: "DatastoreId"))
|
134
|
+
DeleteFHIRDatastoreRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
128
135
|
DeleteFHIRDatastoreRequest.struct_class = Types::DeleteFHIRDatastoreRequest
|
129
136
|
|
130
137
|
DeleteFHIRDatastoreResponse.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
@@ -133,7 +140,7 @@ module Aws::HealthLake
|
|
133
140
|
DeleteFHIRDatastoreResponse.add_member(:datastore_endpoint, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "DatastoreEndpoint"))
|
134
141
|
DeleteFHIRDatastoreResponse.struct_class = Types::DeleteFHIRDatastoreResponse
|
135
142
|
|
136
|
-
DescribeFHIRDatastoreRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, location_name: "DatastoreId"))
|
143
|
+
DescribeFHIRDatastoreRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
|
137
144
|
DescribeFHIRDatastoreRequest.struct_class = Types::DescribeFHIRDatastoreRequest
|
138
145
|
|
139
146
|
DescribeFHIRDatastoreResponse.add_member(:datastore_properties, Shapes::ShapeRef.new(shape: DatastoreProperties, required: true, location_name: "DatastoreProperties"))
|
@@ -166,6 +173,12 @@ module Aws::HealthLake
|
|
166
173
|
|
167
174
|
ExportJobPropertiesList.member = Shapes::ShapeRef.new(shape: ExportJobProperties)
|
168
175
|
|
176
|
+
IdentityProviderConfiguration.add_member(:authorization_strategy, Shapes::ShapeRef.new(shape: AuthorizationStrategy, required: true, location_name: "AuthorizationStrategy"))
|
177
|
+
IdentityProviderConfiguration.add_member(:fine_grained_authorization_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "FineGrainedAuthorizationEnabled"))
|
178
|
+
IdentityProviderConfiguration.add_member(:metadata, Shapes::ShapeRef.new(shape: ConfigurationMetadata, location_name: "Metadata"))
|
179
|
+
IdentityProviderConfiguration.add_member(:idp_lambda_arn, Shapes::ShapeRef.new(shape: LambdaArn, location_name: "IdpLambdaArn"))
|
180
|
+
IdentityProviderConfiguration.struct_class = Types::IdentityProviderConfiguration
|
181
|
+
|
169
182
|
ImportJobProperties.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
|
170
183
|
ImportJobProperties.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
171
184
|
ImportJobProperties.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, required: true, location_name: "JobStatus"))
|
@@ -9,104 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::HealthLake
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
|
+
end
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
|
+
end
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
21
25
|
end
|
22
|
-
|
23
|
-
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://healthlake-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
|
+
end
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
|
+
end
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://healthlake-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
39
|
+
end
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://healthlake.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
43
|
+
end
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
45
|
+
end
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://healthlake.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
47
|
+
end
|
48
|
+
end
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
50
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
51
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
52
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2hlYWx0aGxha2UtZmlwcy57UmVnaW9ufS57
|
77
|
-
UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
78
|
-
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsi
|
79
|
-
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFy
|
80
|
-
ZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
|
81
|
-
dCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
82
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
|
83
|
-
SVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
84
|
-
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
85
|
-
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
86
|
-
fSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
87
|
-
eyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
88
|
-
ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaGVhbHRo
|
89
|
-
bGFrZS1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4
|
90
|
-
fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
|
91
|
-
b2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMg
|
92
|
-
ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBG
|
93
|
-
SVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
94
|
-
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9
|
95
|
-
LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
96
|
-
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
|
97
|
-
ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
|
98
|
-
cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
99
|
-
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9o
|
100
|
-
ZWFsdGhsYWtlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNr
|
101
|
-
RG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5
|
102
|
-
cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJE
|
103
|
-
dWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
|
104
|
-
b3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
105
|
-
ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaGVhbHRo
|
106
|
-
bGFrZS57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
|
107
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
108
|
-
fV19XX0=
|
109
|
-
|
110
|
-
JSON
|
111
53
|
end
|
112
54
|
end
|
@@ -38,30 +38,6 @@ module Aws::HealthLake
|
|
38
38
|
include Aws::Structure
|
39
39
|
end
|
40
40
|
|
41
|
-
# @note When making an API call, you may pass CreateFHIRDatastoreRequest
|
42
|
-
# data as a hash:
|
43
|
-
#
|
44
|
-
# {
|
45
|
-
# datastore_name: "DatastoreName",
|
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
|
-
# },
|
53
|
-
# preload_data_config: {
|
54
|
-
# preload_data_type: "SYNTHEA", # required, accepts SYNTHEA
|
55
|
-
# },
|
56
|
-
# client_token: "ClientTokenString",
|
57
|
-
# tags: [
|
58
|
-
# {
|
59
|
-
# key: "TagKey", # required
|
60
|
-
# value: "TagValue", # required
|
61
|
-
# },
|
62
|
-
# ],
|
63
|
-
# }
|
64
|
-
#
|
65
41
|
# @!attribute [rw] datastore_name
|
66
42
|
# The user generated name for the Data Store.
|
67
43
|
# @return [String]
|
@@ -93,6 +69,11 @@ module Aws::HealthLake
|
|
93
69
|
# Resource tags that are applied to a Data Store when it is created.
|
94
70
|
# @return [Array<Types::Tag>]
|
95
71
|
#
|
72
|
+
# @!attribute [rw] identity_provider_configuration
|
73
|
+
# The configuration of the identity provider that you want to use for
|
74
|
+
# your Data Store.
|
75
|
+
# @return [Types::IdentityProviderConfiguration]
|
76
|
+
#
|
96
77
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/CreateFHIRDatastoreRequest AWS API Documentation
|
97
78
|
#
|
98
79
|
class CreateFHIRDatastoreRequest < Struct.new(
|
@@ -101,7 +82,8 @@ module Aws::HealthLake
|
|
101
82
|
:sse_configuration,
|
102
83
|
:preload_data_config,
|
103
84
|
:client_token,
|
104
|
-
:tags
|
85
|
+
:tags,
|
86
|
+
:identity_provider_configuration)
|
105
87
|
SENSITIVE = []
|
106
88
|
include Aws::Structure
|
107
89
|
end
|
@@ -112,9 +94,9 @@ module Aws::HealthLake
|
|
112
94
|
# @return [String]
|
113
95
|
#
|
114
96
|
# @!attribute [rw] datastore_arn
|
115
|
-
# The
|
116
|
-
# and can be found in the output from the initial Data Store
|
117
|
-
# call.
|
97
|
+
# The Data Store ARN is generated during the creation of the Data
|
98
|
+
# Store and can be found in the output from the initial Data Store
|
99
|
+
# creation call.
|
118
100
|
# @return [String]
|
119
101
|
#
|
120
102
|
# @!attribute [rw] datastore_status
|
@@ -123,8 +105,7 @@ module Aws::HealthLake
|
|
123
105
|
# @return [String]
|
124
106
|
#
|
125
107
|
# @!attribute [rw] datastore_endpoint
|
126
|
-
# The AWS endpoint for the created Data Store.
|
127
|
-
# US-east-1 endpoints are supported.
|
108
|
+
# The AWS endpoint for the created Data Store.
|
128
109
|
# @return [String]
|
129
110
|
#
|
130
111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/CreateFHIRDatastoreResponse AWS API Documentation
|
@@ -140,16 +121,6 @@ module Aws::HealthLake
|
|
140
121
|
|
141
122
|
# The filters applied to Data Store query.
|
142
123
|
#
|
143
|
-
# @note When making an API call, you may pass DatastoreFilter
|
144
|
-
# data as a hash:
|
145
|
-
#
|
146
|
-
# {
|
147
|
-
# datastore_name: "DatastoreName",
|
148
|
-
# datastore_status: "CREATING", # accepts CREATING, ACTIVE, DELETING, DELETED
|
149
|
-
# created_before: Time.now,
|
150
|
-
# created_after: Time.now,
|
151
|
-
# }
|
152
|
-
#
|
153
124
|
# @!attribute [rw] datastore_name
|
154
125
|
# Allows the user to filter Data Store results by name.
|
155
126
|
# @return [String]
|
@@ -181,7 +152,7 @@ module Aws::HealthLake
|
|
181
152
|
include Aws::Structure
|
182
153
|
end
|
183
154
|
|
184
|
-
# Displays the properties of the Data Store, including the ID,
|
155
|
+
# Displays the properties of the Data Store, including the ID, ARN,
|
185
156
|
# name, and the status of the Data Store.
|
186
157
|
#
|
187
158
|
# @!attribute [rw] datastore_id
|
@@ -224,6 +195,11 @@ module Aws::HealthLake
|
|
224
195
|
# preloaded from Synthea is supported.
|
225
196
|
# @return [Types::PreloadDataConfig]
|
226
197
|
#
|
198
|
+
# @!attribute [rw] identity_provider_configuration
|
199
|
+
# The identity provider that you selected when you created the Data
|
200
|
+
# Store.
|
201
|
+
# @return [Types::IdentityProviderConfiguration]
|
202
|
+
#
|
227
203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DatastoreProperties AWS API Documentation
|
228
204
|
#
|
229
205
|
class DatastoreProperties < Struct.new(
|
@@ -235,18 +211,12 @@ module Aws::HealthLake
|
|
235
211
|
:datastore_type_version,
|
236
212
|
:datastore_endpoint,
|
237
213
|
:sse_configuration,
|
238
|
-
:preload_data_config
|
214
|
+
:preload_data_config,
|
215
|
+
:identity_provider_configuration)
|
239
216
|
SENSITIVE = []
|
240
217
|
include Aws::Structure
|
241
218
|
end
|
242
219
|
|
243
|
-
# @note When making an API call, you may pass DeleteFHIRDatastoreRequest
|
244
|
-
# data as a hash:
|
245
|
-
#
|
246
|
-
# {
|
247
|
-
# datastore_id: "DatastoreId",
|
248
|
-
# }
|
249
|
-
#
|
250
220
|
# @!attribute [rw] datastore_id
|
251
221
|
# The AWS-generated ID for the Data Store to be deleted.
|
252
222
|
# @return [String]
|
@@ -289,16 +259,8 @@ module Aws::HealthLake
|
|
289
259
|
include Aws::Structure
|
290
260
|
end
|
291
261
|
|
292
|
-
# @note When making an API call, you may pass DescribeFHIRDatastoreRequest
|
293
|
-
# data as a hash:
|
294
|
-
#
|
295
|
-
# {
|
296
|
-
# datastore_id: "DatastoreId",
|
297
|
-
# }
|
298
|
-
#
|
299
262
|
# @!attribute [rw] datastore_id
|
300
|
-
# The AWS-generated Data Store
|
301
|
-
# ‘CreateFHIRDatastore’ output.
|
263
|
+
# The AWS-generated Data Store ID.
|
302
264
|
# @return [String]
|
303
265
|
#
|
304
266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DescribeFHIRDatastoreRequest AWS API Documentation
|
@@ -323,14 +285,6 @@ module Aws::HealthLake
|
|
323
285
|
include Aws::Structure
|
324
286
|
end
|
325
287
|
|
326
|
-
# @note When making an API call, you may pass DescribeFHIRExportJobRequest
|
327
|
-
# data as a hash:
|
328
|
-
#
|
329
|
-
# {
|
330
|
-
# datastore_id: "DatastoreId", # required
|
331
|
-
# job_id: "JobId", # required
|
332
|
-
# }
|
333
|
-
#
|
334
288
|
# @!attribute [rw] datastore_id
|
335
289
|
# The AWS generated ID for the Data Store from which files are being
|
336
290
|
# exported from for an export job.
|
@@ -362,14 +316,6 @@ module Aws::HealthLake
|
|
362
316
|
include Aws::Structure
|
363
317
|
end
|
364
318
|
|
365
|
-
# @note When making an API call, you may pass DescribeFHIRImportJobRequest
|
366
|
-
# data as a hash:
|
367
|
-
#
|
368
|
-
# {
|
369
|
-
# datastore_id: "DatastoreId", # required
|
370
|
-
# job_id: "JobId", # required
|
371
|
-
# }
|
372
|
-
#
|
373
319
|
# @!attribute [rw] datastore_id
|
374
320
|
# The AWS-generated ID of the Data Store.
|
375
321
|
# @return [String]
|
@@ -459,6 +405,65 @@ module Aws::HealthLake
|
|
459
405
|
include Aws::Structure
|
460
406
|
end
|
461
407
|
|
408
|
+
# The identity provider configuration that you gave when the Data Store
|
409
|
+
# was created.
|
410
|
+
#
|
411
|
+
# @!attribute [rw] authorization_strategy
|
412
|
+
# The authorization strategy that you selected when you created the
|
413
|
+
# Data Store.
|
414
|
+
# @return [String]
|
415
|
+
#
|
416
|
+
# @!attribute [rw] fine_grained_authorization_enabled
|
417
|
+
# If you enabled fine-grained authorization when you created the Data
|
418
|
+
# Store.
|
419
|
+
# @return [Boolean]
|
420
|
+
#
|
421
|
+
# @!attribute [rw] metadata
|
422
|
+
# The JSON metadata elements that you want to use in your identity
|
423
|
+
# provider configuration. Required elements are listed based on the
|
424
|
+
# launch specification of the SMART application. For more information
|
425
|
+
# on all possible elements, see [Metadata][1] in SMART's App Launch
|
426
|
+
# specification.
|
427
|
+
#
|
428
|
+
# `authorization_endpoint`: The URL to the OAuth2 authorization
|
429
|
+
# endpoint.
|
430
|
+
#
|
431
|
+
# `grant_types_supported`: An array of grant types that are supported
|
432
|
+
# at the token endpoint. You must provide at least one grant type
|
433
|
+
# option. Valid options are `authorization_code` and
|
434
|
+
# `client_credentials`.
|
435
|
+
#
|
436
|
+
# `token_endpoint`: The URL to the OAuth2 token endpoint.
|
437
|
+
#
|
438
|
+
# `capabilities`: An array of strings of the SMART capabilities that
|
439
|
+
# the authorization server supports.
|
440
|
+
#
|
441
|
+
# `code_challenge_methods_supported`: An array of strings of supported
|
442
|
+
# PKCE code challenge methods. You must include the `S256` method in
|
443
|
+
# the array of PKCE code challenge methods.
|
444
|
+
#
|
445
|
+
#
|
446
|
+
#
|
447
|
+
# [1]: https://build.fhir.org/ig/HL7/smart-app-launch/conformance.html#metadata
|
448
|
+
# @return [String]
|
449
|
+
#
|
450
|
+
# @!attribute [rw] idp_lambda_arn
|
451
|
+
# The Amazon Resource Name (ARN) of the Lambda function that you want
|
452
|
+
# to use to decode the access token created by the authorization
|
453
|
+
# server.
|
454
|
+
# @return [String]
|
455
|
+
#
|
456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/IdentityProviderConfiguration AWS API Documentation
|
457
|
+
#
|
458
|
+
class IdentityProviderConfiguration < Struct.new(
|
459
|
+
:authorization_strategy,
|
460
|
+
:fine_grained_authorization_enabled,
|
461
|
+
:metadata,
|
462
|
+
:idp_lambda_arn)
|
463
|
+
SENSITIVE = []
|
464
|
+
include Aws::Structure
|
465
|
+
end
|
466
|
+
|
462
467
|
# Displays the properties of the import job, including the ID, Arn,
|
463
468
|
# Name, and the status of the Data Store.
|
464
469
|
#
|
@@ -472,7 +477,7 @@ module Aws::HealthLake
|
|
472
477
|
#
|
473
478
|
# @!attribute [rw] job_status
|
474
479
|
# The job status for an Import job. Possible statuses are SUBMITTED,
|
475
|
-
# IN\_PROGRESS, COMPLETED, FAILED.
|
480
|
+
# IN\_PROGRESS, COMPLETED\_WITH\_ERRORS, COMPLETED, FAILED.
|
476
481
|
# @return [String]
|
477
482
|
#
|
478
483
|
# @!attribute [rw] submit_time
|
@@ -565,14 +570,6 @@ module Aws::HealthLake
|
|
565
570
|
# customer owned key is not specified, an AWS owned key will be used for
|
566
571
|
# encryption.
|
567
572
|
#
|
568
|
-
# @note When making an API call, you may pass KmsEncryptionConfig
|
569
|
-
# data as a hash:
|
570
|
-
#
|
571
|
-
# {
|
572
|
-
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
573
|
-
# kms_key_id: "EncryptionKeyID",
|
574
|
-
# }
|
575
|
-
#
|
576
573
|
# @!attribute [rw] cmk_type
|
577
574
|
# The type of customer-managed-key(CMK) used for encyrption. The two
|
578
575
|
# types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
@@ -592,20 +589,6 @@ module Aws::HealthLake
|
|
592
589
|
include Aws::Structure
|
593
590
|
end
|
594
591
|
|
595
|
-
# @note When making an API call, you may pass ListFHIRDatastoresRequest
|
596
|
-
# data as a hash:
|
597
|
-
#
|
598
|
-
# {
|
599
|
-
# filter: {
|
600
|
-
# datastore_name: "DatastoreName",
|
601
|
-
# datastore_status: "CREATING", # accepts CREATING, ACTIVE, DELETING, DELETED
|
602
|
-
# created_before: Time.now,
|
603
|
-
# created_after: Time.now,
|
604
|
-
# },
|
605
|
-
# next_token: "NextToken",
|
606
|
-
# max_results: 1,
|
607
|
-
# }
|
608
|
-
#
|
609
592
|
# @!attribute [rw] filter
|
610
593
|
# Lists all filters associated with a FHIR Data Store request.
|
611
594
|
# @return [Types::DatastoreFilter]
|
@@ -647,19 +630,6 @@ module Aws::HealthLake
|
|
647
630
|
include Aws::Structure
|
648
631
|
end
|
649
632
|
|
650
|
-
# @note When making an API call, you may pass ListFHIRExportJobsRequest
|
651
|
-
# data as a hash:
|
652
|
-
#
|
653
|
-
# {
|
654
|
-
# datastore_id: "DatastoreId", # required
|
655
|
-
# next_token: "NextToken",
|
656
|
-
# max_results: 1,
|
657
|
-
# job_name: "JobName",
|
658
|
-
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
659
|
-
# submitted_before: Time.now,
|
660
|
-
# submitted_after: Time.now,
|
661
|
-
# }
|
662
|
-
#
|
663
633
|
# @!attribute [rw] datastore_id
|
664
634
|
# This parameter limits the response to the export job with the
|
665
635
|
# specified Data Store ID.
|
@@ -728,19 +698,6 @@ module Aws::HealthLake
|
|
728
698
|
include Aws::Structure
|
729
699
|
end
|
730
700
|
|
731
|
-
# @note When making an API call, you may pass ListFHIRImportJobsRequest
|
732
|
-
# data as a hash:
|
733
|
-
#
|
734
|
-
# {
|
735
|
-
# datastore_id: "DatastoreId", # required
|
736
|
-
# next_token: "NextToken",
|
737
|
-
# max_results: 1,
|
738
|
-
# job_name: "JobName",
|
739
|
-
# job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
|
740
|
-
# submitted_before: Time.now,
|
741
|
-
# submitted_after: Time.now,
|
742
|
-
# }
|
743
|
-
#
|
744
701
|
# @!attribute [rw] datastore_id
|
745
702
|
# This parameter limits the response to the import job with the
|
746
703
|
# specified Data Store ID.
|
@@ -809,13 +766,6 @@ module Aws::HealthLake
|
|
809
766
|
include Aws::Structure
|
810
767
|
end
|
811
768
|
|
812
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
813
|
-
# data as a hash:
|
814
|
-
#
|
815
|
-
# {
|
816
|
-
# resource_arn: "AmazonResourceName", # required
|
817
|
-
# }
|
818
|
-
#
|
819
769
|
# @!attribute [rw] resource_arn
|
820
770
|
# The Amazon Resource Name(ARN) of the Data Store for which tags are
|
821
771
|
# being added.
|
@@ -869,13 +819,6 @@ module Aws::HealthLake
|
|
869
819
|
# The input properties for the preloaded Data Store. Only data preloaded
|
870
820
|
# from Synthea is supported.
|
871
821
|
#
|
872
|
-
# @note When making an API call, you may pass PreloadDataConfig
|
873
|
-
# data as a hash:
|
874
|
-
#
|
875
|
-
# {
|
876
|
-
# preload_data_type: "SYNTHEA", # required, accepts SYNTHEA
|
877
|
-
# }
|
878
|
-
#
|
879
822
|
# @!attribute [rw] preload_data_type
|
880
823
|
# The type of preloaded data. Only Synthea preloaded data is
|
881
824
|
# supported.
|
@@ -905,14 +848,6 @@ module Aws::HealthLake
|
|
905
848
|
# The configuration of the S3 bucket for either an import or export job.
|
906
849
|
# This includes assigning permissions for access.
|
907
850
|
#
|
908
|
-
# @note When making an API call, you may pass S3Configuration
|
909
|
-
# data as a hash:
|
910
|
-
#
|
911
|
-
# {
|
912
|
-
# s3_uri: "S3Uri", # required
|
913
|
-
# kms_key_id: "EncryptionKeyID", # required
|
914
|
-
# }
|
915
|
-
#
|
916
851
|
# @!attribute [rw] s3_uri
|
917
852
|
# The S3Uri is the user specified S3 location of the FHIR data to be
|
918
853
|
# imported into Amazon HealthLake.
|
@@ -934,16 +869,6 @@ module Aws::HealthLake
|
|
934
869
|
# The server-side encryption key configuration for a customer provided
|
935
870
|
# encryption key.
|
936
871
|
#
|
937
|
-
# @note When making an API call, you may pass SseConfiguration
|
938
|
-
# data as a hash:
|
939
|
-
#
|
940
|
-
# {
|
941
|
-
# kms_encryption_config: { # required
|
942
|
-
# cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
|
943
|
-
# kms_key_id: "EncryptionKeyID",
|
944
|
-
# },
|
945
|
-
# }
|
946
|
-
#
|
947
872
|
# @!attribute [rw] kms_encryption_config
|
948
873
|
# The KMS encryption configuration used to provide details for data
|
949
874
|
# encryption.
|
@@ -957,22 +882,6 @@ module Aws::HealthLake
|
|
957
882
|
include Aws::Structure
|
958
883
|
end
|
959
884
|
|
960
|
-
# @note When making an API call, you may pass StartFHIRExportJobRequest
|
961
|
-
# data as a hash:
|
962
|
-
#
|
963
|
-
# {
|
964
|
-
# job_name: "JobName",
|
965
|
-
# output_data_config: { # required
|
966
|
-
# s3_configuration: {
|
967
|
-
# s3_uri: "S3Uri", # required
|
968
|
-
# kms_key_id: "EncryptionKeyID", # required
|
969
|
-
# },
|
970
|
-
# },
|
971
|
-
# datastore_id: "DatastoreId", # required
|
972
|
-
# data_access_role_arn: "IamRoleArn", # required
|
973
|
-
# client_token: "ClientTokenString", # required
|
974
|
-
# }
|
975
|
-
#
|
976
885
|
# @!attribute [rw] job_name
|
977
886
|
# The user generated name for an export job.
|
978
887
|
# @return [String]
|
@@ -1034,25 +943,6 @@ module Aws::HealthLake
|
|
1034
943
|
include Aws::Structure
|
1035
944
|
end
|
1036
945
|
|
1037
|
-
# @note When making an API call, you may pass StartFHIRImportJobRequest
|
1038
|
-
# data as a hash:
|
1039
|
-
#
|
1040
|
-
# {
|
1041
|
-
# job_name: "JobName",
|
1042
|
-
# input_data_config: { # required
|
1043
|
-
# s3_uri: "S3Uri",
|
1044
|
-
# },
|
1045
|
-
# job_output_data_config: { # required
|
1046
|
-
# s3_configuration: {
|
1047
|
-
# s3_uri: "S3Uri", # required
|
1048
|
-
# kms_key_id: "EncryptionKeyID", # required
|
1049
|
-
# },
|
1050
|
-
# },
|
1051
|
-
# datastore_id: "DatastoreId", # required
|
1052
|
-
# data_access_role_arn: "IamRoleArn", # required
|
1053
|
-
# client_token: "ClientTokenString", # required
|
1054
|
-
# }
|
1055
|
-
#
|
1056
946
|
# @!attribute [rw] job_name
|
1057
947
|
# The name of the FHIR Import job in the StartFHIRImport job request.
|
1058
948
|
# @return [String]
|
@@ -1121,20 +1011,12 @@ module Aws::HealthLake
|
|
1121
1011
|
# A tag is a label consisting of a user-defined key and value. The form
|
1122
1012
|
# for tags is \\\{"Key", "Value"\\}
|
1123
1013
|
#
|
1124
|
-
# @note When making an API call, you may pass Tag
|
1125
|
-
# data as a hash:
|
1126
|
-
#
|
1127
|
-
# {
|
1128
|
-
# key: "TagKey", # required
|
1129
|
-
# value: "TagValue", # required
|
1130
|
-
# }
|
1131
|
-
#
|
1132
1014
|
# @!attribute [rw] key
|
1133
1015
|
# The key portion of a tag. Tag keys are case sensitive.
|
1134
1016
|
# @return [String]
|
1135
1017
|
#
|
1136
1018
|
# @!attribute [rw] value
|
1137
|
-
# The value portion of tag. Tag values are case sensitive.
|
1019
|
+
# The value portion of a tag. Tag values are case sensitive.
|
1138
1020
|
# @return [String]
|
1139
1021
|
#
|
1140
1022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/Tag AWS API Documentation
|
@@ -1146,19 +1028,6 @@ module Aws::HealthLake
|
|
1146
1028
|
include Aws::Structure
|
1147
1029
|
end
|
1148
1030
|
|
1149
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1150
|
-
# data as a hash:
|
1151
|
-
#
|
1152
|
-
# {
|
1153
|
-
# resource_arn: "AmazonResourceName", # required
|
1154
|
-
# tags: [ # required
|
1155
|
-
# {
|
1156
|
-
# key: "TagKey", # required
|
1157
|
-
# value: "TagValue", # required
|
1158
|
-
# },
|
1159
|
-
# ],
|
1160
|
-
# }
|
1161
|
-
#
|
1162
1031
|
# @!attribute [rw] resource_arn
|
1163
1032
|
# The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
|
1164
1033
|
# the Data Store which tags are being added to.
|
@@ -1196,14 +1065,6 @@ module Aws::HealthLake
|
|
1196
1065
|
include Aws::Structure
|
1197
1066
|
end
|
1198
1067
|
|
1199
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
1200
|
-
# data as a hash:
|
1201
|
-
#
|
1202
|
-
# {
|
1203
|
-
# resource_arn: "AmazonResourceName", # required
|
1204
|
-
# tag_keys: ["TagKey"], # required
|
1205
|
-
# }
|
1206
|
-
#
|
1207
1068
|
# @!attribute [rw] resource_arn
|
1208
1069
|
# "The Amazon Resource Name(ARN) of the Data Store for which tags are
|
1209
1070
|
# being removed
|
data/lib/aws-sdk-healthlake.rb
CHANGED
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.16.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:
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|