Skip to content

Commit

Permalink
Updates SDK to v2.659.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 20, 2020
1 parent 6421684 commit 9b18fd3
Show file tree
Hide file tree
Showing 31 changed files with 3,680 additions and 370 deletions.
27 changes: 27 additions & 0 deletions .changes/2.659.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "ApiGatewayV2",
"description": "You can now export an OpenAPI 3.0 compliant API definition file for Amazon API Gateway HTTP APIs using the Export API."
},
{
"type": "feature",
"category": "CostExplorer",
"description": "Cost Categories API is now General Available with new dimensions and operations support. You can map costs by account name, service, and charge type dimensions as well as use contains, starts with, and ends with operations. Cost Categories can also be used in RI and SP coverage reports."
},
{
"type": "feature",
"category": "Glue",
"description": "Added a new ConnectionType \"KAFKA\" and a ConnectionProperty \"KAFKA_BOOTSTRAP_SERVERS\" to support Kafka connection."
},
{
"type": "feature",
"category": "IoTEvents",
"description": "API update that allows users to add AWS Iot SiteWise actions while creating Detector Model in AWS Iot Events"
},
{
"type": "feature",
"category": "Synthetics",
"description": "Introducing CloudWatch Synthetics. This is the first public release of CloudWatch Synthetics."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.658.0-->
<!--LATEST=2.659.0-->
<!--ENTRYINSERT-->

## 2.659.0
* feature: ApiGatewayV2: You can now export an OpenAPI 3.0 compliant API definition file for Amazon API Gateway HTTP APIs using the Export API.
* feature: CostExplorer: Cost Categories API is now General Available with new dimensions and operations support. You can map costs by account name, service, and charge type dimensions as well as use contains, starts with, and ends with operations. Cost Categories can also be used in RI and SP coverage reports.
* feature: Glue: Added a new ConnectionType "KAFKA" and a ConnectionProperty "KAFKA_BOOTSTRAP_SERVERS" to support Kafka connection.
* feature: IoTEvents: API update that allows users to add AWS Iot SiteWise actions while creating Detector Model in AWS Iot Events
* feature: Synthetics: Introducing CloudWatch Synthetics. This is the first public release of CloudWatch Synthetics.

## 2.658.0
* feature: FraudDetector: Added support for a new rule engine execution mode. Customers will be able to configure their detector versions to evaluate all rules and return outcomes from all 'matched' rules in the GetPrediction API response. Added support for deleting Detectors (DeleteDetector) and Rule Versions (DeleteRuleVersion).

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.658.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.659.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
51 changes: 51 additions & 0 deletions apis/apigatewayv2-2018-11-29.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1320,6 +1320,57 @@
"members": {}
}
},
"ExportApi": {
"http": {
"method": "GET",
"requestUri": "/v2/apis/{apiId}/exports/{specification}",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"ApiId": {
"location": "uri",
"locationName": "apiId"
},
"ExportVersion": {
"location": "querystring",
"locationName": "exportVersion"
},
"IncludeExtensions": {
"location": "querystring",
"locationName": "includeExtensions",
"type": "boolean"
},
"OutputType": {
"location": "querystring",
"locationName": "outputType"
},
"Specification": {
"location": "uri",
"locationName": "specification"
},
"StageName": {
"location": "querystring",
"locationName": "stageName"
}
},
"required": [
"Specification",
"OutputType",
"ApiId"
]
},
"output": {
"type": "structure",
"members": {
"body": {
"type": "blob"
}
},
"payload": "body"
}
},
"GetApi": {
"http": {
"method": "GET",
Expand Down
115 changes: 105 additions & 10 deletions apis/apigatewayv2-2018-11-29.normal.json

Large diffs are not rendered by default.

Loading

0 comments on commit 9b18fd3

Please sign in to comment.