Skip to content

Commit

Permalink
Updates SDK to v2.865.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 16, 2021
1 parent 0aeade3 commit 3d21184
Show file tree
Hide file tree
Showing 29 changed files with 3,425 additions and 1,546 deletions.
32 changes: 32 additions & 0 deletions .changes/2.865.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"type": "feature",
"category": "AccessAnalyzer",
"description": "This release adds support for the ValidatePolicy API. IAM Access Analyzer is adding over 100 policy checks and actionable recommendations that help you validate your policies during authoring."
},
{
"type": "feature",
"category": "GameLift",
"description": "GameLift expands to six new AWS Regions, adds support for multi-location fleets to streamline management of hosting resources, and lets you customize more of the game session placement process."
},
{
"type": "feature",
"category": "Lambda",
"description": "Allow empty list for function response types"
},
{
"type": "feature",
"category": "MWAA",
"description": "This release adds UPDATE_FAILED and UNAVAILABLE MWAA environment states."
},
{
"type": "feature",
"category": "MediaConnect",
"description": "This release adds support for the SRT-listener protocol on sources and outputs."
},
{
"type": "feature",
"category": "MediaTailor",
"description": "MediaTailor channel assembly is a new manifest-only service that allows you to assemble linear streams using your existing VOD content."
}
]
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.864.0-->
<!--LATEST=2.865.0-->
<!--ENTRYINSERT-->

## 2.865.0
* feature: AccessAnalyzer: This release adds support for the ValidatePolicy API. IAM Access Analyzer is adding over 100 policy checks and actionable recommendations that help you validate your policies during authoring.
* feature: GameLift: GameLift expands to six new AWS Regions, adds support for multi-location fleets to streamline management of hosting resources, and lets you customize more of the game session placement process.
* feature: Lambda: Allow empty list for function response types
* feature: MWAA: This release adds UPDATE_FAILED and UNAVAILABLE MWAA environment states.
* feature: MediaConnect: This release adds support for the SRT-listener protocol on sources and outputs.
* feature: MediaTailor: MediaTailor channel assembly is a new manifest-only service that allows you to assemble linear streams using your existing VOD content.

## 2.864.0
* feature: CodeDeploy: AWS CodeDeploy can now detect instances running an outdated revision of your application and automatically update them with the latest revision.
* feature: ECS: This is for ecs exec feature release which includes two new APIs - execute-command and update-cluster and an AWS CLI customization for execute-command API
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.864.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.865.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
130 changes: 130 additions & 0 deletions apis/accessanalyzer-2019-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,117 @@
}
},
"idempotent": true
},
"ValidatePolicy": {
"http": {
"requestUri": "/policy/validation",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"policyDocument",
"policyType"
],
"members": {
"locale": {},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
},
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"policyDocument": {},
"policyType": {}
}
},
"output": {
"type": "structure",
"required": [
"findings"
],
"members": {
"findings": {
"type": "list",
"member": {
"type": "structure",
"required": [
"findingDetails",
"findingType",
"issueCode",
"learnMoreLink",
"locations"
],
"members": {
"findingDetails": {},
"findingType": {},
"issueCode": {},
"learnMoreLink": {},
"locations": {
"type": "list",
"member": {
"type": "structure",
"required": [
"path",
"span"
],
"members": {
"path": {
"type": "list",
"member": {
"type": "structure",
"members": {
"index": {
"type": "integer"
},
"key": {},
"substring": {
"type": "structure",
"required": [
"length",
"start"
],
"members": {
"length": {
"type": "integer"
},
"start": {
"type": "integer"
}
}
},
"value": {}
},
"union": true
}
},
"span": {
"type": "structure",
"required": [
"end",
"start"
],
"members": {
"end": {
"shape": "S49"
},
"start": {
"shape": "S49"
}
}
}
}
}
}
}
}
},
"nextToken": {}
}
}
}
},
"shapes": {
Expand Down Expand Up @@ -1258,6 +1369,25 @@
"type": {}
}
}
},
"S49": {
"type": "structure",
"required": [
"column",
"line",
"offset"
],
"members": {
"column": {
"type": "integer"
},
"line": {
"type": "integer"
},
"offset": {
"type": "integer"
}
}
}
}
}
Loading

0 comments on commit 3d21184

Please sign in to comment.