aws-sdk-healthlake 1.41.0 → 1.43.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 910debd754c72cf4ac2e391bc5c5037d901230d0b4319cfcd5812b4fdc5183cb
4
- data.tar.gz: 852ad80d45bedd06e35e5dc31184e7ae41eef1a508088c5d3355e5148a23e42c
3
+ metadata.gz: cf1b68ee07c80cc8b30fdf42121fc17b29fd71dfa97597f830af095397228fa1
4
+ data.tar.gz: cef327dd0096dfb73629ec991788431e143b6a4ea42332ee613939ef71e78f70
5
5
  SHA512:
6
- metadata.gz: 38217fc080ff0f10d81284b6867d781b1625ab478c523040a0adcc0aa0be459ec427b2bbd992dfe72cd9f2a653708e80abd57b1c617e47fcfc912e48ed83d951
7
- data.tar.gz: fb9354251e7a0cec9bad27876e2408d4da44274d2e831faa914563aa57c6ae4b965e38ff1d899c08a69ffd9ead9245406381c6d6c1d063ba12969f18621db467
6
+ metadata.gz: abf9be5b89d45f0093ef5145f5c98c0084f96720d7e2c43d8351d9d1e63a47320b2d209ee11e672268a0b19aff9e89361f3fccfd6f3ca587c135e36c4110e3ad
7
+ data.tar.gz: 28ff38c96692a304df900b8f3e341602b163f331f990f8605ececdc2220ec27c5add3c83063e7a3a01ac120710231658686145a609dc1f200d68a612aea12898
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2025-01-24)
5
+ ------------------
6
+
7
+ * Feature - Added new authorization strategy value 'SMART_ON_FHIR' for CreateFHIRDatastore API to support Smart App 2.0
8
+
9
+ 1.42.0 (2025-01-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.41.0 (2024-11-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.43.0
@@ -257,11 +257,34 @@ module Aws::HealthLake
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -513,7 +536,7 @@ module Aws::HealthLake
513
536
  # },
514
537
  # ],
515
538
  # identity_provider_configuration: {
516
- # authorization_strategy: "SMART_ON_FHIR_V1", # required, accepts SMART_ON_FHIR_V1, AWS_AUTH
539
+ # authorization_strategy: "SMART_ON_FHIR_V1", # required, accepts SMART_ON_FHIR_V1, SMART_ON_FHIR, AWS_AUTH
517
540
  # fine_grained_authorization_enabled: false,
518
541
  # metadata: "ConfigurationMetadata",
519
542
  # idp_lambda_arn: "LambdaArn",
@@ -600,7 +623,7 @@ module Aws::HealthLake
600
623
  # resp.datastore_properties.sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
601
624
  # resp.datastore_properties.sse_configuration.kms_encryption_config.kms_key_id #=> String
602
625
  # resp.datastore_properties.preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
603
- # resp.datastore_properties.identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "AWS_AUTH"
626
+ # resp.datastore_properties.identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "SMART_ON_FHIR", "AWS_AUTH"
604
627
  # resp.datastore_properties.identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
605
628
  # resp.datastore_properties.identity_provider_configuration.metadata #=> String
606
629
  # resp.datastore_properties.identity_provider_configuration.idp_lambda_arn #=> String
@@ -641,7 +664,7 @@ module Aws::HealthLake
641
664
  #
642
665
  # resp.export_job_properties.job_id #=> String
643
666
  # resp.export_job_properties.job_name #=> String
644
- # 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"
667
+ # resp.export_job_properties.job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
645
668
  # resp.export_job_properties.submit_time #=> Time
646
669
  # resp.export_job_properties.end_time #=> Time
647
670
  # resp.export_job_properties.datastore_id #=> String
@@ -683,7 +706,7 @@ module Aws::HealthLake
683
706
  #
684
707
  # resp.import_job_properties.job_id #=> String
685
708
  # resp.import_job_properties.job_name #=> String
686
- # 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"
709
+ # resp.import_job_properties.job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
687
710
  # resp.import_job_properties.submit_time #=> Time
688
711
  # resp.import_job_properties.end_time #=> Time
689
712
  # resp.import_job_properties.datastore_id #=> String
@@ -756,7 +779,7 @@ module Aws::HealthLake
756
779
  # resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.cmk_type #=> String, one of "CUSTOMER_MANAGED_KMS_KEY", "AWS_OWNED_KMS_KEY"
757
780
  # resp.datastore_properties_list[0].sse_configuration.kms_encryption_config.kms_key_id #=> String
758
781
  # resp.datastore_properties_list[0].preload_data_config.preload_data_type #=> String, one of "SYNTHEA"
759
- # resp.datastore_properties_list[0].identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "AWS_AUTH"
782
+ # resp.datastore_properties_list[0].identity_provider_configuration.authorization_strategy #=> String, one of "SMART_ON_FHIR_V1", "SMART_ON_FHIR", "AWS_AUTH"
760
783
  # resp.datastore_properties_list[0].identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
761
784
  # resp.datastore_properties_list[0].identity_provider_configuration.metadata #=> String
762
785
  # resp.datastore_properties_list[0].identity_provider_configuration.idp_lambda_arn #=> String
@@ -818,7 +841,7 @@ module Aws::HealthLake
818
841
  # next_token: "NextToken",
819
842
  # max_results: 1,
820
843
  # job_name: "JobName",
821
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
844
+ # job_status: "SUBMITTED", # accepts SUBMITTED, QUEUED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
822
845
  # submitted_before: Time.now,
823
846
  # submitted_after: Time.now,
824
847
  # })
@@ -828,7 +851,7 @@ module Aws::HealthLake
828
851
  # resp.export_job_properties_list #=> Array
829
852
  # resp.export_job_properties_list[0].job_id #=> String
830
853
  # resp.export_job_properties_list[0].job_name #=> String
831
- # 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"
854
+ # resp.export_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
832
855
  # resp.export_job_properties_list[0].submit_time #=> Time
833
856
  # resp.export_job_properties_list[0].end_time #=> Time
834
857
  # resp.export_job_properties_list[0].datastore_id #=> String
@@ -892,7 +915,7 @@ module Aws::HealthLake
892
915
  # next_token: "NextToken",
893
916
  # max_results: 1,
894
917
  # job_name: "JobName",
895
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
918
+ # job_status: "SUBMITTED", # accepts SUBMITTED, QUEUED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED, CANCEL_SUBMITTED, CANCEL_IN_PROGRESS, CANCEL_COMPLETED, CANCEL_FAILED
896
919
  # submitted_before: Time.now,
897
920
  # submitted_after: Time.now,
898
921
  # })
@@ -902,7 +925,7 @@ module Aws::HealthLake
902
925
  # resp.import_job_properties_list #=> Array
903
926
  # resp.import_job_properties_list[0].job_id #=> String
904
927
  # resp.import_job_properties_list[0].job_name #=> String
905
- # 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"
928
+ # resp.import_job_properties_list[0].job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
906
929
  # resp.import_job_properties_list[0].submit_time #=> Time
907
930
  # resp.import_job_properties_list[0].end_time #=> Time
908
931
  # resp.import_job_properties_list[0].datastore_id #=> String
@@ -977,7 +1000,7 @@ module Aws::HealthLake
977
1000
  # @option params [required, String] :data_access_role_arn
978
1001
  # The Amazon Resource Name used during the initiation of the job.
979
1002
  #
980
- # @option params [required, String] :client_token
1003
+ # @option params [String] :client_token
981
1004
  # An optional user provided token used for ensuring idempotency.
982
1005
  #
983
1006
  # **A suitable default value is auto-generated.** You should normally
@@ -1001,13 +1024,13 @@ module Aws::HealthLake
1001
1024
  # },
1002
1025
  # datastore_id: "DatastoreId", # required
1003
1026
  # data_access_role_arn: "IamRoleArn", # required
1004
- # client_token: "ClientTokenString", # required
1027
+ # client_token: "ClientTokenString",
1005
1028
  # })
1006
1029
  #
1007
1030
  # @example Response structure
1008
1031
  #
1009
1032
  # resp.job_id #=> String
1010
- # resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
1033
+ # resp.job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
1011
1034
  # resp.datastore_id #=> String
1012
1035
  #
1013
1036
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRExportJob AWS API Documentation
@@ -1039,7 +1062,7 @@ module Aws::HealthLake
1039
1062
  # The Amazon Resource Name (ARN) that gives AWS HealthLake access
1040
1063
  # permission.
1041
1064
  #
1042
- # @option params [required, String] :client_token
1065
+ # @option params [String] :client_token
1043
1066
  # Optional user provided token used for ensuring idempotency.
1044
1067
  #
1045
1068
  # **A suitable default value is auto-generated.** You should normally
@@ -1066,13 +1089,13 @@ module Aws::HealthLake
1066
1089
  # },
1067
1090
  # datastore_id: "DatastoreId", # required
1068
1091
  # data_access_role_arn: "IamRoleArn", # required
1069
- # client_token: "ClientTokenString", # required
1092
+ # client_token: "ClientTokenString",
1070
1093
  # })
1071
1094
  #
1072
1095
  # @example Response structure
1073
1096
  #
1074
1097
  # resp.job_id #=> String
1075
- # resp.job_status #=> String, one of "SUBMITTED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
1098
+ # resp.job_status #=> String, one of "SUBMITTED", "QUEUED", "IN_PROGRESS", "COMPLETED_WITH_ERRORS", "COMPLETED", "FAILED", "CANCEL_SUBMITTED", "CANCEL_IN_PROGRESS", "CANCEL_COMPLETED", "CANCEL_FAILED"
1076
1099
  # resp.datastore_id #=> String
1077
1100
  #
1078
1101
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/StartFHIRImportJob AWS API Documentation
@@ -1162,7 +1185,7 @@ module Aws::HealthLake
1162
1185
  tracer: tracer
1163
1186
  )
1164
1187
  context[:gem_name] = 'aws-sdk-healthlake'
1165
- context[:gem_version] = '1.41.0'
1188
+ context[:gem_version] = '1.43.0'
1166
1189
  Seahorse::Client::Request.new(handlers, context)
1167
1190
  end
1168
1191
 
@@ -293,7 +293,7 @@ module Aws::HealthLake
293
293
  StartFHIRExportJobRequest.add_member(:output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, required: true, location_name: "OutputDataConfig"))
