Skip to content

Commit

Permalink
Release v1.36.20 (2021-01-04) (#3722)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aws-sdk-go-automation committed Jan 4, 2021
1 parent 908f377 commit 6eed845
Show file tree
Hide file tree
Showing 10 changed files with 858 additions and 110 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
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

Release v1.36.19 (2020-12-31)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.36.19"
const SDKVersion = "1.36.20"
7 changes: 6 additions & 1 deletion models/apis/cloudsearch/2013-01-01/api-2.json
Expand Up @@ -1325,7 +1325,12 @@
"search.m3.medium",
"search.m3.large",
"search.m3.xlarge",
"search.m3.2xlarge"
"search.m3.2xlarge",
"search.small",
"search.medium",
"search.large",
"search.xlarge",
"search.2xlarge"
]
},
"PolicyDocument":{"type":"string"},
Expand Down
108 changes: 108 additions & 0 deletions models/apis/healthlake/2017-07-01/api-2.json
Expand Up @@ -60,6 +60,21 @@
{"shape":"InternalServerException"}
]
},
"DescribeFHIRExportJob":{
"name":"DescribeFHIRExportJob",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFHIRExportJobRequest"},
"output":{"shape":"DescribeFHIRExportJobResponse"},
"errors":[
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServerException"}
]
},
"DescribeFHIRImportJob":{
"name":"DescribeFHIRImportJob",
"http":{
Expand Down Expand Up @@ -89,6 +104,22 @@
{"shape":"InternalServerException"}
]
},
"StartFHIRExportJob":{
"name":"StartFHIRExportJob",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StartFHIRExportJobRequest"},
"output":{"shape":"StartFHIRExportJobResponse"},
"errors":[
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServerException"}
]
},
"StartFHIRImportJob":{
"name":"StartFHIRImportJob",
"http":{
Expand Down Expand Up @@ -253,6 +284,24 @@
"DatastoreProperties":{"shape":"DatastoreProperties"}
}
},
"DescribeFHIRExportJobRequest":{
"type":"structure",
"required":[
"DatastoreId",
"JobId"
],
"members":{
"DatastoreId":{"shape":"DatastoreId"},
"JobId":{"shape":"JobId"}
}
},
"DescribeFHIRExportJobResponse":{
"type":"structure",
"required":["ExportJobProperties"],
"members":{
"ExportJobProperties":{"shape":"ExportJobProperties"}
}
},
"DescribeFHIRImportJobRequest":{
"type":"structure",
"required":[
Expand All @@ -271,6 +320,27 @@
"ImportJobProperties":{"shape":"ImportJobProperties"}
}
},
"ExportJobProperties":{
"type":"structure",
"required":[
"JobId",
"JobStatus",
"SubmitTime",
"DatastoreId",
"OutputDataConfig"
],
"members":{
"JobId":{"shape":"JobId"},
"JobName":{"shape":"JobName"},
"JobStatus":{"shape":"JobStatus"},
"SubmitTime":{"shape":"Timestamp"},
"EndTime":{"shape":"Timestamp"},
"DatastoreId":{"shape":"DatastoreId"},
"OutputDataConfig":{"shape":"OutputDataConfig"},
"DataAccessRoleArn":{"shape":"IamRoleArn"},
"Message":{"shape":"Message"}
}
},
"FHIRVersion":{
"type":"string",
"enum":["R4"]
Expand Down Expand Up @@ -370,6 +440,13 @@
"max":8192,
"pattern":"\\p{ASCII}{0,8192}"
},
"OutputDataConfig":{
"type":"structure",
"members":{
"S3Uri":{"shape":"S3Uri"}
},
"union":true
},
"PreloadDataConfig":{
"type":"structure",
"required":["PreloadDataType"],
Expand All @@ -393,6 +470,37 @@
"max":1024,
"pattern":"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"
},
"StartFHIRExportJobRequest":{
"type":"structure",
"required":[
"OutputDataConfig",
"DatastoreId",
"DataAccessRoleArn",
"ClientToken"
],
"members":{
"JobName":{"shape":"JobName"},
"OutputDataConfig":{"shape":"OutputDataConfig"},
"DatastoreId":{"shape":"DatastoreId"},
"DataAccessRoleArn":{"shape":"IamRoleArn"},
"ClientToken":{
"shape":"ClientTokenString",
"idempotencyToken":true
}
}
},
"StartFHIRExportJobResponse":{
"type":"structure",
"required":[
"JobId",
"JobStatus"
],
"members":{
"JobId":{"shape":"JobId"},
"JobStatus":{"shape":"JobStatus"},
"DatastoreId":{"shape":"DatastoreId"}
}
},
"StartFHIRImportJobRequest":{
"type":"structure",
"required":[
Expand Down

0 comments on commit 6eed845

Please sign in to comment.