Skip to content

Commit 488f6ad

Browse files
author
awstools
committed
Updates SDK to v2.1080.0
1 parent 9b3ae59 commit 488f6ad

17 files changed

+301
-107
lines changed

.changes/2.1080.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Lambda",
5+
"description": "Lambda releases .NET 6 managed runtime to be available in all commercial regions."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Textract",
10+
"description": "Added support for merged cells and column header for table response."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Transfer",
15+
"description": "The file input selection feature provides the ability to use either the originally uploaded file or the output file from the previous workflow step, enabling customers to make multiple copies of the original file while keeping the source file intact for file archival."
16+
}
17+
]

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1079.0-->
2+
<!--LATEST=2.1080.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1080.0
6+
* feature: Lambda: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
7+
* feature: Textract: Added support for merged cells and column header for table response.
8+
* feature: Transfer: The file input selection feature provides the ability to use either the originally uploaded file or the output file from the previous workflow step, enabling customers to make multiple copies of the original file while keeping the source file intact for file archival.
9+
510
## 2.1079.0
611
* feature: AppRunner: AWS App Runner adds a Java platform (Corretto 8, Corretto 11 runtimes) and a Node.js 14 runtime.
712
* feature: Translate: This release enables customers to use translation settings for formality customization in their synchronous translation output.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1079.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1080.0.min.js"></script>
3333

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

apis/lambda-2015-03-31.normal.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,7 @@
17601760
"shape": "CodeSigningConfigNotFoundException"
17611761
}
17621762
],
1763-
"documentation": "<p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">Configuring code signing</a>.</p> <p>The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.</p> <note> <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.</p> </note>"
1763+
"documentation": "<p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">Configuring code signing</a>.</p> <p>If the function's package type is <code>Image</code>, you must specify the code package in <code>ImageUri</code> as the URI of a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html\">container image</a> in the Amazon ECR registry. </p> <p>If the function's package type is <code>Zip</code>, you must specify the deployment package as a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip\">.zip file archive</a>. Enter the Amazon S3 bucket and key of the code .zip file location. You can also provide the function code inline using the <code>ZipFile</code> field. </p> <p>The code in the deployment package must be compatible with the target instruction set architecture of the function (<code>x86-64</code> or <code>arm64</code>). </p> <p>The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.</p> <note> <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.</p> </note>"
17641764
},
17651765
"UpdateFunctionConfiguration": {
17661766
"name": "UpdateFunctionConfiguration",
@@ -4951,6 +4951,7 @@
49514951
"dotnetcore2.0",
49524952
"dotnetcore2.1",
49534953
"dotnetcore3.1",
4954+
"dotnet6",
49544955
"nodejs4.3-edge",
49554956
"go1.x",
49564957
"ruby2.5",
@@ -5382,23 +5383,23 @@
53825383
},
53835384
"ZipFile": {
53845385
"shape": "Blob",
5385-
"documentation": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.</p>"
5386+
"documentation": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.</p>"
53865387
},
53875388
"S3Bucket": {
53885389
"shape": "S3Bucket",
5389-
"documentation": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>"
5390+
"documentation": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account. Use only with a function defined with a .zip file archive deployment package.</p>"
53905391
},
53915392
"S3Key": {
53925393
"shape": "S3Key",
5393-
"documentation": "<p>The Amazon S3 key of the deployment package.</p>"
5394+
"documentation": "<p>The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.</p>"
53945395
},
53955396
"S3ObjectVersion": {
53965397
"shape": "S3ObjectVersion",
53975398
"documentation": "<p>For versioned objects, the version of the deployment package object to use.</p>"
53985399
},
53995400
"ImageUri": {
54005401
"shape": "String",
5401-
"documentation": "<p>URI of a container image in the Amazon ECR registry.</p>"
5402+
"documentation": "<p>URI of a container image in the Amazon ECR registry. Do not use for a function defined with a .zip file archive.</p>"
54025403
},
54035404
"Publish": {
54045405
"shape": "Boolean",

apis/lambda-2015-03-31.waiters2.json

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"delay": 5,
2323
"maxAttempts": 60,
2424
"operation": "GetFunctionConfiguration",
25-
"description": "Waits for the function's State to be Active.",
25+
"description": "Waits for the function's State to be Active. This waiter uses GetFunctionConfiguration API. This should be used after new function creation.",
2626
"acceptors": [
2727
{
2828
"state": "success",
@@ -48,7 +48,7 @@
4848
"delay": 5,
4949
"maxAttempts": 60,
5050
"operation": "GetFunctionConfiguration",
51-
"description": "Waits for the function's LastUpdateStatus to be Successful.",
51+
"description": "Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunctionConfiguration API. This should be used after function updates.",
5252
"acceptors": [
5353
{
5454
"state": "success",
@@ -69,6 +69,58 @@
6969
"expected": "InProgress"
7070
}
7171
]
72+
},
73+
"FunctionActiveV2": {
74+
"delay": 1,
75+
"maxAttempts": 300,
76+
"operation": "GetFunction",
77+
"description": "Waits for the function's State to be Active. This waiter uses GetFunction API. This should be used after new function creation.",
78+
"acceptors": [
79+
{
80+
"state": "success",
81+
"matcher": "path",
82+
"argument": "Configuration.State",
83+
"expected": "Active"
84+
},
85+
{
86+
"state": "failure",
87+
"matcher": "path",
88+
"argument": "Configuration.State",
89+
"expected": "Failed"
90+
},
91+
{
92+
"state": "retry",
93+
"matcher": "path",
94+
"argument": "Configuration.State",
95+
"expected": "Pending"
96+
}
97+
]
98+
},
99+
"FunctionUpdatedV2": {
100+
"delay": 1,
101+
"maxAttempts": 300,
102+
"operation": "GetFunction",
103+
"description": "Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunction API. This should be used after function updates.",
104+
"acceptors": [
105+
{
106+
"state": "success",
107+
"matcher": "path",
108+
"argument": "Configuration.LastUpdateStatus",
109+
"expected": "Successful"
110+
},
111+
{
112+
"state": "failure",
113+
"matcher": "path",
114+
"argument": "Configuration.LastUpdateStatus",
115+
"expected": "Failed"
116+
},
117+
{
118+
"state": "retry",
119+
"matcher": "path",
120+
"argument": "Configuration.LastUpdateStatus",
121+
"expected": "InProgress"
122+
}
123+
]
72124
}
73125
}
74126
}