294
294
  StartFHIRExportJobRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
295
295
  StartFHIRExportJobRequest.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "DataAccessRoleArn"))
296
- StartFHIRExportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, required: true, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
296
+ StartFHIRExportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
297
297
  StartFHIRExportJobRequest.struct_class = Types::StartFHIRExportJobRequest
298
298
 
299
299
  StartFHIRExportJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
@@ -306,7 +306,7 @@ module Aws::HealthLake
306
306
  StartFHIRImportJobRequest.add_member(:job_output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, required: true, location_name: "JobOutputDataConfig"))
307
307
  StartFHIRImportJobRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
308
308
  StartFHIRImportJobRequest.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "DataAccessRoleArn"))
309
- StartFHIRImportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, required: true, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
309
+ StartFHIRImportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
310
310
  StartFHIRImportJobRequest.struct_class = Types::StartFHIRImportJobRequest
311
311
 
312
312
  StartFHIRImportJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
@@ -54,7 +54,7 @@ module Aws::HealthLake
54
54
  autoload :EndpointProvider, 'aws-sdk-healthlake/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-healthlake/endpoints'
56
56
 
57
- GEM_VERSION = '1.41.0'
57
+ GEM_VERSION = '1.43.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -104,7 +106,7 @@ module Aws
104
106
  },
