Skip to content

Commit

Permalink
Updates SDK to v2.529.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 16, 2019
1 parent 72aa5ba commit e0e52eb
Show file tree
Hide file tree
Showing 15 changed files with 699 additions and 226 deletions.
12 changes: 12 additions & 0 deletions .changes/2.529.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "EKS",
"description": "This release lets customers add tags to an Amazon EKS cluster. These tags can be used to control access to the EKS API for managing the cluster using IAM. The Amazon EKS TagResource API allows customers to associate tags with their cluster. Customers can list tags for a cluster using the ListTagsForResource API and remove tags from a cluster with the UntagResource API. Note: tags are specific to the EKS cluster resource, they do not propagate to other AWS resources used by the cluster."
},
{
"type": "feature",
"category": "MediaConvert",
"description": "AWS Elemental MediaConvert SDK has added support for multi-DRM SPEKE with CMAF outputs, MP3 ingest, and options for improved video quality."
}
]
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.528.0-->
<!--LATEST=2.529.0-->
<!--ENTRYINSERT-->

## 2.529.0
* feature: EKS: This release lets customers add tags to an Amazon EKS cluster. These tags can be used to control access to the EKS API for managing the cluster using IAM. The Amazon EKS TagResource API allows customers to associate tags with their cluster. Customers can list tags for a cluster using the ListTagsForResource API and remove tags from a cluster with the UntagResource API. Note: tags are specific to the EKS cluster resource, they do not propagate to other AWS resources used by the cluster.
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for multi-DRM SPEKE with CMAF outputs, MP3 ingest, and options for improved video quality.

## 2.528.0
* feature: EC2: Fix for FleetActivityStatus and FleetStateCode enum
* feature: MediaLive: AWS Elemental MediaLive now supports High Efficiency Video Coding (HEVC) for standard-definition (SD), high-definition (HD), and ultra-high-definition (UHD) encoding with HDR support.Encoding with HEVC offers a number of advantages. While UHD video requires an advanced codec beyond H.264 (AVC), high frame rate (HFR) or High Dynamic Range (HDR) content in HD also benefit from HEVC's advancements. In addition, benefits can be achieved with HD and SD content even if HDR and HFR are not needed.
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.528.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.529.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
109 changes: 100 additions & 9 deletions apis/eks-2017-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,17 @@
},
"clientRequestToken": {
"idempotencyToken": true
},
"tags": {
"shape": "Sc"
}
}
},
"output": {
"type": "structure",
"members": {
"cluster": {
"shape": "Sd"
"shape": "Sg"
}
}
}
Expand All @@ -69,7 +72,7 @@
"type": "structure",
"members": {
"cluster": {
"shape": "Sd"
"shape": "Sg"
}
}
}
Expand All @@ -95,7 +98,7 @@
"type": "structure",
"members": {
"cluster": {
"shape": "Sd"
"shape": "Sg"
}
}
}
Expand Down Expand Up @@ -126,7 +129,7 @@
"type": "structure",
"members": {
"update": {
"shape": "Sr"
"shape": "Su"
}
}
}
Expand Down Expand Up @@ -160,6 +163,32 @@
}
}
},
"ListTagsForResource": {
"http": {
"method": "GET",
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
}
}
},
"output": {
"type": "structure",
"members": {
"tags": {
"shape": "Sc"
}
}
}
},
"ListUpdates": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -196,6 +225,60 @@
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn",
"tags"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
},
"tags": {
"shape": "Sc"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"http": {
"method": "DELETE",
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn",
"tagKeys"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
},
"tagKeys": {
"location": "querystring",
"locationName": "tagKeys",
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UpdateClusterConfig": {
"http": {
"requestUri": "/clusters/{name}/update-config"
Expand Down Expand Up @@ -225,7 +308,7 @@
"type": "structure",
"members": {
"update": {
"shape": "Sr"
"shape": "Su"
}
}
}
Expand Down Expand Up @@ -255,7 +338,7 @@
"type": "structure",
"members": {
"update": {
"shape": "Sr"
"shape": "Su"
}
}
}
Expand Down Expand Up @@ -303,7 +386,12 @@
}
}
},
"Sd": {
"Sc": {
"type": "map",
"key": {},
"value": {}
},
"Sg": {
"type": "structure",
"members": {
"name": {},
Expand Down Expand Up @@ -354,10 +442,13 @@
}
},
"clientRequestToken": {},
"platformVersion": {}
"platformVersion": {},
"tags": {
"shape": "Sc"
}
}
},
"Sr": {
"Su": {
"type": "structure",
"members": {
"id": {},
Expand Down
Loading

0 comments on commit e0e52eb

Please sign in to comment.