aws-sdk-healthlake 1.14.0 → 1.15.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: 33ba6c6974ad23987617ce7516295c083d9c4c80d5501d77dda437426b3a9eca
4
- data.tar.gz: f4d3b4f0fcfa702533fbe09e325495c489dedb4894c9668695bf2b4dc9f0c86f
3
+ metadata.gz: 8ce22e5ee06d1827d7f967486eba82ff79e8bc201807fd3f7b8c86ccbae445bc
4
+ data.tar.gz: ca59b79940418cd430854399be45783ae188a14d93e9aad893bc4c01358d1c7d
5
5
  SHA512:
6
- metadata.gz: 195af68421cc2a5865c12f4d8337173210bd036c0fdfc1c5014823cb396bcb727960d3d951364c62a0837ea39f482fa0f986402c65a95e6d66420cb0cd0f83f1
7
- data.tar.gz: 6b0787fdc3ceb71e8b3856b862e386ee29d89ce09c30b7902e24f96383a9ec8881c35ecb23060e0e6b413c33fd89f4dc3271eb2356cf2bd29cdd24a3f4ec359a
6
+ metadata.gz: 179e3319f8b509e37bb3cbf172164cb1547cb5ac5e16133c0df1dca3f93a3869855f4b8a54b16d6efb2175bd4604d1b9fa9de694404d58198b199ed24fb130eb
7
+ data.tar.gz: b1ea0db52fb718d80bdb692c80a1c5c4db897adfde401bc2756ddc64f889959c824458521eaf3bedc5a9568cee62455369ee29af3fdf372cdda92ab2f9fddad9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.14.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -1043,7 +1043,7 @@ module Aws::HealthLake
1043
1043
  params: params,
1044
1044
  config: config)
1045
1045
  context[:gem_name] = 'aws-sdk-healthlake'
1046
- context[:gem_version] = '1.14.0'
1046
+ context[:gem_version] = '1.15.0'
1047
1047
  Seahorse::Client::Request.new(handlers, context)
1048
1048
  end
1049
1049
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::HealthLake
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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 (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ 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"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://healthlake-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://healthlake-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://healthlake.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://healthlake.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  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
50
  end
112
51
  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]
@@ -140,16 +116,6 @@ module Aws::HealthLake
140
116
 
141
117
  # The filters applied to Data Store query.
142
118
  #
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
119
  # @!attribute [rw] datastore_name
154
120
  # Allows the user to filter Data Store results by name.
155
121
  # @return [String]
@@ -240,13 +206,6 @@ module Aws::HealthLake
240
206
  include Aws::Structure
241
207
  end
242
208
 
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
209
  # @!attribute [rw] datastore_id
251
210
  # The AWS-generated ID for the Data Store to be deleted.
252
211
  # @return [String]
@@ -289,13 +248,6 @@ module Aws::HealthLake
289
248
  include Aws::Structure
290
249
  end
291
250
 
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
251
  # @!attribute [rw] datastore_id
300
252
  # The AWS-generated Data Store id. This is part of the
301
253
  # ‘CreateFHIRDatastore’ output.
@@ -323,14 +275,6 @@ module Aws::HealthLake
323
275
  include Aws::Structure
324
276
  end
325
277
 
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
278
  # @!attribute [rw] datastore_id
335
279
  # The AWS generated ID for the Data Store from which files are being
336
280
  # exported from for an export job.
@@ -362,14 +306,6 @@ module Aws::HealthLake
362
306
  include Aws::Structure
363
307
  end
364
308
 
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
309
  # @!attribute [rw] datastore_id
374
310
  # The AWS-generated ID of the Data Store.
375
311
  # @return [String]
@@ -565,14 +501,6 @@ module Aws::HealthLake
565
501
  # customer owned key is not specified, an AWS owned key will be used for
566
502
  # encryption.
567
503
  #
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
504
  # @!attribute [rw] cmk_type
577
505
  # The type of customer-managed-key(CMK) used for encyrption. The two