105
107
  ],
106
108
  ?identity_provider_configuration: {
107
- authorization_strategy: ("SMART_ON_FHIR_V1" | "AWS_AUTH"),
109
+ authorization_strategy: ("SMART_ON_FHIR_V1" | "SMART_ON_FHIR" | "AWS_AUTH"),
108
110
  fine_grained_authorization_enabled: bool?,
109
111
  metadata: ::String?,
110
112
  idp_lambda_arn: ::String?
@@ -186,7 +188,7 @@ module Aws
186
188
  ?next_token: ::String,
187
189
  ?max_results: ::Integer,
188
190
  ?job_name: ::String,
189
- ?job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED"),
191
+ ?job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED"),
190
192
  ?submitted_before: ::Time,
191
193
  ?submitted_after: ::Time
192
194
  ) -> _ListFHIRExportJobsResponseSuccess
@@ -203,7 +205,7 @@ module Aws
203
205
  ?next_token: ::String,
204
206
  ?max_results: ::Integer,
205
207
  ?job_name: ::String,
206
- ?job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED"),
208
+ ?job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED"),
207
209
  ?submitted_before: ::Time,
208
210
  ?submitted_after: ::Time
209
211
  ) -> _ListFHIRImportJobsResponseSuccess
@@ -222,7 +224,7 @@ module Aws
222
224
  interface _StartFHIRExportJobResponseSuccess
223
225
  include ::Seahorse::Client::_ResponseSuccess[Types::StartFHIRExportJobResponse]
224
226
  def job_id: () -> ::String
225
- def job_status: () -> ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
227
+ def job_status: () -> ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
226
228
  def datastore_id: () -> ::String
