Skip to content

Commit

Permalink
Updates SDK to v2.959.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 2, 2021
1 parent abdb1d1 commit f0d9e03
Show file tree
Hide file tree
Showing 15 changed files with 362 additions and 238 deletions.
12 changes: 12 additions & 0 deletions .changes/2.959.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "GreengrassV2",
"description": "This release adds support for component system resource limits and idempotent Create operations. You can now specify the maximum amount of CPU and memory resources that each component can use."
},
{
"type": "feature",
"category": "SSMContacts",
"description": "Added new attribute in AcceptCode API. AcceptCodeValidation takes in two values - ENFORCE, IGNORE. ENFORCE forces validation of accept code and IGNORE ignores it which is also the default behavior; Corrected TagKeyList length from 200 to 50"
}
]
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.958.0-->
<!--LATEST=2.959.0-->
<!--ENTRYINSERT-->

## 2.959.0
* feature: GreengrassV2: This release adds support for component system resource limits and idempotent Create operations. You can now specify the maximum amount of CPU and memory resources that each component can use.
* feature: SSMContacts: Added new attribute in AcceptCode API. AcceptCodeValidation takes in two values - ENFORCE, IGNORE. ENFORCE forces validation of accept code and IGNORE ignores it which is also the default behavior; Corrected TagKeyList length from 200 to 50

## 2.958.0
* feature: AppSync: AWS AppSync now supports a new authorization mode allowing you to define your own authorization logic using an AWS Lambda function.
* feature: SageMaker: API changes with respect to Lambda steps in model building pipelines. Adds several waiters to async Sagemaker Image APIs. Add more instance types to AppInstanceType field
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.958.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.959.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
43 changes: 30 additions & 13 deletions apis/greengrassv2-2020-11-30.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@
},
"tags": {
"shape": "S1e"
},
"clientToken": {
"idempotencyToken": true
}
}
},
Expand All @@ -282,7 +285,7 @@
"type": "timestamp"
},
"status": {
"shape": "S1k"
"shape": "S1l"
}
}
}
Expand All @@ -301,16 +304,19 @@
"targetArn": {},
"deploymentName": {},
"components": {
"shape": "S1p"
"shape": "S1q"
},
"iotJobConfiguration": {
"shape": "S1w"
"shape": "S20"
},
"deploymentPolicies": {
"shape": "S2d"
"shape": "S2h"
},
"tags": {
"shape": "S1e"
},
"clientToken": {
"idempotencyToken": true
}
}
},
Expand Down Expand Up @@ -390,7 +396,7 @@
"publisher": {},
"description": {},
"status": {
"shape": "S1k"
"shape": "S1l"
},
"platforms": {
"shape": "Sn"
Expand Down Expand Up @@ -533,13 +539,13 @@
"iotJobId": {},
"iotJobArn": {},
"components": {
"shape": "S1p"
"shape": "S1q"
},
"deploymentPolicies": {
"shape": "S2d"
"shape": "S2h"
},
"iotJobConfiguration": {
"shape": "S1w"
"shape": "S20"
},
"creationTimestamp": {
"type": "timestamp"
Expand Down Expand Up @@ -1064,7 +1070,7 @@
"key": {},
"value": {}
},
"S1k": {
"S1l": {
"type": "structure",
"members": {
"componentState": {},
Expand All @@ -1076,7 +1082,7 @@
}
}
},
"S1p": {
"S1q": {
"type": "map",
"key": {},
"value": {
Expand All @@ -1096,13 +1102,24 @@
"runWith": {
"type": "structure",
"members": {
"posixUser": {}
"posixUser": {},
"systemResourceLimits": {
"type": "structure",
"members": {
"memory": {
"type": "long"
},
"cpus": {
"type": "double"
}
}
}
}
}
}
}
},
"S1w": {
"S20": {
"type": "structure",
"members": {
"jobExecutionsRolloutConfig": {
Expand Down Expand Up @@ -1180,7 +1197,7 @@
}
}
},
"S2d": {
"S2h": {
"type": "structure",
"members": {
"failureHandlingPolicy": {},
Expand Down
Loading

0 comments on commit f0d9e03

Please sign in to comment.