apis/textract-2018-06-27.normal.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,9 @@
656656
"WORD",
657657
"TABLE",
658658
"CELL",
659-
"SELECTION_ELEMENT"
659+
"SELECTION_ELEMENT",
660+
"MERGED_CELL",
661+
"TITLE"
660662
]
661663
},
662664
"BoundingBox": {
@@ -776,7 +778,8 @@
776778
"type": "string",
777779
"enum": [
778780
"KEY",
779-
"VALUE"
781+
"VALUE",
782+
"COLUMN_HEADER"
780783
]
781784
},
782785
"EntityTypes": {
@@ -1370,7 +1373,9 @@
13701373
"enum": [
13711374
"VALUE",
13721375
"CHILD",
1373-
"COMPLEX_FEATURES"
1376+
"COMPLEX_FEATURES",
1377+
"MERGED_CELL",
1378+
"TITLE"
13741379
]
13751380
},
13761381
"RoleArn": {

apis/transfer-2018-11-05.min.json

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@
289289
"members": {
290290
"ExecutionId": {},
291291
"InitialFileLocation": {
292-
"shape": "S2m"
292+
"shape": "S2n"
293293
},
294294
"ServiceMetadata": {
295-
"shape": "S2q"
295+
"shape": "S2r"
296296
},
297297
"ExecutionRole": {},
298298
"LoggingConfiguration": {
@@ -310,10 +310,10 @@
310310
"type": "structure",
311311
"members": {
312312
"Steps": {
313-
"shape": "S2x"
313+
"shape": "S2y"
314314
},
315315
"OnExceptionSteps": {
316-
"shape": "S2x"
316+
"shape": "S2y"
317317
}
318318
}
319319
}
@@ -349,16 +349,16 @@
349349
},
350350
"SecurityPolicyName": {},
351351
"SshCiphers": {
352-
"shape": "S37"
352+
"shape": "S38"
353353
},
354354
"SshKexs": {
355-
"shape": "S37"
355+
"shape": "S38"
356356
},
357357
"SshMacs": {
358-
"shape": "S37"
358+
"shape": "S38"
359359
},
360360
"TlsCiphers": {
361-
"shape": "S37"
361+
"shape": "S38"
362362
}
363363
}
364364
}
@@ -624,10 +624,10 @@
624624
"members": {
625625
"ExecutionId": {},
626626
"InitialFileLocation": {
627-
"shape": "S2m"
627+
"shape": "S2n"
628628
},
629629
"ServiceMetadata": {
630-
"shape": "S2q"
630+
"shape": "S2r"
631631
},
632632
"Status": {}
633633
}
@@ -1163,7 +1163,8 @@
11631163
}
11641164
}
11651165
},
1166-
"OverwriteExisting": {}
1166+
"OverwriteExisting": {},
1167+
"SourceFileLocation": {}
11671168
}
11681169
},
11691170
"CustomStepDetails": {
@@ -1173,13 +1174,15 @@
11731174
"Target": {},
11741175
"TimeoutSeconds": {
11751176
"type": "integer"
1176-
}
1177+
},
1178+
"SourceFileLocation": {}
11771179
}
11781180
},
11791181
"DeleteStepDetails": {
11801182
"type": "structure",
11811183
"members": {
1182-
"Name": {}
1184+
"Name": {},
1185+
"SourceFileLocation": {}
11831186
}
11841187
},
11851188
"TagStepDetails": {
@@ -1199,7 +1202,8 @@
11991202
"Value": {}
12001203
}
12011204
}
1202-
}
1205+
},
1206+
"SourceFileLocation": {}
12031207
}
12041208
}
12051209
}
@@ -1212,7 +1216,7 @@
12121216
"Path": {}
12131217
}
12141218
},
1215-
"S2m": {
1219+
"S2n": {
12161220
"type": "structure",
12171221
"members": {
12181222
"S3FileLocation": {
@@ -1229,7 +1233,7 @@
12291233
}
12301234
}
12311235
},
1232-
"S2q": {
1236+
"S2r": {
12331237
"type": "structure",
12341238
"required": [
12351239
"UserDetails"
@@ -1249,7 +1253,7 @@
12491253
}
12501254
}
12511255
},
1252-
"S2x": {
1256+
"S2y": {
12531257
"type": "list",
12541258
"member": {
12551259
"type": "structure",
@@ -1270,7 +1274,7 @@
12701274
}
12711275
}
12721276
},
1273-
"S37": {
1277+
"S38": {
12741278
"type": "list",
12751279
"member": {}
12761280
}

0 commit comments

Comments
 (0)