578
506
  # types of supported CMKs are customer owned CMKs and AWS owned CMKs.
@@ -592,20 +520,6 @@ module Aws::HealthLake
592
520
  include Aws::Structure
593
521
  end
594
522
 
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
523
  # @!attribute [rw] filter
610
524
  # Lists all filters associated with a FHIR Data Store request.
611
525
  # @return [Types::DatastoreFilter]
@@ -647,19 +561,6 @@ module Aws::HealthLake
647
561
  include Aws::Structure
648
562
  end
649
563
 
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
564
  # @!attribute [rw] datastore_id
664
565
  # This parameter limits the response to the export job with the
665
566
  # specified Data Store ID.
@@ -728,19 +629,6 @@ module Aws::HealthLake
728
629
  include Aws::Structure
729
630
  end
730
631
 
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
632
  # @!attribute [rw] datastore_id
745
633
  # This parameter limits the response to the import job with the
746
634
  # specified Data Store ID.
@@ -809,13 +697,6 @@ module Aws::HealthLake
809
697
  include Aws::Structure
810
698
  end
811
699
 
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
700
  # @!attribute [rw] resource_arn
820
701
  # The Amazon Resource Name(ARN) of the Data Store for which tags are
821
702
  # being added.
@@ -869,13 +750,6 @@ module Aws::HealthLake
869
750
  # The input properties for the preloaded Data Store. Only data preloaded
870
751
  # from Synthea is supported.
871
752
  #
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
753
  # @!attribute [rw] preload_data_type
880
754
  # The type of preloaded data. Only Synthea preloaded data is
881
755
  # supported.
@@ -905,14 +779,6 @@ module Aws::HealthLake
905
779
  # The configuration of the S3 bucket for either an import or export job.
906
780
  # This includes assigning permissions for access.
907
781
  #
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
782
  # @!attribute [rw] s3_uri
917
783
  # The S3Uri is the user specified S3 location of the FHIR data to be
918
784
  # imported into Amazon HealthLake.
@@ -934,16 +800,6 @@ module Aws::HealthLake
934
800
  # The server-side encryption key configuration for a customer provided
935
801
  # encryption key.
936
802
  #
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
803
  # @!attribute [rw] kms_encryption_config
948
804
  # The KMS encryption configuration used to provide details for data
949
805
  # encryption.
@@ -957,22 +813,6 @@ module Aws::HealthLake
957
813
  include Aws::Structure
958
814
  end
959
815
 
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
816
  # @!attribute [rw] job_name
977
817
  # The user generated name for an export job.
978
818
  # @return [String]
@@ -1034,25 +874,6 @@ module Aws::HealthLake
1034
874
  include Aws::Structure
1035
875
  end
1036
876
 
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
877
  # @!attribute [rw] job_name
1057
878
  # The name of the FHIR Import job in the StartFHIRImport job request.
1058
879
  # @return [String]
@@ -1121,14 +942,6 @@ module Aws::HealthLake
1121
942
  # A tag is a label consisting of a user-defined key and value. The form
1122
943
  # for tags is \\\{"Key", "Value"\\}
1123
944
  #
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
945
  # @!attribute [rw] key
1133
946
  # The key portion of a tag. Tag keys are case sensitive.
1134
947
  # @return [String]
@@ -1146,19 +959,6 @@ module Aws::HealthLake
1146
959
  include Aws::Structure
1147
960
  end
1148
961
 
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
962
  # @!attribute [rw] resource_arn
1163
963
  # The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
1164
964
  # the Data Store which tags are being added to.
@@ -1196,14 +996,6 @@ module Aws::HealthLake
1196
996
  include Aws::Structure
1197
997
  end
1198
998
 
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
999
  # @!attribute [rw] resource_arn
1208
1000
  # "The Amazon Resource Name(ARN) of the Data Store for which tags are
1209
1001
  # being removed
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-healthlake/customizations'
52
52
  # @!group service
53
53
  module Aws::HealthLake
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  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.14.0
4
+ version: 1.15.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core