Skip to content

Commit

Permalink
Updates SDK to v2.689.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jun 3, 2020
1 parent c40b213 commit db86f9d
Show file tree
Hide file tree
Showing 28 changed files with 3,228 additions and 733 deletions.
32 changes: 32 additions & 0 deletions .changes/2.689.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"type": "feature",
"category": "DirectConnect",
"description": "This release supports the virtual interface failover test, which allows you to verify that traffic routes over redundant virtual interfaces when you bring your primary virtual interface out of service."
},
{
"type": "feature",
"category": "ES",
"description": "Amazon Elasticsearch Service now offers support for cross-cluster search, enabling you to perform searches, aggregations, and visualizations across multiple Amazon Elasticsearch Service domains with a single query or from a single Kibana interface. New feature includes the ability to setup connection, required to perform cross-cluster search, between domains using an approval workflow."
},
{
"type": "feature",
"category": "ElastiCache",
"description": "This release improves the Multi-AZ feature in ElastiCache by adding a separate flag and proper validations."
},
{
"type": "feature",
"category": "Glue",
"description": "Adding databaseName in the response for GetUserDefinedFunctions() API."
},
{
"type": "feature",
"category": "IAM",
"description": "GenerateServiceLastAccessedDetails will now return ActionLastAccessed details for certain S3 control plane actions"
},
{
"type": "feature",
"category": "MediaConvert",
"description": "AWS Elemental MediaConvert SDK has added support for the encoding of VP8 or VP9 video in WebM container with Vorbis or Opus audio."
}
]
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.688.0-->
<!--LATEST=2.689.0-->
<!--ENTRYINSERT-->

## 2.689.0
* feature: DirectConnect: This release supports the virtual interface failover test, which allows you to verify that traffic routes over redundant virtual interfaces when you bring your primary virtual interface out of service.
* feature: ES: Amazon Elasticsearch Service now offers support for cross-cluster search, enabling you to perform searches, aggregations, and visualizations across multiple Amazon Elasticsearch Service domains with a single query or from a single Kibana interface. New feature includes the ability to setup connection, required to perform cross-cluster search, between domains using an approval workflow.
* feature: ElastiCache: This release improves the Multi-AZ feature in ElastiCache by adding a separate flag and proper validations.
* feature: Glue: Adding databaseName in the response for GetUserDefinedFunctions() API.
* feature: IAM: GenerateServiceLastAccessedDetails will now return ActionLastAccessed details for certain S3 control plane actions
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for the encoding of VP8 or VP9 video in WebM container with Vorbis or Opus audio.

## 2.688.0
* feature: GuardDuty: Amazon GuardDuty findings now include S3 bucket details under the resource section if an S3 Bucket was one of the affected resources

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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.688.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.689.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
98 changes: 98 additions & 0 deletions apis/directconnect-2012-10-25.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,79 @@
"shape": "So"
}
},
"ListVirtualInterfaceTestHistory": {
"input": {
"type": "structure",
"members": {
"testId": {},
"virtualInterfaceId": {},
"bgpPeers": {
"shape": "S55"
},
"status": {},
"maxResults": {
"type": "integer"
},
"nextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"virtualInterfaceTestHistory": {
"type": "list",
"member": {
"shape": "S59"
}
},
"nextToken": {}
}
}
},
"StartBgpFailoverTest": {
"input": {
"type": "structure",
"required": [
"virtualInterfaceId"
],
"members": {
"virtualInterfaceId": {},
"bgpPeers": {
"shape": "S55"
},
"testDurationInMinutes": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"virtualInterfaceTest": {
"shape": "S59"
}
}
}
},
"StopBgpFailoverTest": {
"input": {
"type": "structure",
"required": [
"virtualInterfaceId"
],
"members": {
"virtualInterfaceId": {}
}
},
"output": {
"type": "structure",
"members": {
"virtualInterfaceTest": {
"shape": "S59"
}
}
}
},
"TagResource": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -1512,6 +1585,31 @@
"shape": "S2u"
}
}
},
"S55": {
"type": "list",
"member": {}
},
"S59": {
"type": "structure",
"members": {
"testId": {},
"virtualInterfaceId": {},
"bgpPeers": {
"shape": "S55"
},
"status": {},
"ownerAccount": {},
"testDurationInMinutes": {
"type": "integer"
},
"startTime": {
"type": "timestamp"
},
"endTime": {
"type": "timestamp"
}
}
}
}
}
Loading

0 comments on commit db86f9d

Please sign in to comment.