Skip to content

Commit

Permalink
Updates SDK to v2.908.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 17, 2021
1 parent 8e86039 commit 49f5f4b
Show file tree
Hide file tree
Showing 37 changed files with 5,541 additions and 1,268 deletions.
27 changes: 27 additions & 0 deletions .changes/2.908.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "ApplicationCostProfiler",
"description": "APIs for AWS Application Cost Profiler."
},
{
"type": "feature",
"category": "CORS",
"description": "Set the CORS support flag for Athena to Athena client"
},
{
"type": "feature",
"category": "IotDeviceAdvisor",
"description": "AWS IoT Core Device Advisor is fully managed test capability for IoT devices. Device manufacturers can use Device Advisor to test their IoT devices for reliable and secure connectivity with AWS IoT."
},
{
"type": "feature",
"category": "MediaConnect",
"description": "MediaConnect now supports JPEG XS for AWS Cloud Digital Interface (AWS CDI) uncompressed workflows, allowing you to establish a bridge between your on-premises live video network and the AWS Cloud."
},
{
"type": "feature",
"category": "Neptune",
"description": "Neptune support for CopyTagsToSnapshots"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/feature-CORS-39c57e5c.json

This file was deleted.

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.907.0-->
<!--LATEST=2.908.0-->
<!--ENTRYINSERT-->

## 2.908.0
* feature: ApplicationCostProfiler: APIs for AWS Application Cost Profiler.
* feature: CORS: Set the CORS support flag for Athena to Athena client
* feature: IotDeviceAdvisor: AWS IoT Core Device Advisor is fully managed test capability for IoT devices. Device manufacturers can use Device Advisor to test their IoT devices for reliable and secure connectivity with AWS IoT.
* feature: MediaConnect: MediaConnect now supports JPEG XS for AWS Cloud Digital Interface (AWS CDI) uncompressed workflows, allowing you to establish a bridge between your on-premises live video network and the AWS Cloud.
* feature: Neptune: Neptune support for CopyTagsToSnapshots

## 2.907.0
* feature: CloudWatchEvents: Update InputTransformer variable limit from 10 to 100 variables.
* feature: ES: Adds support for cold storage.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.907.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.908.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
5 changes: 5 additions & 0 deletions apis/applicationcostprofiler-2020-09-10.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
243 changes: 243 additions & 0 deletions apis/applicationcostprofiler-2020-09-10.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,243 @@
{
"version": "2.0",
"metadata": {
"apiVersion": "2020-09-10",
"endpointPrefix": "application-cost-profiler",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceFullName": "AWS Application Cost Profiler",
"serviceId": "ApplicationCostProfiler",
"signatureVersion": "v4",
"signingName": "application-cost-profiler",
"uid": "AWSApplicationCostProfiler-2020-09-10"
},
"operations": {
"DeleteReportDefinition": {
"http": {
"method": "DELETE",
"requestUri": "/reportDefinition/{reportId}"
},
"input": {
"type": "structure",
"required": [
"reportId"
],
"members": {
"reportId": {
"location": "uri",
"locationName": "reportId"
}
}
},
"output": {
"type": "structure",
"members": {
"reportId": {}
}
}
},
"GetReportDefinition": {
"http": {
"method": "GET",
"requestUri": "/reportDefinition/{reportId}"
},
"input": {
"type": "structure",
"required": [
"reportId"
],
"members": {
"reportId": {
"location": "uri",
"locationName": "reportId"
}
}
},
"output": {
"type": "structure",
"required": [
"reportId",
"reportDescription",
"reportFrequency",
"format",
"destinationS3Location",
"createdAt",
"lastUpdated"
],
"members": {
"reportId": {},
"reportDescription": {},
"reportFrequency": {},
"format": {},
"destinationS3Location": {
"shape": "S9"
},
"createdAt": {
"type": "timestamp"
},
"lastUpdated": {
"type": "timestamp"
}
}
}
},
"ImportApplicationUsage": {
"http": {
"requestUri": "/importApplicationUsage"
},
"input": {
"type": "structure",
"required": [
"sourceS3Location"
],
"members": {
"sourceS3Location": {
"type": "structure",
"required": [
"bucket",
"key"
],
"members": {
"bucket": {},
"key": {},
"region": {}
}
}
}
},
"output": {
"type": "structure",
"required": [
"importId"
],
"members": {
"importId": {}
}
}
},
"ListReportDefinitions": {
"http": {
"method": "GET",
"requestUri": "/reportDefinition"
},
"input": {
"type": "structure",
"members": {
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"reportDefinitions": {
"type": "list",
"member": {
"type": "structure",
"members": {
"reportId": {},
"reportDescription": {},
"reportFrequency": {},
"format": {},
"destinationS3Location": {
"shape": "S9"
},
"createdAt": {
"type": "timestamp"
},
"lastUpdatedAt": {
"type": "timestamp"
}
}
}
},
"nextToken": {}
}
}
},
"PutReportDefinition": {
"http": {
"requestUri": "/reportDefinition"
},
"input": {
"type": "structure",
"required": [
"reportId",
"reportDescription",
"reportFrequency",
"format",
"destinationS3Location"
],
"members": {
"reportId": {},
"reportDescription": {},
"reportFrequency": {},
"format": {},
"destinationS3Location": {
"shape": "S9"
}
}
},
"output": {
"type": "structure",
"members": {
"reportId": {}
}
}
},
"UpdateReportDefinition": {
"http": {
"method": "PUT",
"requestUri": "/reportDefinition/{reportId}"
},
"input": {
"type": "structure",
"required": [
"reportId",
"reportDescription",
"reportFrequency",
"format",
"destinationS3Location"
],
"members": {
"reportId": {
"location": "uri",
"locationName": "reportId"
},
"reportDescription": {},
"reportFrequency": {},
"format": {},
"destinationS3Location": {
"shape": "S9"
}
}
},
"output": {
"type": "structure",
"members": {
"reportId": {}
}
}
}
},
"shapes": {
"S9": {
"type": "structure",
"required": [
"bucket",
"prefix"
],
"members": {
"bucket": {},
"prefix": {}
}
}
}
}
Loading

0 comments on commit 49f5f4b

Please sign in to comment.