Skip to content

Commit 8a20e16

Browse files
author
awstools
committed
Updates SDK to v2.1352.0
1 parent d39ba59 commit 8a20e16

17 files changed

+1667
-280
lines changed

.changes/2.1352.0.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "CloudFormation",
5+
"description": "Including UPDATE_COMPLETE as a failed status for DeleteStack waiter."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "GreengrassV2",
10+
"description": "Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Proton",
15+
"description": "This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository."
16+
}
17+
]

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1351.0-->
2+
<!--LATEST=2.1352.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1352.0
6+
* feature: CloudFormation: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.
7+
* feature: GreengrassV2: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.
8+
* feature: Proton: This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository.
9+
510
## 2.1351.0
611
* feature: AppRunner: App Runner adds support for seven new vCPU and memory configurations.
712
* feature: ConfigService: This release adds resourceType enums for types released in March 2023.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
7070
To use the SDK in the browser, simply add the following script tag to your
7171
HTML pages:
7272

73-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1351.0.min.js"></script>
73+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1352.0.min.js"></script>
7474

7575
You can also build a custom browser SDK with your specified set of AWS services.
7676
This can allow you to reduce the SDK's size, specify different API versions of

apis/cloudformation-2010-05-15.waiters2.json

+6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@
119119
"expected": "UPDATE_ROLLBACK_COMPLETE",
120120
"matcher": "pathAny",
121121
"state": "failure"
122+
},
123+
{
124+
"argument": "Stacks[].StackStatus",
125+
"expected": "UPDATE_COMPLETE",
126+
"matcher": "pathAny",
127+
"state": "failure"
122128
}
123129
]
124130
},

apis/greengrassv2-2020-11-30.normal.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1881,7 +1881,7 @@
18811881
},
18821882
"coreDeviceExecutionStatus": {
18831883
"shape": "EffectiveDeploymentExecutionStatus",
1884-
"documentation": "<p>The status of the deployment job on the Greengrass core device.</p>"
1884+
"documentation": "<p>The status of the deployment job on the Greengrass core device.</p> <ul> <li> <p> <code>IN_PROGRESS</code> – The deployment job is running.</p> </li> <li> <p> <code>QUEUED</code> – The deployment job is in the job queue and waiting to run.</p> </li> <li> <p> <code>FAILED</code> – The deployment failed. For more information, see the <code>statusDetails</code> field.</p> </li> <li> <p> <code>COMPLETED</code> – The deployment to an IoT thing was completed successfully.</p> </li> <li> <p> <code>TIMED_OUT</code> – The deployment didn't complete in the allotted time. </p> </li> <li> <p> <code>CANCELED</code> – The deployment was canceled by the user.</p> </li> <li> <p> <code>REJECTED</code> – The deployment was rejected. For more information, see the <code>statusDetails</code> field.</p> </li> <li> <p> <code>SUCCEEDED</code> – The deployment to an IoT thing group was completed successfully.</p> </li> </ul>"
18851885
},
18861886
"reason": {
18871887
"shape": "Reason",
@@ -1933,7 +1933,8 @@
19331933
"COMPLETED",
19341934
"TIMED_OUT",
19351935
"CANCELED",
1936-
"REJECTED"
1936+
"REJECTED",
1937+
"SUCCEEDED"
19371938
]
19381939
},
19391940
"EffectiveDeploymentStatusDetails": {
@@ -2241,11 +2242,11 @@
22412242
},
22422243
"lastReportedTimestamp": {
22432244
"shape": "Timestamp",
2244-
"documentation": "<p>The last time the Greengrass core device sent a message containing a certain component to the Amazon Web Services Cloud.</p> <p>A component does not need to see a state change for this field to update.</p>"
2245+
"documentation": "<p>The last time the Greengrass core device sent a message containing a component's state to the Amazon Web Services Cloud.</p> <p>A component does not need to see a state change for this field to update.</p>"
22452246
},
22462247
"lastInstallationSource": {
22472248
"shape": "NonEmptyString",
2248-
"documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for local deployments it will be <code>LOCAL</code>.</p>"
2249+
"documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for local deployments it will be <code>LOCAL</code>.</p> <note> <p>Any deployment will attempt to reinstall currently broken components on the device, which will update the last installation source.</p> </note>"
22492250
},
22502251
"lifecycleStatusCodes": {
22512252
"shape": "InstalledComponentLifecycleStatusCodeList",

0 commit comments

Comments
 (0)