Skip to content

Commit

Permalink
Updates SDK to v2.650.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 31, 2020
1 parent 2fff14c commit 468b7ea
Show file tree
Hide file tree
Showing 41 changed files with 1,933 additions and 534 deletions.
52 changes: 52 additions & 0 deletions .changes/2.650.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"type": "feature",
"category": "AppConfig",
"description": "This release adds an event log to deployments. In the case of a deployment rollback, the event log details the rollback reason."
},
{
"type": "feature",
"category": "ElasticInference",
"description": "This release includes improvements for the Amazon Elastic Inference service."
},
{
"type": "feature",
"category": "FMS",
"description": "This release contains FMS wafv2 support."
},
{
"type": "feature",
"category": "Glue",
"description": "Add two enums for MongoDB connection: Added \"CONNECTION_URL\" to \"ConnectionPropertyKey\" and added \"MONGODB\" to \"ConnectionType\""
},
{
"type": "feature",
"category": "Lambda",
"description": "AWS Lambda now supports .NET Core 3.1"
},
{
"type": "feature",
"category": "MediaStore",
"description": "This release adds support for CloudWatch Metrics. You can now set a policy on your container to dictate which metrics MediaStore sends to CloudWatch."
},
{
"type": "feature",
"category": "Pinpoint",
"description": "This release of the Amazon Pinpoint API introduces MMS support for SMS messages."
},
{
"type": "feature",
"category": "Rekognition",
"description": "This release adds DeleteProject and DeleteProjectVersion APIs to Amazon Rekognition Custom Labels."
},
{
"type": "feature",
"category": "StorageGateway",
"description": "Adding audit logging support for SMB File Shares"
},
{
"type": "feature",
"category": "WAFV2",
"description": "Added support for AWS Firewall Manager for WAFv2 and PermissionPolicy APIs for WAFv2."
}
]
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.649.0-->
<!--LATEST=2.650.0-->
<!--ENTRYINSERT-->

## 2.650.0
* feature: AppConfig: This release adds an event log to deployments. In the case of a deployment rollback, the event log details the rollback reason.
* feature: ElasticInference: This release includes improvements for the Amazon Elastic Inference service.
* feature: FMS: This release contains FMS wafv2 support.
* feature: Glue: Add two enums for MongoDB connection: Added "CONNECTION_URL" to "ConnectionPropertyKey" and added "MONGODB" to "ConnectionType"
* feature: Lambda: AWS Lambda now supports .NET Core 3.1
* feature: MediaStore: This release adds support for CloudWatch Metrics. You can now set a policy on your container to dictate which metrics MediaStore sends to CloudWatch.
* feature: Pinpoint: This release of the Amazon Pinpoint API introduces MMS support for SMS messages.
* feature: Rekognition: This release adds DeleteProject and DeleteProjectVersion APIs to Amazon Rekognition Custom Labels.
* feature: StorageGateway: Adding audit logging support for SMB File Shares
* feature: WAFV2: Added support for AWS Firewall Manager for WAFv2 and PermissionPolicy APIs for WAFv2.

## 2.649.0
* feature: AccessAnalyzer: This release adds support for the creation and management of IAM Access Analyzer analyzers with type organization. An analyzer with type organization continuously monitors all supported resources within the AWS organization and reports findings when they allow access from outside the organization.

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.649.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.650.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
24 changes: 19 additions & 5 deletions apis/appconfig-2019-10-09.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -583,10 +583,10 @@
"type": "float"
},
"StartedAt": {
"shape": "S1a"
"shape": "S1e"
},
"CompletedAt": {
"shape": "S1a"
"shape": "S1e"
}
}
}
Expand Down Expand Up @@ -1039,18 +1039,32 @@
"type": "integer"
},
"State": {},
"EventLog": {
"type": "list",
"member": {
"type": "structure",
"members": {
"EventType": {},
"TriggeredBy": {},
"Description": {},
"OccurredAt": {
"shape": "S1e"
}
}
}
},
"PercentageComplete": {
"type": "float"
},
"StartedAt": {
"shape": "S1a"
"shape": "S1e"
},
"CompletedAt": {
"shape": "S1a"
"shape": "S1e"
}
}
},
"S1a": {
"S1e": {
"type": "timestamp",
"timestampFormat": "iso8601"
}
Expand Down
52 changes: 52 additions & 0 deletions apis/appconfig-2019-10-09.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1159,6 +1159,10 @@
"shape": "DeploymentState",
"documentation": "<p>The state of the deployment.</p>"
},
"EventLog": {
"shape": "DeploymentEvents",
"documentation": "<p>A list containing all events related to a deployment. The most recent events are displayed first.</p>"
},
"PercentageComplete": {
"shape": "Percentage",
"documentation": "<p>The percentage of targets for which the deployment is available.</p>"
Expand All @@ -1173,6 +1177,45 @@
}
}
},
"DeploymentEvent": {
"type": "structure",
"members": {
"EventType": {
"shape": "DeploymentEventType",
"documentation": "<p>The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; the start or completion of a rollback.</p>"
},
"TriggeredBy": {
"shape": "TriggeredBy",
"documentation": "<p>The entity that triggered the deployment event. Events can be triggered by a user, AWS AppConfig, an Amazon CloudWatch alarm, or an internal error.</p>"
},
"Description": {
"shape": "Description",
"documentation": "<p>A description of the deployment event. Descriptions include, but are not limited to, the user account or the CloudWatch alarm ARN that initiated a rollback, the percentage of hosts that received the deployment, or in the case of an internal error, a recommendation to attempt a new deployment.</p>"
},
"OccurredAt": {
"shape": "Iso8601DateTime",
"documentation": "<p>The date and time the event occurred.</p>"
}
},
"documentation": "<p>An object that describes a deployment event.</p>"
},
"DeploymentEventType": {
"type": "string",
"enum": [
"PERCENTAGE_UPDATED",
"ROLLBACK_STARTED",
"ROLLBACK_COMPLETED",
"BAKE_TIME_STARTED",
"DEPLOYMENT_STARTED",
"DEPLOYMENT_COMPLETED"
]
},
"DeploymentEvents": {
"type": "list",
"member": {
"shape": "DeploymentEvent"
}
},
"DeploymentList": {
"type": "list",
"member": {
Expand Down Expand Up @@ -1872,6 +1915,15 @@
"type": "string",
"max": 256
},
"TriggeredBy": {
"type": "string",
"enum": [
"USER",
"APPCONFIG",
"CLOUDWATCH_ALARM",
"INTERNAL_ERROR"
]
},
"UntagResourceRequest": {
"type": "structure",
"required": [
Expand Down
Loading

0 comments on commit 468b7ea

Please sign in to comment.