Skip to content

Commit 6eed845

Browse files
Release v1.36.20 (2021-01-04) (#3722)
Release v1.36.20 (2021-01-04) === ### Service Client Updates * `service/cloudsearch`: Updates service API * This release adds support for new Amazon CloudSearch instances. * `service/healthlake`: Updates service API and documentation
1 parent 908f377 commit 6eed845

File tree

10 files changed

+858
-110
lines changed

10 files changed

+858
-110
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Release v1.36.20 (2021-01-04)
2+
===
3+
4+
### Service Client Updates
5+
* `service/cloudsearch`: Updates service API
6+
* This release adds support for new Amazon CloudSearch instances.
7+
* `service/healthlake`: Updates service API and documentation
8+
19
Release v1.36.19 (2020-12-31)
210
===
311

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.36.19"
8+
const SDKVersion = "1.36.20"

models/apis/cloudsearch/2013-01-01/api-2.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,12 @@
13251325
"search.m3.medium",
13261326
"search.m3.large",
13271327
"search.m3.xlarge",
1328-
"search.m3.2xlarge"
1328+
"search.m3.2xlarge",
1329+
"search.small",
1330+
"search.medium",
1331+
"search.large",
1332+
"search.xlarge",
1333+
"search.2xlarge"
13291334
]
13301335
},
13311336
"PolicyDocument":{"type":"string"},

models/apis/healthlake/2017-07-01/api-2.json

+108
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,21 @@
6060
{"shape":"InternalServerException"}
6161
]
6262
},
63+
"DescribeFHIRExportJob":{
64+
"name":"DescribeFHIRExportJob",
65+
"http":{
66+
"method":"POST",
67+
"requestUri":"/"
68+
},
69+
"input":{"shape":"DescribeFHIRExportJobRequest"},
70+
"output":{"shape":"DescribeFHIRExportJobResponse"},
71+
"errors":[
72+
{"shape":"ValidationException"},
73+
{"shape":"ResourceNotFoundException"},
74+
{"shape":"ThrottlingException"},
75+
{"shape":"InternalServerException"}
76+
]
77+
},
6378
"DescribeFHIRImportJob":{
6479
"name":"DescribeFHIRImportJob",
6580
"http":{
@@ -89,6 +104,22 @@
89104
{"shape":"InternalServerException"}
90105
]
91106
},
107+
"StartFHIRExportJob":{
108+
"name":"StartFHIRExportJob",
109+
"http":{
110+
"method":"POST",
111+
"requestUri":"/"
112+
},
113+
"input":{"shape":"StartFHIRExportJobRequest"},
114+
"output":{"shape":"StartFHIRExportJobResponse"},
115+
"errors":[
116+
{"shape":"ValidationException"},
117+
{"shape":"ThrottlingException"},
118+
{"shape":"AccessDeniedException"},
119+
{"shape":"ResourceNotFoundException"},
120+
{"shape":"InternalServerException"}
121+
]
122+
},
92123
"StartFHIRImportJob":{
93124
"name":"StartFHIRImportJob",
94125
"http":{
@@ -253,6 +284,24 @@
253284
"DatastoreProperties":{"shape":"DatastoreProperties"}
254285
}
255286
},
287+
"DescribeFHIRExportJobRequest":{
288+
"type":"structure",
289+
"required":[
290+
"DatastoreId",
291+
"JobId"
292+
],
293+
"members":{
294+
"DatastoreId":{"shape":"DatastoreId"},
295+
"JobId":{"shape":"JobId"}
296+
}
297+
},
298+
"DescribeFHIRExportJobResponse":{
299+
"type":"structure",
300+
"required":["ExportJobProperties"],
301+
"members":{
302+
"ExportJobProperties":{"shape":"ExportJobProperties"}
303+
}
304+
},
256305
"DescribeFHIRImportJobRequest":{
257306
"type":"structure",
258307
"required":[
@@ -271,6 +320,27 @@
271320
"ImportJobProperties":{"shape":"ImportJobProperties"}
272321
}
273322
},
323+
"ExportJobProperties":{
324+
"type":"structure",
325+
"required":[
326+
"JobId",
327+
"JobStatus",
328+
"SubmitTime",
329+
"DatastoreId",
330+
"OutputDataConfig"
331+
],
332+
"members":{
333+
"JobId":{"shape":"JobId"},
334+
"JobName":{"shape":"JobName"},
335+
"JobStatus":{"shape":"JobStatus"},
336+
"SubmitTime":{"shape":"Timestamp"},
337+
"EndTime":{"shape":"Timestamp"},
338+
"DatastoreId":{"shape":"DatastoreId"},
339+
"OutputDataConfig":{"shape":"OutputDataConfig"},
340+
"DataAccessRoleArn":{"shape":"IamRoleArn"},
341+
"Message":{"shape":"Message"}
342+
}
343+
},
274344
"FHIRVersion":{
275345
"type":"string",
276346
"enum":["R4"]
@@ -370,6 +440,13 @@
370440
"max":8192,
371441
"pattern":"\\p{ASCII}{0,8192}"
372442
},
443+
"OutputDataConfig":{
444+
"type":"structure",
445+
"members":{
446+
"S3Uri":{"shape":"S3Uri"}
447+
},
448+
"union":true
449+
},
373450
"PreloadDataConfig":{
374451
"type":"structure",
375452
"required":["PreloadDataType"],
@@ -393,6 +470,37 @@
393470
"max":1024,
394471
"pattern":"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"
395472
},
473+
"StartFHIRExportJobRequest":{
474+
"type":"structure",
475+
"required":[
476+
"OutputDataConfig",
477+
"DatastoreId",
478+
"DataAccessRoleArn",
479+
"ClientToken"
480+
],
481+
"members":{
482+
"JobName":{"shape":"JobName"},
483+
"OutputDataConfig":{"shape":"OutputDataConfig"},
484+
"DatastoreId":{"shape":"DatastoreId"},
485+
"DataAccessRoleArn":{"shape":"IamRoleArn"},
486+
"ClientToken":{
487+
"shape":"ClientTokenString",
488+
"idempotencyToken":true
489+
}
490+
}
491+
},
492+
"StartFHIRExportJobResponse":{
493+
"type":"structure",
494+
"required":[
495+
"JobId",
496+
"JobStatus"
497+
],
498+
"members":{
499+
"JobId":{"shape":"JobId"},
500+
"JobStatus":{"shape":"JobStatus"},
501+
"DatastoreId":{"shape":"DatastoreId"}
502+
}
503+
},
396504
"StartFHIRImportJobRequest":{
397505
"type":"structure",
398506
"required":[

0 commit comments

Comments
 (0)