Skip to content

Commit

Permalink
Updates SDK to v2.821.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 4, 2021
1 parent 1ad9d3c commit 73a2be5
Show file tree
Hide file tree
Showing 14 changed files with 523 additions and 100 deletions.
12 changes: 12 additions & 0 deletions .changes/2.821.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CloudSearch",
"description": "This release adds support for new Amazon CloudSearch instances."
},
{
"type": "feature",
"category": "HealthLake",
"description": "Amazon HealthLake now supports exporting data from FHIR Data Stores in Preview."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.820.0-->
<!--LATEST=2.821.0-->
<!--ENTRYINSERT-->

## 2.821.0
* feature: CloudSearch: This release adds support for new Amazon CloudSearch instances.
* feature: HealthLake: Amazon HealthLake now supports exporting data from FHIR Data Stores in Preview.

## 2.820.0
* feature: ServiceCatalog: Enhanced Service Catalog DescribeProvisioningParameters API to return new parameter constraints, i.e., MinLength, MaxLength, MinValue, MaxValue, ConstraintDescription and AllowedPattern

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.820.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.821.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
7 changes: 6 additions & 1 deletion apis/cloudsearch-2013-01-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,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": {
Expand Down
93 changes: 91 additions & 2 deletions apis/healthlake-2017-07-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,54 @@
}
}
},
"DescribeFHIRExportJob": {
"input": {
"type": "structure",
"required": [
"DatastoreId",
"JobId"
],
"members": {
"DatastoreId": {},
"JobId": {}
}
},
"output": {
"type": "structure",
"required": [
"ExportJobProperties"
],
"members": {
"ExportJobProperties": {
"type": "structure",
"required": [
"JobId",
"JobStatus",
"SubmitTime",
"DatastoreId",
"OutputDataConfig"
],
"members": {
"JobId": {},
"JobName": {},
"JobStatus": {},
"SubmitTime": {
"type": "timestamp"
},
"EndTime": {
"type": "timestamp"
},
"DatastoreId": {},
"OutputDataConfig": {
"shape": "Sp"
},
"DataAccessRoleArn": {},
"Message": {}
}
}
}
}
},
"DescribeFHIRImportJob": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -128,7 +176,7 @@
},
"DatastoreId": {},
"InputDataConfig": {
"shape": "Sp"
"shape": "Sw"
},
"DataAccessRoleArn": {},
"Message": {}
Expand Down Expand Up @@ -176,6 +224,40 @@
}
}
},
"StartFHIRExportJob": {
"input": {
"type": "structure",
"required": [
"OutputDataConfig",
"DatastoreId",
"DataAccessRoleArn",
"ClientToken"
],
"members": {
"JobName": {},
"OutputDataConfig": {
"shape": "Sp"
},
"DatastoreId": {},
"DataAccessRoleArn": {},
"ClientToken": {
"idempotencyToken": true
}
}
},
"output": {
"type": "structure",
"required": [
"JobId",
"JobStatus"
],
"members": {
"JobId": {},
"JobStatus": {},
"DatastoreId": {}
}
}
},
"StartFHIRImportJob": {
"input": {
"type": "structure",
Expand All @@ -188,7 +270,7 @@
"members": {
"JobName": {},
"InputDataConfig": {
"shape": "Sp"
"shape": "Sw"
},
"DatastoreId": {},
"DataAccessRoleArn": {},
Expand Down Expand Up @@ -251,6 +333,13 @@
"S3Uri": {}
},
"union": true
},
"Sw": {
"type": "structure",
"members": {
"S3Uri": {}
},
"union": true
}
}
}
Loading

0 comments on commit 73a2be5

Please sign in to comment.