227
229
  end
228
230
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/HealthLake/Client.html#start_fhir_export_job-instance_method
@@ -236,14 +238,14 @@ module Aws
236
238
  },
237
239
  datastore_id: ::String,
238
240
  data_access_role_arn: ::String,
239
- client_token: ::String
241
+ ?client_token: ::String
240
242
  ) -> _StartFHIRExportJobResponseSuccess
241
243
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFHIRExportJobResponseSuccess
242
244
 
243
245
  interface _StartFHIRImportJobResponseSuccess
244
246
  include ::Seahorse::Client::_ResponseSuccess[Types::StartFHIRImportJobResponse]
245
247
  def job_id: () -> ::String
246
- def job_status: () -> ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
248
+ def job_status: () -> ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
247
249
  def datastore_id: () -> ::String
248
250
  end
249
251
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/HealthLake/Client.html#start_fhir_import_job-instance_method
@@ -260,7 +262,7 @@ module Aws
260
262
  },
261
263
  datastore_id: ::String,
262
264
  data_access_role_arn: ::String,
263
- client_token: ::String
265
+ ?client_token: ::String
264
266
  ) -> _StartFHIRImportJobResponseSuccess
265
267
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFHIRImportJobResponseSuccess
266
268
 
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -114,7 +114,7 @@ module Aws::HealthLake
114
114
  class ExportJobProperties
115
115
  attr_accessor job_id: ::String
116
116
  attr_accessor job_name: ::String
117
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
117
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
118
118
  attr_accessor submit_time: ::Time
119
119
  attr_accessor end_time: ::Time
120
120
  attr_accessor datastore_id: ::String
@@ -125,7 +125,7 @@ module Aws::HealthLake
125
125
  end
126
126
 
127
127
  class IdentityProviderConfiguration
128
- attr_accessor authorization_strategy: ("SMART_ON_FHIR_V1" | "AWS_AUTH")
128
+ attr_accessor authorization_strategy: ("SMART_ON_FHIR_V1" | "SMART_ON_FHIR" | "AWS_AUTH")
129
129
  attr_accessor fine_grained_authorization_enabled: bool
130
130
  attr_accessor metadata: ::String
131
131
  attr_accessor idp_lambda_arn: ::String
@@ -135,7 +135,7 @@ module Aws::HealthLake
135
135
  class ImportJobProperties
136
136
  attr_accessor job_id: ::String
137
137
  attr_accessor job_name: ::String
138
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
138
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
139
139
  attr_accessor submit_time: ::Time
140
140
  attr_accessor end_time: ::Time
141
141
  attr_accessor datastore_id: ::String
@@ -199,7 +199,7 @@ module Aws::HealthLake
199
199
  attr_accessor next_token: ::String
200
200
  attr_accessor max_results: ::Integer
201
201
  attr_accessor job_name: ::String
202
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
202
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
203
203
  attr_accessor submitted_before: ::Time
204
204
  attr_accessor submitted_after: ::Time
205
205
  SENSITIVE: []
@@ -216,7 +216,7 @@ module Aws::HealthLake
216
216
  attr_accessor next_token: ::String
217
217
  attr_accessor max_results: ::Integer
218
218
  attr_accessor job_name: ::String
219
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
219
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
220
220
  attr_accessor submitted_before: ::Time
221
221
  attr_accessor submitted_after: ::Time
222
222
  SENSITIVE: []
@@ -281,7 +281,7 @@ module Aws::HealthLake
281
281
 
282
282
  class StartFHIRExportJobResponse
283
283
  attr_accessor job_id: ::String
284
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
284
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
285
285
  attr_accessor datastore_id: ::String
286
286
  SENSITIVE: []
287
287
  end
@@ -298,7 +298,7 @@ module Aws::HealthLake
298
298
 
299
299
  class StartFHIRImportJobResponse
300
300
  attr_accessor job_id: ::String
301
- attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
301
+ attr_accessor job_status: ("SUBMITTED" | "QUEUED" | "IN_PROGRESS" | "COMPLETED_WITH_ERRORS" | "COMPLETED" | "FAILED" | "CANCEL_SUBMITTED" | "CANCEL_IN_PROGRESS" | "CANCEL_COMPLETED" | "CANCEL_FAILED")
302
302
  attr_accessor datastore_id: ::String
303
303
  SENSITIVE: []
304
304
  end
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.41.0
4
+ version: 1.43.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: 2024-11-06 00:00:00.000000000 Z
11
+ date: 2025-01-24 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement